Is there..
#1

Is there a hunger filterscript with %, and with textdraw, i've searched, but no results-.-
Reply
#2

Bumpzor
Reply
#3

Quote:
Originally Posted by Jack_Blade
Посмотреть сообщение
Bumpzor
Wow Bumping so quick ? Read rules first.Next time use search.
Reply
#4

Man its hilarious to make one... Try script or use search
Reply
#5

pawn Код:
//Top of script
forward HungerTimer(playerid, Float:health);
then
pawn Код:
public OnPlayerSpawn(playerid)
{
    SetTimerEx("HungerTimer", 10000, 1, "i", playerid);
    return 1;
}
then...
pawn Код:
public HungerTimer(playerid, Float:health)
{
    GetPlayerHealth(playerid, health);
    SetPlayerHealth(playerid, health - 5);
    return 1;
}
Not what you wanted, but this FS takes a player 5 HP every 10 seconds, so he dies when he looses all HP
Reply
#6

Quote:
Originally Posted by Mean
Посмотреть сообщение
pawn Код:
//Top of script
forward HungerTimer(playerid, Float:health);
then
pawn Код:
public OnPlayerSpawn(playerid)
{
    SetTimerEx("HungerTimer", 10000, 1, "i", playerid);
    return 1;
}
then...
pawn Код:
public HungerTimer(playerid, Float:health)
{
    GetPlayerHealth(playerid, health);
    SetPlayerHealth(playerid, health - 5);
    return 1;
}
Not what you wanted, but this FS takes a player 5 HP every 10 seconds, so he dies when he looses all HP
this only will force the player to go to burgershot every 60 seconds lol
Reply
#7

Exactly,
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)