Toggle between mouse / wasd movement [autohotkey]

valence

Frost Gate Guardian

Join Date: Oct 2007

A simple script for autohotkey to toggle between mousemovement / wasd movement.

For monk I preffer that w-a-s-d links to partymembers, when playing ranger / warrior I dislike this. Basically with Caps Lock you toggle it on or off.

Note that your numpad should link to partymembers. numpad 1 = partymember 1, etc.

Copy into new script file:

Code:
#NoEnv
SendMode Input
Process, Priority, , HIGH
SetKeyDelay, 0, 0
SetMouseDelay, 0
SetDefaultMouseSpeed, 0
SetWinDelay, 0
SetControlDelay, 0

#IfWinActive Guild Wars
w::Numpad1
a::Numpad2
s::Numpad3
d::Numpad4
CapsLock::Suspend
Change the number to change whatever you want, I think you get the idea. There are more things to be done but they go into a grey area of what is allowed and what not.

NightOwl

Lion's Arch Merchant

Join Date: Aug 2005

I am so bad with AHK, and could use a bit of help with it. I'm trying to rebind my right mouse button to the 4th or 5th mouse button. How can I get that to work? I tried a similar script to what worked for me with Sacred 2, and it didn't get the job done.

Basically, I want to be able to get the camera movement I've used on the right mouse button onto a different one. I don't see an option for this in the game options, so this seems to be the route to go. Help?

headlesshobbs

Krytan Explorer

Join Date: Apr 2006

Will this trigger a bot or 3rd party warning?

Abedeus

Abedeus

Grotto Attendant

Join Date: Jan 2007

Niflheim

R/

I'm afraid that this is using 3rd party program. It's basically the same as the Drunkard Script/Bot.

MisterB

MisterB

Furnace Stoker

Join Date: Oct 2005

Planet Earth, Sol system, Milky Way galaxy

[ban]

W/

Quote:
Originally Posted by headlesshobbs View Post
Will this trigger a bot or 3rd party warning?
If you use the script in this thread, there is nothing to detect, and no botting whatsoever. This script just changes what keystrokes are sent to ANet's server, and unless they are monitoring your system with spyware or a keylogger, they have no way to determine whether you are pressing W,A,S,D or NumPad 1-4. This is just a third party method to customize your own controls in a manner that is not currently possible to replicate in game.

This program can and has been used to create and execute "bot" scripts, but the program itself can be used in a manner that does not break any rules, like the example script in this thread.

Quote:
Originally Posted by Abedeus View Post
I'm afraid that this is using 3rd party program. It's basically the same as the Drunkard Script/Bot.
It's nothing like that at all. Read the script. There is zero automation. This is a third party program, yes. It's highly unlikely that using it in this manner will get you banned. They'd have to be able to detect it first, and they're not going to be bothered if you want to toggle the caps lock key to send NumPad 1-4 when you press WASD.