multitarget fast clicking script for mocospace game street wars

Ask gaming related questions (AHK v1.1 and older)
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

multitarget fast clicking script for mocospace game street wars

30 Apr 2021, 04:04

i need a multitarget fast cliking script for mocospace game street wars https://www.mocospace.com/html/game/landing.jsp?
User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: multitarget fast clicking script for mocospace game street wars

30 Apr 2021, 05:56

Code: Select all

F3::
Click, 200 200
Click, 400 400
Return
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

04 May 2021, 08:42

F3::
Click, 672 453
Click, 618 507
Return

these are the x and y coordinate of my browser where i want to click infinity till i stop them,can u help me
User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: multitarget fast clicking script for mocospace game street wars

04 May 2021, 09:09

Code: Select all

#MaxThreadsPerHotkey 2
F3::
on := !on
While on {
 Click, 672 453
 If on
  Click, 618 507
}
Return
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 04:00

Dearest sir,
THANKS SO MUCH
I run this script with key F3 but it not stopped after it start by pressing F3(I have to shut down the pc)
and I cannot control its speed too
can u not make like this,I can stop and start with F3 key and total control on its speed
please please and thanks
and sorry my English is not good
User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 05:34

What happens when you test it in Notepad (i.e., when Notepad is the active window)?
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 10:27

Code: Select all

F3::
on := !on
While on {
 Click, 672 453
 If on
  Click, 618 507
}
Return
I paste this above script in ahk ki not pad script, and it runs with F3,but i don't know how to stop it
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 10:31

https www.mocospace.com /html/game/landing.jsp?gid=1000 Broken Link for safety


i need this script to run in this site
User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 10:34

It looks like you left out the first line from my posted script.
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 10:43

u mean this one
Code: Select all - Toggle Line numbers


when i write this one,it says an error
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 10:46

can i send u a screen recoding,where a person who is using a script.so that u can under stand what i want to say
User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 10:55

Here is the script. Select all. Copy. Paste (no other code). Run. Open and activate Notepad. Press F3. Press F3 again.

Code: Select all

#MaxThreadsPerHotkey 2
F3::
on := !on
While on {
 Click, 672 453
 If on
  Click, 618 507
}
Return
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 11:04

Code: Select all - Toggle Line numbers

F3::
on := !on
While on {
Click, 672 453
If on
Click, 618 507
}
Return

it says, error at line 1.
line text: code : select all toggle line numbers error: this line does not contain a recognized action. the program will exit
Code: Select all - Toggle Line numbers

#MaxThreadsPerHotkey 2
F3::
on := !on
While on {
Click, 672 453
If on
Click, 618 507
}
Return
it says, error at line 1.
line text: code : select all toggle line numbers error: this line does not contain a recognized action. the program will exit
User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 11:09

Your script should omit the following line.

Code: Select all

CODE: SELECT ALL - TOGGLE LINE NUMBERS
This line is used by the AHK forum, to help people select text that has been posted to the forum. It is not part of the script itself.

Include everything else. Your final script should start with # as the first character.
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 18:14

thanks,its runs and stops,but not faster,I need more faster please help me :(
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

08 May 2021, 23:21

i don't know about to write a script,can u do this for me please,how to set a mouse delay and set a batch line in the script please brother
gul
Posts: 16
Joined: 30 Apr 2021, 03:29

Re: multitarget fast clicking script for mocospace game street wars

09 May 2021, 00:56

Code: Select all

#MaxThreadsPerHotkey 2
F3::
on := !on
While on {
SetMouseDelay, 2
 Click, 672 453
 If on
  Click, 618 507
}
Return
[Mod edit: [code][/code] tags added.]


Dearest sir,
i run this script and got 1500 cpm,its mean 25cps.I will test it in the game,and will tell u either it works or not,thanks so much,still need ur guidance,thanks so much again,u r very kind
User avatar
mikeyww
Posts: 26596
Joined: 09 Sep 2014, 18:38

Re: multitarget fast clicking script for mocospace game street wars

09 May 2021, 05:06

Code: Select all

#MaxThreadsPerHotkey 2
F3::
SetMouseDelay, 0
SetBatchLines -1
on := !on
While on {
 Click, 672 453
 If on
  Click, 618 507
}
Return

Return to “Gaming Help (v1)”

Who is online

Users browsing this forum: No registered users and 73 guests