CLEO Help Help me with coding

CLEO related
Status
Not open for further replies.

kidl131

Member
Joined
Oct 21, 2020
Messages
11
Reaction score
1
Location
Weast
Hi i need a code with switch turn on and turn off to send a message on screen "123" . Can someone help me pls
 

tieuthienthan

Active member
Joined
Nov 6, 2019
Messages
43
Reaction score
10
Location
Vietnam
alright
Code:
{$CLEO .cs}

wait 10000

10@ = 0

while true
    wait 0
    if and
        0AB0: 16 // shift
        0AB0: 65 // a
        10@ == 0
    then
        0AD1: "123" 500
        wait 500
        10@ = 1
    end
    if and
        0AB0: 16 // shift
        0AB0: 65 // a
        10@ == 1
    then
        0AD1: "123" 500
        wait 500
        10@ = 0
    end
end
 
Last edited:
Status
Not open for further replies.
Top