[Ajuda] Anti Spawn Kill Bugado
#1

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(playeridVermelhostring);
    
SetPlayerHealth(playerid99999);
    
SetPlayerArmour(playerid99999);
    
SetTimer("antispawnkill"5000false);
    return 
true;
}
forward antispawnkill(playerid);
public 
antispawnkill(playerid)
{
    
SetPlayerHealth(playerid100);
    
SetPlayerArmour(playerid100);
    
SendClientMessage(playeridVermelho"[Anti-SpawnKill] Sua invencibilidade, ja passou!\nBom Game!");
    return 
1;

Reply
#2

Код:
SetTimerEx("antispawnkill", 5000, false, "i", playerid);
Reply
#3

PHP код:
SetTimer("antispawnkill"5000false);
// por
SetTimerEx("antispawnkill"5000false"i"playerid); 
Reply
#4

Obrigado senhores
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)