dini - warning 202: number of arguments does not match definition

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Moin,


    Hab folgendes Problem:


    new s[128], X,Y,Z;
    X = dini_Float("pickups.txt","x",X);
    Y = dini_Float("pickups.txt","y",Y);
    Z = dini_Float("pickups.txt","z",Z);
    MODEL = dini_Int("pickups.txt","model",MODEL);
    typ = dini_Int("pickups.txt","typ",typ);


    F5:

    Code
    warning 202: number of arguments does not match definition



    Jemand Idee?

  • new s[128], Float:X,Float:Y,Float:Z;
    X = dini_Float("pickups.txt","x");
    Y = dini_Float("pickups.txt","y");
    Z = dini_Float("pickups.txt","z");
    MODEL = dini_Int("pickups.txt","model");
    typ = dini_Int("pickups.txt","typ");
    So isses richtig, wenn du Model und typ nicht definiert hast dann msuste es noch definieren

  • ~delte~

    Einmal editiert, zuletzt von [PRT]The_Gamer ()