• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua How i can add 1/2 of health for example

Gothric

New Member
Joined
Feb 6, 2010
Messages
264
Reaction score
1
For get full hp i use
PHP:
doCreatureAddHealth(cid, getCreatureMaxHealth(cid))


but how i can get 1/2 of health?? :s what i should write
 
Code:
doCreatureAddHealth(cid, getCreatureMaxHealth(cid)/2)

"*" --> multiply
"+" --> plus
"-" --> minus
"/" --> divide
 
Back
Top