02.09.2010, 06:28
Look here -> https://sampwiki.blast.hk/wiki/Fexist
Could also try changing new user[MAX_PLAYER_NAME]; -> new user[54];
Btw: Here's and useful function that fetches a players name.
Could also try changing new user[MAX_PLAYER_NAME]; -> new user[54];
Btw: Here's and useful function that fetches a players name.
pawn Код:
stock PlayerName(playerid)
{
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof(Name));
return Name;
}
Example: printf("%s", PlayerName(playerid));

