CLEO Help Stop anim bind

CLEO related
Status
Not open for further replies.

alborosie

Active member
Joined
Aug 16, 2017
Messages
67
Reaction score
3
Happy Easter!

Can someone make me a cleo that sends "/stopanim" when i press R with 8B21: not samp is_chat_opened?
I know it's simple but i'm too lazy to make it ¯¯\_( ͡° ͜ʖ ͡°)_/¯ .

Thanks in advance!
 
Last edited:

Zin

Expert
Joined
Aug 1, 2013
Messages
1,692
Reaction score
105
You're not too lazy you just don't know how considering it's like 20 lines and took me like 1 minute to make. Just gonna hope you're not too "lazy" to compile it.
C++:
{$CLEO .cs}

0000:

REPEAT
    WAIT 0
UNTIL 0AFA:

WHILE TRUE
    WAIT 0
    
    IF AND
        KEY_DOWN 75
        8B21:     samp is_chat_opened
    THEN
        0AF9: samp say_msg "/STOPANIM"
        WAIT 500
    END
    
END
 

alborosie

Active member
Joined
Aug 16, 2017
Messages
67
Reaction score
3
You're not too lazy you just don't know how considering it's like 20 lines and took me like 1 minute to make. Just gonna hope you're not too "lazy" to compile it.
C++:
{$CLEO .cs}

0000:

REPEAT
    WAIT 0
UNTIL 0AFA:

WHILE TRUE
    WAIT 0
   
    IF AND
        KEY_DOWN 75
        8B21:     samp is_chat_opened
    THEN
        0AF9: samp say_msg "/STOPANIM"
        WAIT 500
    END
   
END
thx i love you no homo
 
  • Like
Reactions: Zin
Status
Not open for further replies.
Top