17.03.2009, 02:09
ok i made a time system for my server, but i get two errors:
here's my code:
Код:
C:\PROGRA~1\ROCKST~1\GTASAN~1\GAMEMO~1\EASTSI~1.PWN(219) : warning 213: tag mismatch C:\PROGRA~1\ROCKST~1\GTASAN~1\GAMEMO~1\EASTSI~1.PWN(223) : warning 213: tag mismatch
Код:
//top of script new MyTime; forward TimeTmr(); public TimeTmr() { new newtime; newtime = MyTime + 1.00; //line 219 MyTime = newtime; if(MyTime == 24.00) { MyTime = 0.00; //line 223 } return 0; }