|
|
#1 | ||
![]() Join Date: Dec 2009
Reputation: 245
Posts: 1,094
|
Customizable Keys (3rd Party Work Around)
Here is a quick guide on customizable keys adapted from here: http://www.autohotkey.com/docs/misc/Remap.htm .
1. Download AutoHotKey for free. http://www.autohotkey.com/download/ 2. Install AHK. 3. Open notepad. 4. Create a script (see below). 5. Save the script as "SOMENAME.ahk" - Make sure to change the "Save as type:" in Notepad to All Files before saving. 6. Double click the script to activate it. 7. *OPTIONAL* If this guide helped you out, +Rep would be nice. ![]() To make the arrow keys function as WASD: Code:
Up::w Left::a Down::s Right::d ^!s::Suspend ; Press Ctrl+Alt+S to Suspend. Press it again to resume. Using AHK with Multiple Programs: (By Sora-Chan) For those of you who use AutoHotKeys for other things or for those of you who want to use it for multiple games but with different binds, here's some code for you: Code:
#MaxThreadsPerHotkey 3 ; Need this to allow two key press threads to run at same time
#IfWinActive, Transformers: War for Cybertron ; The title of the Program's window
{
XButton1::F
}
Default control settings http://img710.imageshack.us/img710/4...2215384847.jpg Quote:
Quote:
Code:
LButton::RButton RButton::LButton Sample Script Here is code to make "f" melee and "c" transform: Code:
f::MButton c::f ^!s::Suspend ; Press Ctrl+Alt+S to Suspend. Press it again to resume. Code:
^!s::Suspend ; Press Ctrl+Alt+S to Suspend. Press it again to resume. f::MButton ; "f" activates melee LShift::f ; Left Shift activates transform XButton1::LControl ; Mouse button 4 (forward?) activates ability XButton2::LShift ; Mouse button 5 (backward?) activates 2nd ability t::b ; "t" activates kill streakes e::g ; "e" throws the grenade q::e ; "q" is the use key If you have UAC on: make sure to run Autohotkey.exe as an administrator in Vista and Windows 7 or the keys wont work in game. Make sure, when writing your script, to use lowercase letters (Except when using the Mouse Button variables). For example, if you try this: F::S, it will not work. Use this instead: f::s. Also, if you need help, let us know. We will help you! Contributors: DJ Cryotek Scythik Sora-Chan Toon Demon Last edited by Pluberus: 06-24-2010 at 12:05 PM. |
||
|
|
|
|
|
#2 |
![]() Join Date: Feb 2010
Reputation: 13
Posts: 147
|
I'll +rep ya because I like the fact you tried. This game NEEDS a workaround and if this is it, bravo.
|
|
|
|
|
|
#3 |
![]() Join Date: Feb 2010
Reputation: 140
Posts: 1,207
|
Does anyone have a copy of the default keys? They have it in-game, but a printable version would be nice.
|
|
|
|
|
|
#4 |
![]() Join Date: Jan 2009
Reputation: 17
Posts: 265
|
I've reuploaded the screenshots to imageshack. Dunno what happened to em the first time.
http://img710.imageshack.us/g/twfc2010062215384847.jpg/ |
|
|
|
|
|
#5 |
![]() Join Date: Feb 2010
Reputation: 140
Posts: 1,207
|
Typed them out for easier reference:
For the vehicle modes, I only listed commands that differed from robot mode. +rep for you, I'm going to check this out as it might actually make the game playable for me. |
|
|
|
|
|
#6 | |
![]() Join Date: May 2008
Reputation: 8
Posts: 41
|
For those of you who use AutoHotKeys alot for other things
Or for those of you who want to use it for multiple games but with different binds, heres some code for you Quote:
If you want to use it for a different game or program, just replace "Transformers: War for Cybertron" with the window's title. I have multiple binds for various games and programs using this setup. it lets me have multiple profiles ^^ hope you guys find this useful Last edited by Sora-Chan: 06-22-2010 at 06:42 PM. Reason: added a little note in the code/quote |
|
|
|
|
|
|
#7 |
![]() Join Date: Dec 2009
Reputation: 245
Posts: 1,094
|
Thanks for the input! +Repped you all.
|
|
|
|
|
|
#8 |
![]() Join Date: Oct 2008
Reputation: 3
Posts: 21
|
If you have UAC on: make sure to run Autohotkey.exe as an administrator in vista and win7 or the keys wont work in game.
|
|
|
|
|
|
#9 |
![]() Join Date: Dec 2009
Reputation: 245
Posts: 1,094
|
|
|
|
|
|
|
#10 |
![]() Join Date: Jul 2008
Reputation: 38
Posts: 496
|
This works awesome! Thanks!
![]() Finally got F to be melee like it has been in every FPS I've ever played
|
|
|
|
|
|
#11 |
![]() Join Date: Jun 2010
Reputation: 2
Posts: 110
|
Thank you!
|
|
|
|
|
|
#12 |
![]() Join Date: Dec 2009
Reputation: 245
Posts: 1,094
|
Bump and sticky request!
|
|
|
|
|
|
#13 |
![]() Join Date: May 2010
Reputation: 13
Posts: 232
|
This thread needs to be stickied!
Just a question - can you use AHK to map keys to the mouse buttons? Let's say I wanted to make Transforming map to Mouse Button 5. Would "f::Mouse5" do the trick? |
|
|
|
|
|
#14 |
![]() Join Date: Jul 2008
Reputation: 38
Posts: 496
|
Mouse button 5 is known as "XButton2"
And yes, it works. I have "transform" on my 4th mouse button, grenades on the 5th, and ability 2 on middle mouse. Oh, and you have to type the destination key first. So mapping transform to the 5th mouse button would look like: XButton2::f Note -- make sure you don't capitalize letters of keys you intend to map. If you type a capital "F", autohotkey will recognize that as "shift+f". Last edited by Stinger911: 06-23-2010 at 10:53 AM. |
|
|
|
|
|
#15 | |
![]() Join Date: May 2010
Reputation: 13
Posts: 232
|
Quote:
|
|
|
|
|
![]() |
|
||||||
| Thread Tools | |
| Display Modes | |
|
|