11.12.2016, 14:59
Ai galera, o error й o seguinte, a funзгo da public estб setando apenas para o id 0 alguem sabe arrumar isso?
PHP код:
// em OnPlayerSpawn...
new string[90];
format(string,sizeof(string),"[Anti-SpawnKill] Olб %s, Vocк estб imortal por 5 segundos!",NomePlayer(playerid));
SendClientMessage(playerid, Vermelho, string);
SetPlayerHealth(playerid, 99999);
SetPlayerArmour(playerid, 99999);
SetTimer("antispawnkill", 5000, false);
return true;
}
forward antispawnkill(playerid);
public antispawnkill(playerid)
{
SetPlayerHealth(playerid, 100);
SetPlayerArmour(playerid, 100);
SendClientMessage(playerid, Vermelho, "[Anti-SpawnKill] Sua invencibilidade, ja passou!\nBom Game!");
return 1;
}