Undefined Symbol "GetTime" ? o.O

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
  • Ehrlich. Ich kanns drehen wie ich will ich bekomm immer bei dem hier:




    stock Log(logname[],input[])
    {
    new hour,minute,second;
    GetTime(hour,minute,second); //hier
    new File:Logfile,saveformat[64],dataformat[256];
    format(saveformat,64,"%s.txt",logname);
    if(!fexist(saveformat))
    {
    Logfile = fopen(saveformat,io_write);
    }
    Logfile = fopen(saveformat,io_append);
    format(dataformat,256,"[%i:%i:%i] %s\n",hour,minute,second,input);
    fwrite(Logfile,dataformat);
    return 1;
    }



    das hier raus:



    undefined symbol "GetTime"



    Maddin is my Lord and Master :D
    Musel my one and only b0wm
    Bisafloah is the pokemon that pwns a lot of goddamn ponys.

    Einmal editiert, zuletzt von Ramino ()

  • oh. Hm ich dussel xD. Dann hab ich mich als ich das bei den anderen Funktionen auch probiert hab vertan. Danke Maddin ;)



    Maddin is my Lord and Master :D
    Musel my one and only b0wm
    Bisafloah is the pokemon that pwns a lot of goddamn ponys.