warning 202: 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: warning 202: number of arguments does not match definition (
/showthread.php?tid=630319)
warning 202: number of arguments does not match definition -
JuzDoiT - 12.03.2017
Hello , i update my deathmatch Script with Last Includes And Plugins a
DEATHMATCH.pwn(29002) : warning 202: number of arguments does not match definition
Here is Line : 29002
if (!isNumeric(tmp))
{
TargetID = TargetID = ReturnUser(tmp, playerid);
if (TargetID == INVALID_PLAYER_ID)
{
return 1;
}
}
Re: warning 202: number of arguments does not match definition -
TopShooter2 - 12.03.2017
PHP код:
TargetID = TargetID = ReturnUser(tmp, playerid);
Change it to
PHP код:
TargetID = TargetID = ReturnUser(tmp, playerid);
Re: warning 202: number of arguments does not match definition -
JuzDoiT - 12.03.2017
this is same text
Re: warning 202: number of arguments does not match definition -
ISmokezU - 12.03.2017
Код:
TargetID = ReturnUser(tmp, playerid);
"TargetID = TargetID ="
Should have no effect.