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: Error (
/showthread.php?tid=384715)
Error -
Team_PRO - 13.10.2012
expected token: ";", but found "new"
error 001: expected token: ";", but found "new"
the codes
Код:
new pName[MAX_PLAYER_NAME]
new string[128];
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
Re: Error -
JhnzRep - 13.10.2012
Код:
new pName[MAX_PLAYER_NAME];
new string[128];
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
or
Код:
new pName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
Re: Error -
Faisal_khan - 13.10.2012
The error says it all.
Try to understand the error before posting.
Re: Error -
Lordzy - 13.10.2012
PHP код:
new pName[MAX_PLAYER_NAME];
new string[128];
GetPlayerName(playerid,pName,sizeof(pName));
Re: Error -
Лев* - 13.10.2012
I helped skype
Re: Error -
Team_PRO - 13.10.2012
Thanks it Help