Author Topic: keybinder help  (Read 2990 times)

infern0man1

  • ~(=^・ω・^)ψ
  • Global Moderator
  • Oatmeal Killer
  • Posts: 1.021
  • Dear sir stroke madam, fire exclamation point
  • OS:
  • Windows Vista/Server 2008 Windows Vista/Server 2008
  • Browser:
  • Chrome 31.0.1650.63 Chrome 31.0.1650.63
    • View Profile
    • Twitter
  • Playstyle: Keyboard
keybinder help
« on: December 17, 2013, 07:47:04 PM »
use a keybinder


how exactly would you do this? I have no interest to figure out how, and I'm not good using the controller for everything.
If someone could help me, thanks

dYnAm1c

  • Wannabe
  • Posts: 24
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 31.0.1650.63 Chrome 31.0.1650.63
    • View Profile
Re: keybinder help
« Reply #1 on: December 18, 2013, 12:04:37 PM »
With Autohotkey you can bind keys to other key, but needs a bit of scripting, not hard tho.
I think there are also other programs which don't require scripting but I don't know any. Hope that is what you wanted to know.


Edit: Here's a tutorial on how to remap keys with autohotkey, needs just one line of code.

Kefit

  • Spike Dodger
  • Posts: 108
  • The Former Wild Draw Four of America
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Firefox 27.0 Firefox 27.0
    • View Profile
  • Playstyle: Keyboard
Re: keybinder help
« Reply #2 on: March 28, 2014, 01:17:44 AM »
I've been trying to remap my keys using autohotkey and am running into some issues. Basically, I want z and x to be my shift keys and c to be z, mostly so I can do jump canceling with one hand. Unfortunately I can't seem to get this setup properly, and my new shift keys are doing some screwy things. Would anyone be willing to share their properly working autohotkey (or any similar scripting engine) script for remapping I Wanna controls?

infern0man1

  • ~(=^・ω・^)ψ
  • Global Moderator
  • Oatmeal Killer
  • Posts: 1.021
  • Dear sir stroke madam, fire exclamation point
  • OS:
  • Linux Linux
  • Browser:
  • Safari 4.0 Safari 4.0
    • View Profile
    • Twitter
  • Playstyle: Keyboard
Re: keybinder help
« Reply #3 on: March 28, 2014, 07:56:26 PM »
What I did was just   LShift::RShift.

So, maybe try something like
Code: [Select]
LShift::Z
RShift::X
Z::C
LShift::RShift

Kefit

  • Spike Dodger
  • Posts: 108
  • The Former Wild Draw Four of America
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Firefox 27.0 Firefox 27.0
    • View Profile
  • Playstyle: Keyboard
Re: keybinder help
« Reply #4 on: March 28, 2014, 11:13:38 PM »
What I did was just   LShift::RShift.

This little bit here seems to have fixed all the issues I was having, thanks! Your code is a bit off though, at least for auto hotkey. You were probably just going off of memory, but here's some working auto hotkey code just in case anyone else ever finds this thread:

Code: [Select]
z::LShift
x::RShift
c::z
LShift::RShift

infern0man1

  • ~(=^・ω・^)ψ
  • Global Moderator
  • Oatmeal Killer
  • Posts: 1.021
  • Dear sir stroke madam, fire exclamation point
  • OS:
  • Windows 7/Server 2008 R2 Windows 7/Server 2008 R2
  • Browser:
  • Chrome 35.0.1916.114 Chrome 35.0.1916.114
    • View Profile
    • Twitter
  • Playstyle: Keyboard
Re: keybinder help
« Reply #5 on: June 10, 2014, 10:52:26 AM »
Ah. Then I was going off of memory AND I was typing that reply on my phone, which really isn't the best thing to use to post on a forum as it wouldn't let me go back and delete the errors in the code without having to delete everything else, which also took like 5 minutes to type because fuck Android phones :Kappa:


Anyways, glad it works out.