• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

which OT client for Nostalrius 7.72?

usualsuspect

New Member
Joined
Oct 6, 2020
Messages
19
Solutions
1
Reaction score
2
Hi, I'm pleased to have set up a Nostalrius server which I can log into successfully with the original Cipsoft 7.72 client. However, this client is impossible for me to use as I run a Kinesis Advantage keyboard with Colemak (so WASD movement is essential). OT client's hotkeys would probably solve all my problems but I've tried a few different .exes and they all crash 20 seconds or so after logging in. Can anyone recommend a specific OT Client version which is compatible with Nostalrius? Many thanks for any help...
 
Kinesis Advantage keyboard with Colemak

😂😂😂 Throw it in the bin!

Anyway, you don't need OTClient for WASD walking.

What you need is Autohotkey AutoHotkey (https://www.autohotkey.com/)

And this keymap binding. You can edit this in Notepad if you want more than WASD (other spell hotkeys for example)

You press Shift+Enter to toggle.

Mind looks like this:



Lua:
#SingleInstance force
SetTitleMatchMode 3
#IfWinActive ahk_class TibiaClient
^enter::
suspend

1::f1
2::f2
3::f3
4::f4
5::f5
6::f6
7::f7
8::f8
9::f9
0::f10

q::numpadhome
e::numpadpgup

w::up
a::left
s::down
d::right

z::numpadend
c::numpadpgdn

b::
f::
g::
h::
i::
j::
k::
l::
m::
n::
o::
p::
r::
t::
u::
v::
x::
y::
 
Back
Top