CLEO Help About health and armor hack

CLEO related
Status
Not open for further replies.
N

Nepioti

Guest
Hello everyone,
I'm trying to get working armor and health cheats on samp but I have some problems,
With both of those codes, the armor is set to 100 and not to the amount I want (95 in this case).
{$CLEO .cs}

//-------------MAIN---------------
0000: NOP

:NONAME_2
wait 0
if
0AB0: key_pressed 109
else_jump @NONAME_2
Actor.Armour($PLAYER_ACTOR) = 95
jump @NONAME_2
{$CLEO .cs}

//-------------MAIN---------------
0000: NOP

:NONAME_2
wait 0
if
0AB0: key_pressed 109
else_jump @NONAME_2
Actor.AddArmour($PLAYER_ACTOR) = 95
jump @NONAME_2

And about health hack I saw that a lot of servers set the health of players to 8000100 which I guess is a protection against health hack. I tried to manually put myself 8000100 hp but I actually got only 100. Is there any ways to make armor and health hack functionnals ?
{$CLEO .cs}

//-------------MAIN---------------
thread 'HEALTHARMOR'

:HEALTHARMOR_19
wait 0
if
0AB0: key_pressed 107
jf @HEALTHARMOR_19
Actor.Health($PLAYER_ACTOR) = 94
jump @HEALTHARMOR_19
 
Status
Not open for further replies.
Top