SA-MP Forums Archive
invalid experssion and unexpected token - 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: invalid experssion and unexpected token (/showthread.php?tid=464296)



invalid experssion and unexpected token - Inspiron - 16.09.2013

Getting error in this line

pawn Код:
format(string,sizeof string,"[Suggestion] - Your Suggestion has been sent..",);
Following errors are coming
Код:
error 029: invalid expression, assumed zero
error 001: expected token: ",", but found ";"



Re: invalid experssion and unexpected token - Dragonsaurus - 16.09.2013

pawn Код:
format(string, sizeof string, "[Suggestion] - Your Suggestion has been sent..");
Edit: Why are you formatting? Just use:
pawn Код:
SendClientMessage(playerid, -1, "[Suggestion] - Your Suggestion has been sent..");



Re: invalid experssion and unexpected token - Konstantinos - 16.09.2013

Quote:
Originally Posted by Dragonsaurus
Посмотреть сообщение
Edit: Why are you formatting? Just use:
pawn Код:
SendClientMessage(playerid, -1, "[Suggestion] - Your Suggestion has been sent..");
Dragonsaurus is right. format is slow, you can do whatever you want directly without formatting it.