Log in

View Full Version : WASD + Hotkeys to 1~0 + Ctrl + Shift



Kito2
11-03-2014, 10:33 PM
Like topic name says would be nice an option that allows you to play with WASD as others games, using also hotkeys from 1~0 combining with "Ctrl" and "Shift".

Also some other configurables hotkeys as buttons like: Q, E, R, T, F, G, Z, X, C V.

And to use chat, you would press "Enter" to start writing and "Esc" to close chat typing.

rihop
11-04-2014, 04:41 PM
i found something like that in OTLand Forums... u should keep a look there....

http://otland.net/threads/wasd-walker.210929/

but i havent tested it yet so far...

Kito2
11-10-2014, 06:03 PM
Sweet, going to try it!

Kito2
11-29-2014, 04:55 PM
Got it:


#IfWinActive Tibia - CharName;Where you see CharName put your character name

;Arrow moves
w::Up
s::Down
d::Right
a::Left

;Diagonal moves
q::NumpadHome
e::NumpadPgUp
c::NumpadPgDn
z::NumpadEnd

;Some hotkeys, +F10 means Shift+F10
1::+F10
2::+F7
3::+F3
4::F2
5::+F4
r::F5
f::F4


;This is to activate or deactive WASD
DELETE::

Suspend, toggle

ToolTip, % (A_IsSuspended) ? ("WASD OFF =(") : ("WASD ON!"), 10, 500 ; Position x10, y500

If (!A_IsSuspended) ;Tooltip allways shows for suspended and only for 1.2secs if not suspended.
{
Sleep 1200
ToolTip
}

return

;Credits to Kito

Need to install http://autohotkey.com/, create a file called WASD.ahk, edit with notepad and add text from above. Run and that's all.