CLEO Help Auto /fish for job

CLEO related

qBogdan

Member
Joined
Aug 8, 2019
Messages
17
Reaction score
1
Hello. I would like to automate the job in the video. The only thing I have to do is type /fish, then click on the fish that appear. It would help me a little bit of help. I leave a link on YouTube with the job:


Thank youuu!
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,133
Solutions
5
Reaction score
885
Location
Lithuania
Re-search on google to get object model id:

PHP:
{$CLEO .cs}

0000: NOP

REPEAT
WAIT 0
UNTIL 0AFA: 

WHILE TRUE
WAIT  0

IF 0B61:  samp is_local_player_spawned
THEN
    FOR 0@ = 0 TO 2304
        IF 0C5D: samp textdraw 0@ is_exists
        THEN
            0C59: samp textdraw 0@ get_model 1@ rotation 2@ 3@ 4@ zoom 5@ veh_color 6@ 7@
            IF 1@ == 19630
            THEN
                0209: 8@ = random_int_in_ranges 500 1000 // GENERATE RANDOM TIME, 1000 = 1 SECOND >> EDIT TIME BY YOURESELF.. <<
                WAIT 8@ // WAIT GENERATED TIME >> HUMAN NEEDS TIME TO REACT, SO WE MAKING SMALL DELAY BEFORE CLICKS << 
                0BCA: samp send_click_textdraw 0@
            END
        END
    END
END

END
 
Top