How to make infinity health ?
#8

Quote:
Originally Posted by Basicz
Посмотреть сообщение
Maybe try a timer.

pawn Код:
new
Float: Health;
GetPlayerHealth ( playerid, Health );
if ( Health < 100 )
{
SetTimer ( "RefillHealth", 1000, 0 );
return 1;
}

// Add it in a blank line ( Not in callbacks I mean ).
forward RefillHealth ( );
public RefillHealth ( )
{
SetPlayerHealth ( playerid, 100.0 );
return 1;
}
Sorry if it will not work, because I didn't test it.
That would work, but you need to use
SetTimerEx("RefillHealth", 1000, 1, "i", playerid);
you mistaked 2 things here, repeating, and you should use SetTimerEx
Reply


Messages In This Thread
How to make infinity health ? - by Yaszine - 19.12.2010, 10:12
Re: How to make infinity health ? - by Rachael - 19.12.2010, 10:17
Re : How to make infinity health ? - by Yaszine - 19.12.2010, 10:27
Re: How to make infinity health ? - by Basicz - 19.12.2010, 11:11
Re: How to make infinity health ? - by hanzen - 19.12.2010, 11:37
Re: How to make infinity health ? - by [TD]Torben - 19.12.2010, 11:41
Re: How to make infinity health ? - by Hiddos - 19.12.2010, 11:42
Re: How to make infinity health ? - by Mean - 19.12.2010, 12:13
Re : Re: How to make infinity health ? - by Yaszine - 19.12.2010, 12:26
Re: How to make infinity health ? - by WillyP - 19.12.2010, 12:30

Forum Jump:


Users browsing this thread: 1 Guest(s)