Native fillhp?
#1

So I am fooling around with natives but this one wont work. How do I fix it?

pawn Код:
native FillHP(playerid, Float:Health+100);
Reply
#2

I wanted to ask how do I do this. How to make something that will set the value to 100 right away
Reply
#3

Why use a new native that won't work anyway without a proper functioning include file with callbacks and hooks whilst you can just use SetPlayerHealth(playerid, 100);?
Reply
#4

pawn Код:
FillHP(playerid)
{
    SetPlayerHealth(playerid, 100);
}
This is how you make a function.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)