Help error 1 - 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: Help error 1 (
/showthread.php?tid=336503)
Help error 1 -
sanrock - 22.04.2012
Код:
error 001: expected token: ",", but found ";"
Код:
if(strcmp("/stats", cmdtext, true, 10) == 0) //players ingame stats
{
new string[128];
format(string, sizeof(string), "SCORE: %d DEATHS: %d KILLS: %d", GetPlayerScore(playerid), deaths[playerid], kills[playerid];
SendClientMessage(playerid, WHITE, string);
return 1;
Код:
format(string, sizeof(string), "SCORE: %d DEATHS: %d KILLS: %d", GetPlayerScore(playerid), deaths[playerid], kills[playerid];
Re: Help error 1 -
spedico - 22.04.2012
pawn Код:
format(string, sizeof(string), "SCORE: %d DEATHS: %d KILLS: %d", GetPlayerScore(playerid), deaths[playerid], kills[playerid]);
you were missing a )
Re: Help error 1 -
sanrock - 22.04.2012
Thanks for helping me +rep!