02.08.2011, 01:07
Estou tentando setar a vida mбxima de 100 para 35, e coloquei no OnPlayerSpawn, SetPlayerSpawn e OnPlayerLogin o seguinte comando:
Dizendo que se a vida estб mais de 35, ela seta para o pHealth, que estб configurado como 35. (Ao registrar e ao logar).
Tentei fazer uma public tambйm.
Pra administrador que bateu o cartгo ter a vida atй o 100, e o resto menor que 35. Alguma ideia? :S
pawn Code:
new vida;
PlayerInfo[playerid][pHealth] = vida;
if(vida > 35)
{
SetPlayerHealth(playerid,vida);
PlayerInfo[playerid][pHealth] = vida;
}
Tentei fazer uma public tambйm.
pawn Code:
public VidaMenor(playerid)
{
if(PlayerInfo[playerid][pAdmin] >= 1 && admtrampando[playerid] == 1)
{
new vida;
PlayerInfo[playerid][pHealth] = vida;
if(vida < 100)
{
SetPlayerHealth(playerid,100);
PlayerInfo[playerid][pHealth] = 100;
}
}
else
{
new vida;
PlayerInfo[playerid][pHealth] = vida;
if(vida > 35)
{
SetPlayerHealth(playerid,vida);
PlayerInfo[playerid][pHealth] = vida;
}
}
}