04.08.2014, 10:02
Only thing I could think of is that your p_name function returns the wrong name. Use:
Also it could be that you would be better off using a different name variable for each person, so an array:
pawn Код:
GetPlayerName(playerid, playerName, sizeof(playerName));
Also it could be that you would be better off using a different name variable for each person, so an array:
pawn Код:
new playerName[MAX_PLAYERS][24];
GetPlayerName(playerid, playerName[playerid], sizeof(playerName[playerid]));