SA-MP Forums Archive
Very simple Question Rep+ - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Very simple Question Rep+ (/showthread.php?tid=298030)



Very simple Question Rep+ - Azzeto - 18.11.2011

EDIT: Another Question: How would I get a players health then subtract like -5 health from it? Using GetPlayerHealth and SetPlayerHealth, Thanks.


Re: Very simple Question Rep+ - MP2 - 18.11.2011

pawn Код:
PlayerInfo[playerid][pHunger]-=69;
Decrease by 69.


Re: Very simple Question Rep+ - TheLazySloth - 18.11.2011

PlayerInfo[playerid][pHunger] -= 255;

Theres (http://wiki.amxmodx.org/Pawn#Expressions)
= : Set
++ : Add 1
-- : Minus 1
+= : Add
-= : Subtract
*= : Multiply
/= : Divide
... And more but these are real basic Mathmatical Operators.


Re: Very simple Question Rep+ - Azzeto - 19.11.2011

Updated main post with another help question


Re: Very simple Question Rep+ - Calgon - 19.11.2011

pawn Код:
new Float: fHealth;
GetPlayerHealth(playerid, fHealth);
SetPlayerHealth(playerid, fHealth-5);
Subtraction with floats is just as simple as it is with integers.


Re: Very simple Question Rep+ - Azzeto - 19.11.2011

Thanks everyone, you guys helped me create my hunger system!


Re: Very simple Question Rep+ - Cody_Maverak - 19.11.2011

Heres how I would do it:

pawn Код:
new health;
health = GetPlayerHealth(playerid);
health = health-5;
SetPlayerHealth(playerid, health);
EDIT: I was too late with my answer ^ ^ :P Someone got there first


Re: Very simple Question Rep+ - TheLazySloth - 19.11.2011

^ Unneed lined though and it's a variable not a float.


Re: Very simple Question Rep+ - Calgon - 19.11.2011

Quote:
Originally Posted by Cody_Maverak
Посмотреть сообщение
Heres how I would do it:

pawn Код:
new health;
health = GetPlayerHealth(playerid);
health = health-5;
SetPlayerHealth(playerid, health);
That wouldn't work, GetPlayerHealth returns a float to the variable that is the second parameter of the function, you can't use integers and you've written the function parameters incorrectly.

https://sampwiki.blast.hk/wiki/GetPlayerHealth