Help ERROR
#1

Hello

what wrong here?

Error:
Код:
(6602) : error 012: invalid function call, not a valid address
(6602) : warning 215: expression has no effect
6602) : error 001: expected token: ";", but found ")"
(6602) : error 029: invalid expression, assumed zero
(6602) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
code
Код:
   	if(PlayerInfo[playerid][pAdmin] > 0 && dostup[playerid] == 1)
	{
		dostup[playerid] = 0;
		format(string, sizeof(string), "<ALogin Off> %s[%d] вышел из игры [lvl:%d]",pNormalName(playerid),playerid,PlayerInfo[playerid][pAdmin]);
		ABroadCast(0xF4B800AA, string, 1);
	}
this line of error :
Код:
format(string, sizeof(string), "<ALogin Off> %s[%d] вышел из игры [lvl:%d]",pNormalName(playerid),playerid,PlayerInfo[playerid][pAdmin]);
Was before,in other gm compile norm:
Код:
format(string, sizeof(string), "<ALogin Off> %s[%d] вышел из игры [lvl:%d]",Name(playerid),playerid,PlayerInfo[playerid][pAdmin]);
Reply
#2

pNormalName is an not a function but a variable. It has to be an array and it must be like:
pawn Код:
new pNormalName[MAX_PLAYERS][MAX_PLAYER_NAME];
Also change to:
pawn Код:
pNormalName[playerid]
in the format.

You're supposed to get the name on connect and store it (assuming you already do, but anyway):
pawn Код:
// OnPlayerConnect:
GetPlayerName(pNormalName[playerid], playerid, MAX_PLAYER_NAME);
Reply
#3

FIXED.
Reply
#4

Bump!
Reply
#5

Show the whole function, you may have a missing bracket some place.
Reply
#6

i solved problem!
Thanks.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)