CLEO Help SAMP 0.3.7 NOSPREAD HELP !

CLEO related
Status
Not open for further replies.

growingdanger

Member
Joined
Oct 8, 2014
Messages
16
Reaction score
3
Is there any cleo cheat NOSPREAD and NORECOIL that works on ALL servers i downloaded the one from opcode but it only works for deagle like any other that I download...
 

0B36

Expert
Joined
Jan 6, 2014
Messages
1,324
Reaction score
8
[shcode=cpp]
{$CLEO}

THREAD "NS"

WHILE TRUE
WAIT 0
0A8C: 0xB7CDC8 4 0.0 0
END
[/shcode]

That's NoSpread and will work regardless of any specific sa-mp server
 

growingdanger

Member
Joined
Oct 8, 2014
Messages
16
Reaction score
3
Can you make that cleo with activation ON and OFF when i type NS and send it here i am a noob about making cleo cheats...

thank you.
 

M3D

Active member
Joined
May 22, 2014
Messages
130
Solutions
1
Reaction score
2
Code:
{$CLEO}
 
THREAD "NS"
0A8D: $rest =  0x87CDC8 4 0
$ONOFF = 0 

WHILE TRUE
    WAIT 0
    IF 0ADC: "NS" 
    THEN 
        IF $ONOFF == 0
        THEN 
            0A8C: 0xB7CDC8 4 0.0 0
            print "ON" 500
            $ONOFF = 1 
        ELSE 
            0A8C: 0xB7CDC8 4 $reset 0
            print "OFF" 500
            $ONOFF = 0 
        END
    END
END
 
Status
Not open for further replies.
Top