22.02.2014, 12:11
Nгo sei oque estб acontecendo mais se eu atiro em quem estб com ant spawnkill eu consigo tirar vida do player..
pawn Код:
//OnPlayerSpawn
SetPlayerHealth(playerid,99999.0);
SetTimerEx("SpawnKill",10000,false,"i",playerid);
SendClientMessage(playerid,0xB7C4A1AA,"Vocк estб protegido contra spawnkill por 10 segundos.");
//SpawnKill
forward SpawnKill(playerid);
public SpawnKill(playerid)
{
SetPlayerHealth(playerid,100.0);
SendClientMessage(playerid,cor_laranja,"Sua proteзгo anti-spawnkill acabou.");
return 1;
}