CLEO Help verification hack?

CLEO related
Status
Not open for further replies.

kool

Active member
Joined
Jun 4, 2016
Messages
89
Reaction score
0
Does anybody know where i can find tutorial about making CLEO script which types random verification code for you?

What can i do with these ?

0BD7: samp get_dialog_text 0@
0B4B: samp set_current_dialog_editbox_text "text"
0B47: samp close_current_dialog_with_button 0@


dsISniG.png
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,116
Solutions
5
Reaction score
882
Location
Lithuania
kool said:
Does anybody know where i can find tutorial about making CLEO script which types random verification code for you?

What can i do with these ?

0BD7: samp get_dialog_text 0@
0B4B: samp set_current_dialog_editbox_text "text"
0B47: samp close_current_dialog_with_button 0@


dsISniG.png

Maybe text is good , very small picture ....

[shcode=cpp]
{$CLEO .cs}

0000: NOP

REPEAT
wait 0
UNTIL 0AFA:

 
WHILE TRUE
wait 0

IF
0B4C:  samp is_dialog_active -1
THEN
    wait 200
    alloc 1@ 512 //alloc
    0BD7: 1@ //get text
    IF
    0ad4: $NOT_USED = scan 1@ "likucajte sledeci kod: %d" 2@    //// In this - "" - is your text /// %d - is number
    THEN
        alloc 0@ 8 //alloc
        format 0@ "%d" 2@ /// Format number
        0209: 3@ = random_int_in_ranges 2873 3861 //// Format random time
        wait 3@  //// Wait random time
        0B4B: samp set_current_dialog_editbox_text 0@
        free 0@    
        0B47: samp close_current_dialog_with_button 1
        free 1@
    END
END

END /// END WHILE TRUE
[/shcode]
 
Status
Not open for further replies.
Top