PDA

View Full Version : Hotkeys on numpad



chybayo
10-12-2014, 01:34 PM
Is these a possible way to change my hotkeys to numpad in xenobot? If not is there any other way to do that?

Help me i really need this because using mouse, walking with keys and using hotkeys at the same time is kinda hard for me.

Infernal Bolt
10-12-2014, 02:21 PM
I use autohotkey to do this. (http://www.autohotkey.com/)
1>9 is F1 > F9
0 = F10
F11 and F12 are the normal keys since they are not that difficult to reach normally.
I got my strafe keys on Home, PgUp, End and PgDn



NumpadEnd::F1
NumpadDown::F2
NumpadPgDn::F3
NumpadLeft::F4
NumpadClear::F5
NumpadRight::F6
NumpadHome::F7
NumpadUp::F8
NumpadPgUp::F9
NumpadIns::F10

Home::NumpadHome
PgUp::NumpadPgUp
PgDn::NumpadPgDn
End::NumpadEnd

chybayo
10-12-2014, 02:44 PM
Thank you. Ill try this out. :)!

Tripkip
10-12-2014, 04:14 PM
I use autohotkey to do this. (http://www.autohotkey.com/)
1>9 is F1 > F9
0 = F10
F11 and F12 are the normal keys since they are not that difficult to reach normally.
I got my strafe keys on Home, PgUp, End and PgDn



NumpadEnd::F1
NumpadDown::F2
NumpadPgDn::F3
NumpadLeft::F4
NumpadClear::F5
NumpadRight::F6
NumpadHome::F7
NumpadUp::F8
NumpadPgUp::F9
NumpadIns::F10

Home::NumpadHome
PgUp::NumpadPgUp
PgDn::NumpadPgDn
End::NumpadEnd

May I ask, Any idea if its possible to make a hotkey that would Combine Shift+f1 and turn those two keys into numpad8 for example. so when I press Numpad8 it will actually press shift and f1
So for example NumpadUp::ShiftF1

Infernal Bolt
10-12-2014, 04:27 PM
May I ask, Any idea if its possible to make a hotkey that would Combine Shift+f1 and turn those two keys into numpad8 for example. so when I press Numpad8 it will actually press shift and f1
So for example Shift&f1::Numpad8

i think you could just use this, it is quite simple
Numpad8::Send +F1

+means shift
^means control
!means alt

so if you would want to bind a mount hotkey or soemthing you could just write it like this
Del::Send ^r

Remember that Numpad8 is called NumpadUp if numlock is not on and it has to be off for you to be able to strafe ingame.

If you bind like I do you could just hold shift down and press the button like if it was a normal F key
So in my case shift+numpad1 == shift+f1 ;)

Tripkip
10-12-2014, 04:45 PM
i think you could just use this, it is quite simple
Numpad8::Send +F1

+means shift
^means control
!means alt

so if you would want to bind a mount hotkey or soemthing you could just write it like this
Del::Send ^r

Remember that Numpad8 is called NumpadUp if numlock is not on and it has to be off for you to be able to strafe ingame.

If you bind like I do you could just hold shift down and press the button like if it was a normal F key
So in my case shift+numpad1 == shift+f1 ;)

Ive tryed the following, but then it basicly typs F1 in tibia haha.
What I want is lets say I got massres on Shift + F1, what I want is that when I press NumpadUp that I cast mas res

NumpadUp::Send +F1

So that didnt work out :(

EDIT: simply had to take Send away and it worked now

Infernal Bolt
10-12-2014, 05:09 PM
Ive tryed the following, but then it basicly typs F1 in tibia haha.
What I want is lets say I got massres on Shift + F1, what I want is that when I press NumpadUp that I cast mas res

NumpadUp::Send +F1

So that didnt work out :(

You could try and do it manually then
NumpadUp::Send {Shift Down}{F1 Down}{F1 Up}{Shift Up}

Tripkip
10-12-2014, 06:36 PM
You could try and do it manually then
NumpadUp::Send {Shift Down}{F1 Down}{F1 Up}{Shift Up}
Nah the Send will basicly write down whatever is behind the key

Send Sincerely,{enter}John Smith ; This line sends keystrokes to the active (foremost) window.
return

Infernal Bolt
10-13-2014, 09:01 AM
Nah the Send will basicly write down whatever is behind the key

Send Sincerely,{enter}John Smith ; This line sends keystrokes to the active (foremost) window.
return

Did you even try it? it works fine for me...

Tripkip
10-13-2014, 09:08 AM
Did you even try it? it works fine for me...

Yeah I've tryed it, The "send" basicly works like a hotkey in tibia, u can bind a text to a certain key.

to combine two keys into one, you have to do it like this.


Home::^F1
End::^F5
Del::^F6
PgDn::+F8
PgUp::+F7

Infernal Bolt
10-13-2014, 09:31 AM
Yeah I've tryed it, The "send" basicly works like a hotkey in tibia, u can bind a text to a certain key.

to combine two keys into one, you have to do it like this.


Home::^F1
End::^F5
Del::^F6
PgDn::+F8
PgUp::+F7


Send can also print keys if you put them inside {} like i did in the previous posts.

Tripkip
10-13-2014, 09:34 AM
Send can also print keys if you put them inside {} like i did in the previous posts.

Well i've got it working now :D! like I posted above works perfectly fine for me, geuss theres 2 ways then :P.

thanks for the help