Question here - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Question here (
/showthread.php?tid=243918)
Question here -
jejemonerz123 - 25.03.2011
What does this means
T:\My Documents\jeje.pwn(210) : error 001: expected token: ";", but found "-identifier-"
T:\My Documents\jeje.pwn(216) : error 001: expected token: ";", but found "-identifier-"
T:\My Documents\jeje.pwn(222) : error 001: expected token: ";", but found "-identifier-"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
3 Errors.
Re: Question here -
Davz*|*Criss - 25.03.2011
Please post the code lines.
Re: Question here -
Stigg - 25.03.2011
Quote:
Originally Posted by jejemonerz123
What does this means
T:\My Documents\jeje.pwn(210) : error 001: expected token: ";", but found "-identifier-"
T:\My Documents\jeje.pwn(216) : error 001: expected token: ";", but found "-identifier-"
T:\My Documents\jeje.pwn(222) : error 001: expected token: ";", but found "-identifier-"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
3 Errors.
|
I means you have forgotten 3 of ';' in your code.
Re: Question here -
Davz*|*Criss - 25.03.2011
Quote:
Originally Posted by Stigg
I means you have forgotten 3 of ';' in your code.
|
Yes right, like the stigg said.
Check the error lines and add the ';' !
thanks
Re: Question here -
Mean - 25.03.2011
pawn Код:
// Example
SendClientMessage( playerid, 0xAAAAAA, "Hello" ) // Wrong
SendClientMessage( playerid, 0xAAAAAA, "Hello" ); // Correct
Or could be correct, for more functions
pawn Код:
SendClientMessage( playerid, 0xAAAAAA, "Hello" ),
SendClientMessage( playerid, 0xAAAAAA, "there" ),
SendClientMessage( playerid, 0xAAAAAA, "how" ),
SendClientMessage( playerid, 0xAAAAAA, "ya" ),
SendClientMessage( playerid, 0xAAAAAA, "doin'" ); // Putting that semicolon there.