[Tutorial] Evitar teleport con poca vida
#9

Ni que fuera una gran funcion.
Aqui tienen una funcion que es mas facil de usar.

pawn Код:
stock PlayerHasHealth(playerid, Float: health)
{
    new Float: curhealth; GetPlayerHealth(playerid, curhealth);
    if(curhealth >= health) return 1;
    return 0;
}
Si el jugador tiene la vida requerida o mas va a retornar true(1), si no retorna false(0).

Usando esa funcion seria asi;
pawn Код:
if(PlayerHasHealth(playerid, 70.0))
{
  // El jugador tiene 70.0 o mas.
}
else
{
  // El jugador tiene 69.9 o menos.
}
Reply


Messages In This Thread
Evitar teleport con poca vida - by GroX0r - 15.11.2009, 22:03
Re: [Tutorial] Evitar teleport con poca vida - by bm0z - 16.11.2009, 00:41
Re: [Tutorial] Evitar teleport con poca vida - by Donuts - 16.11.2009, 05:03
Re: [Tutorial] Evitar teleport con poca vida - by bm0z - 16.11.2009, 07:12
Re: [Tutorial] Evitar teleport con poca vida - by elvago - 17.11.2009, 05:43
Re: [Tutorial] Evitar teleport con poca vida - by Donuts - 17.11.2009, 16:23
Re: [Tutorial] Evitar teleport con poca vida - by elvago - 18.11.2009, 01:13
Re: [Tutorial] Evitar teleport con poca vida - by XeoN_13 - 19.11.2009, 01:35
Re: [Tutorial] Evitar teleport con poca vida - by Donuts - 19.11.2009, 06:57
Re: [Tutorial] Evitar teleport con poca vida - by Gantzyo - 19.11.2009, 20:13

Forum Jump:


Users browsing this thread: 1 Guest(s)