Search found 7 matches

by HKUK01
20 Jun 2018, 08:23
Forum: Ask for Help (v1)
Topic: Autoclicker loop broken?
Replies: 4
Views: 954

Re: Autoclicker loop broken?

anyone have any ideas?
by HKUK01
19 Jun 2018, 14:14
Forum: Ask for Help (v1)
Topic: Autoclicker loop broken?
Replies: 4
Views: 954

Re: Autoclicker loop broken?

its probably clicking, but likely somewhere you arent expecting it to. Select an appropriate CoordMode and test again I tried adding a double click and changing the co-ordinates slightly but doesn't seem to help. The cursor just ignores only click 2 on loops 2,4,6 etc. but hits every other click on...
by HKUK01
19 Jun 2018, 06:27
Forum: Ask for Help (v1)
Topic: Autoclicker loop broken?
Replies: 4
Views: 954

Autoclicker loop broken?

With the help of the community I managed to make this autoclicker with the code below which clicks on a random location and sleeps for a random amount of time within a specific range. However, with every other loop the code executes, it seems to miss out 'click 2,' e.g. everything will work perfect ...
by HKUK01
18 Jun 2018, 15:53
Forum: Ask for Help (v1)
Topic: Help with my AutoClicker Topic is solved
Replies: 8
Views: 1751

Re: Help with my AutoClicker Topic is solved

Looping like this? q:: Loop, 3 ; Repeat 3 times. { randClick(0, 0, 80, 80) ;click1 Sleep rand(300, 1000) randClick(680, 1040, 730, 1060) ;click2 Sleep rand(300, 1000) randClick(890, 100, 900, 110) ;click3 } Return Yup that works fine and I figured out the problem with click 3 thanks a lot for the h...
by HKUK01
18 Jun 2018, 15:34
Forum: Ask for Help (v1)
Topic: Help with my AutoClicker Topic is solved
Replies: 8
Views: 1751

Re: Help with my AutoClicker Topic is solved

Use the Random function to generate a random number. Random, OutputVar, Min, Max Let me know if you have any more questions. Hey, thanks for replying, I've implemented the random function into the code but was wondering how I would loop this entire code below for a specific number of times. Also 'c...
by HKUK01
18 Jun 2018, 15:15
Forum: Ask for Help (v1)
Topic: Help with my AutoClicker Topic is solved
Replies: 8
Views: 1751

Re: Help with my AutoClicker Topic is solved

wrap random in a function, then define another function for clicking, sleep accepts expressions, so it can be used as is, in conjunction with your wrapped random function q:: randClick(1, 1, 20, 20) Sleep rand(300, 1000) randClick(1, 1, 20, 20) Return rand(min, max) { Random, rand, min, max return ...
by HKUK01
18 Jun 2018, 12:53
Forum: Ask for Help (v1)
Topic: Help with my AutoClicker Topic is solved
Replies: 8
Views: 1751

Help with my AutoClicker Topic is solved

Hey, I'm a beginner and I've been looking for a code which can click on a random position within a range of set coordinates and sleep for a random amount of time within a range of time. The code I made only clicks on a specific coordinate and sleeps for a specific time. f1:: MouseClick , Left , 10 ,...

Go to advanced search