Error Code - 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 Code (
/showthread.php?tid=615370)
Error Code -
ActionTanki91 - 21.08.2016
Код:
new string[256];
// Line error format(string, sizeof(string), "Name : %s Score : %d Admin Level : %d Operator Level : %d Kills : %d Deaths :%d Money : %d", PlayerInfo[playerid][pName], PlayerInfo[playerid][pLevel], PlayerInfo[playerid][pAdmin], PlayerInfo[playerid][pOperator], PlayerInfo[playerid][pKills], PlayerInfo[playerid][pDeaths], PlayerInfo[playerid][pCash]);
ShowPlayerDialog(playerid, 58, DIALOG_STYLE_MSGBOX, "Player Stats", string, "Quit", "");
Код:
error 076: syntax error in the expression, or invalid function call
Re: Error Code -
sampkinq - 21.08.2016
Код:
new string[256];
format(string,sizeof(string),"Name : %s Score : %d Admin Level : %d Operator Level : %d Kills : %d Deaths :%d Money : %d",PlayerInfo[playerid][pName], PlayerInfo[playerid][pLevel], PlayerInfo[playerid][pAdmin], PlayerInfo[playerid][pOperator], PlayerInfo[playerid][pKills], PlayerInfo[playerid][pDeaths], PlayerInfo[playerid][pCash]);
ShowPlayerDialog(playerid, 58, DIALOG_STYLE_MSGBOX, "Player Stats", string, "Quit", "");
Re: Error Code -
Shinja - 21.08.2016
Show whole code