CLEO Help Help me fix this cleo

CLEO related
Status
Not open for further replies.

Nuginity

New member
Joined
Oct 21, 2018
Messages
2
Reaction score
1
Hey can someone fix this cleo?
it's can't stop looping the command


Code:
{$CLEO .cs}

0000:

wait 10000 

while true
wait 0

if and
actor.Driving($PLAYER_ACTOR)
0ADC: test_cheat "work"
then
    if
    31@ == false
    then
        31@ = true
        0AD1: show_formatted_text_highpriority "ENABLED" time 1337
        0AD1: show_formatted_text_highpriority "DISABLED" time 1337
    end
    wait 1500 // anti spam key
end

if
31@ == true
then
    0A8D: 0@ = read_memory 0xC7E008 size 4 virtual_protect 0
    0A8D: 1@ = read_memory 0xC7E00C size 4 virtual_protect 0
    0A8D: 2@ = read_memory 0xC7E010 size 4 virtual_protect 0
    if and
    not 0@ == 0.0
    not 1@ == 0.0
    not 2@ == 0.0
    then
        00A1: put_actor $PLAYER_ACTOR at 0@ 1@ 2@
        end
        wait 1500
        end

  
    end
end
end
 
Last edited:

WaTTi

Well-known member
Joined
Jan 4, 2015
Messages
260
Reaction score
8
Code:
{$CLEO .cs}

0000:

wait 10000
31@ = false

while true
wait 0
    if 0ADC: test_cheat "work"
    then
        if
        31@ == false
        then
            0AD1: show_formatted_text_highpriority "ENABLED" time 1337
            31@ = true
        else
            31@ = false
            0AD1: show_formatted_text_highpriority "DISABLED" time 1337
        end
        // anti spam key
    end
    
    if and
    actor.Driving($PLAYER_ACTOR)
    31@ == true
    then
        0A8D: 0@ = read_memory 0xC7E008 size 4 virtual_protect 0
        0A8D: 1@ = read_memory 0xC7E00C size 4 virtual_protect 0
        0A8D: 2@ = read_memory 0xC7E010 size 4 virtual_protect 0
        if and
        not 0@ == 0.0
        not 1@ == 0.0
        not 2@ == 0.0
        then
            00A1: put_actor $PLAYER_ACTOR at 0@ 1@ 2@
            end
            wait 1500
            end
        end
    end
end
 
Status
Not open for further replies.
Top