• 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!

doPlayerAddHealth(cid, -500) (Solved)

LucasFerraz

Systems Analyst
Joined
Jun 10, 2010
Messages
2,857
Reaction score
96
Location
Brazil
Why this don't work?
LUA:
doPlayerAddHealth(cid, -500)

I want to remove 500 of health when player step in.
 
lol i don't see any diffrents between this script and original one.

@topic: are you logged on character with a gamemaster status?

The differense is he is using a local which is really not needed and Creature instead of Player..
simply just do it like this:
Code:
doCreatureAddHealth(cid, -500)
 
Last edited:
Back
Top