SAMP argument 1 error. - 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: SAMP argument 1 error. (
/showthread.php?tid=614095)
SAMP argument 1 error. -
GGamerLV - 04.08.2016
Please help.
Error:
Код:
C:\Users\User\Desktop\samp server\gamemodes\SouthSideRP.pwn(24952) : error 035: argument type mismatch (argument 1)
C:\Users\User\Desktop\samp server\gamemodes\SouthSideRP.pwn(24952) : error 035: argument type mismatch (argument 1)
Code:
Код:
if(!PlayerInfo[playerid][pFacDuty]) format(name, sizeof(name), "Badage");
Re: SAMP argument 1 error. -
K0P - 04.08.2016
Код:
new name[30]; //Replace with name variable
if(PlayerInfo[playerid][pFacDuty] == 0) format(name, sizeof(name), "Badage");
Re: SAMP argument 1 error. -
GGamerLV - 04.08.2016
Thank you so much.