18.05.2011, 18:12
Toma mano, era sу corrigir...
Nгo fique usando muitos forward Exemplo(Parametros); // Tente nгo usar parametros para timer, acho que nгo sгo uteis *-*
Se for alguem me conte xD
pawn Код:
forward ChecarLife();
//OnGameModeInit..
SetTimer("ChecarLife",1000,true);
//Final do GM
public ChecarLife()
{
for(new i = 0; i <MAX_PLAYERS; i++)
{
new Float:Armour;
GetPlayerArmour(i,Armour);
if(Armour > 0)
{
SetPlayerAttachedObject( i, 5, 19142, 1, 0.100563, 0.056516, 0.003794, 0.000000, 0.000000, 0.000000, 1.000000, 1.000000, 1.000000 );
}
else
{
RemovePlayerAttachedObject(i,5);
}
}
}
Se for alguem me conte xD