#1

expected token: ";", but found "new"
error 001: expected token: ";", but found "new"


the codes

Код:
	new pName[MAX_PLAYER_NAME]
		new string[128];
		GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
Reply
#2

Код:
	new pName[MAX_PLAYER_NAME];
		new string[128];
		GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
or

Код:
	new pName[MAX_PLAYER_NAME], string[128];
		GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
Reply
#3

The error says it all.

Try to understand the error before posting.
Reply
#4

PHP код:
new pName[MAX_PLAYER_NAME];
new 
string[128];
GetPlayerName(playerid,pName,sizeof(pName)); 
Reply
#5

I helped skype
Reply
#6

Thanks it Help
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)