Question here
#1

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.
Reply
#2

Please post the code lines.
Reply
#3

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.
Reply
#4

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
Reply
#5

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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)