compile problem "number of arguments does not match definition" - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: compile problem "number of arguments does not match definition" (
/showthread.php?tid=444926)
compile problem "number of arguments does not match definition" -
zudokuxd10 - 18.06.2013
i have this problem when try compile
Quote:
D:\GM\gamemodes\GM.pwn(1377) : warning 202: number of arguments does not match definition
|
PHP код:
file 1376 => new Index = 0;
file 1377 => for ( new x = 0; x < 5; ++x ){ HashE[x] = strtok( Hash, Index, '!'); }
please help me!
the FS topic link =>
https://sampforum.blast.hk/showthread.php?tid=235245
Re: compile problem "number of arguments does not match definition" -
[Ro]DuReX - 19.06.2013
pawn Код:
for ( new x = 0; x < 5; x++ ){ HashE[x] = strtok( Hash, Index ); }
Re: compile problem "number of arguments does not match definition" -
zudokuxd10 - 19.06.2013
Quote:
Originally Posted by [Ro]DuReX
pawn Код:
for ( new x = 0; x < 5; x++ ){ HashE[x] = strtok( Hash, Index ); }
|
thank you very much friend