I Wanna Community

Other => Arts and Entertainment => Computer Café => Topic started by: infern0man1 on December 17, 2013, 07:47:04 PM

Title: keybinder help
Post by: infern0man1 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
Title: Re: keybinder help
Post by: dYnAm1c on December 18, 2013, 12:04:37 PM
With Autohotkey (https://www.autohotkey.com/) 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 (https://www.autohotkey.com/docs/misc/Remap.htm) on how to remap keys with autohotkey, needs just one line of code.
Title: Re: keybinder help
Post by: Kefit 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?
Title: Re: keybinder help
Post by: infern0man1 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
Title: Re: keybinder help
Post by: Kefit 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
Title: Re: keybinder help
Post by: infern0man1 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.