Key Combination CTRL B

Moderators: GSH, VSMIT, Red Devil, Commando

User avatar
GSH
Patch Creator
Posts: 2486
Joined: Fri Feb 18, 2011 4:55 pm
Location: USA
Contact:

Re: Key Combination CTRL B

Post by GSH »

By default, ctrl-b is bailout (leave your ship quickly so that you gain a lot of altitude and your ship goes *boom*). The 'h' key is for hop out -- leave your ship gently out the front, no *boom*.

There's always a boom tomorrow.

-- GSH
User avatar
Cyber
Sabre
Posts: 202
Joined: Sun Feb 20, 2011 5:46 pm

Re: Key Combination CTRL B

Post by Cyber »

I mean...

Bind("CTRL B", "control.BOOM!"); (<-CODE)
;)
User avatar
Dataanti
Thunderbolt
Posts: 117
Joined: Mon Feb 21, 2011 3:20 am
Location: A cave somewhere in Canada
Contact:

Re: Key Combination CTRL B

Post by Dataanti »

Cyber wrote:I mean...

Bind("CTRL B", "control.BOOM!"); (<-CODE)
;)
... I'm not sure but I think what you are looking for could be found in the gameprefs file... You are looking for the key commands associated with the CTRL and B right? they are where I directed you to go in my first post. You can also search them up online, they are standard key codes aren't they?
User avatar
GSH
Patch Creator
Posts: 2486
Joined: Fri Feb 18, 2011 4:55 pm
Location: USA
Contact:

Re: Key Combination CTRL B

Post by GSH »

Ignore Dataanti again.
Bind("CTRL B", "control.BOOM!"); (<-CODE)
Look at patch13.pak::addon\config\input\bzinput_common.cfg . (Pak Explorer is your canopener for .pak files). This file has the default bindings when you follow my instructions earlier in this thread for resetting to defaults. After this file is read, the actual bindings are in a user-hostile binary format in the userprefs file BZ2 reads/writes.
BindDiscrete("eject", "B", "LeftCtrl");
Bind() is used for things that have console commands. BindDiscrete is for game inputs that need to be synchronized over the network.

-- GSH
Post Reply