19.04.2012, 14:23
botei assim o pawn deu erro e paro de funcionar
pawn Код:
public OnPlayerConnect(playerid) {
if(IsPlayerNPC(playerid))
{
SpawnPlayer(playerid);
return 1;
}
if(PlayerInfo[playerid][pVIP] >= 1)
{
new name[24], s[60];
GetPlayerName(playerid, name, 24);
format(s, 60, "Vip: %s Online..", name);
GameTextForAll(s, 5000, 3);
}
return true;
}