mirror of
https://github.com/Michatec/wk_wars2x.git
synced 2026-04-01 00:16:27 +02:00
Added a second set of binds for small keyboards
Also changed the key lock key to L, as the "switch binds" key is now K
This commit is contained in:
65
config.lua
65
config.lua
@@ -8,29 +8,58 @@
|
||||
-- Do not touch this
|
||||
CONFIG = {}
|
||||
|
||||
-- Remote control key
|
||||
-- The default key to open the remote control is 166 (F5 - INPUT_SELECT_CHARACTER_MICHAEL)
|
||||
CONFIG.remote_control_key = 166
|
||||
CONFIG.keys =
|
||||
{
|
||||
-- Remote control key
|
||||
-- The default key to open the remote control is 166 (F5 - INPUT_SELECT_CHARACTER_MICHAEL)
|
||||
remote_control = 166,
|
||||
|
||||
-- Radar front antenna lock/unlock Key
|
||||
-- The default key to lock/unlock the front antenna is 111 (Numpad 8 - INPUT_VEH_FLY_PITCH_UP_ONLY)
|
||||
CONFIG.front_lock_key = 111
|
||||
-- Radar key lock key
|
||||
-- The default key to enable/disable the radar key lock is 182 (L - INPUT_CELLPHONE_CAMERA_FOCUS_LOCK)
|
||||
key_lock = 182,
|
||||
|
||||
-- Radar rear antenna lock/unlock Key
|
||||
-- The default key to lock/unlock the rear antenna is 112 (Numpad 5 - INPUT_VEH_FLY_PITCH_DOWN_ONLY)
|
||||
CONFIG.rear_lock_key = 112
|
||||
-- Radar keybinds switch
|
||||
-- The default to key to switch the bind set is (K - INPUT_REPLAY_SHOWHOTKEY)
|
||||
switch_keys = 311,
|
||||
|
||||
-- Radar key lock key
|
||||
-- The default key to enable/disable the radar key lock is 311 (K - INPUT_REPLAY_SHOWHOTKEY)
|
||||
CONFIG.key_lock_key = 311
|
||||
-- Keys for a full size keyboard
|
||||
[ "full" ] = {
|
||||
-- Radar front antenna lock/unlock Key
|
||||
-- The default full keyboard key to lock/unlock the front antenna is 111 (Numpad 8 - INPUT_VEH_FLY_PITCH_UP_ONLY)
|
||||
front_lock = 111,
|
||||
|
||||
-- Plate reader front lock/unlock Key
|
||||
-- The default key to lock/unlock the front plate reader is 118 (Numpad 9 - INPUT_VEH_FLY_SELECT_TARGET_RIGHT)
|
||||
CONFIG.plate_front_lock_key = 118
|
||||
-- Radar rear antenna lock/unlock Key
|
||||
-- The default full keyboard key to lock/unlock the rear antenna is 112 (Numpad 5 - INPUT_VEH_FLY_PITCH_DOWN_ONLY)
|
||||
rear_lock = 112,
|
||||
|
||||
-- Plate reader rear lock/unlock Key
|
||||
-- The default key to lock/unlock the rear plate reader is 109 (Numpad 6 - INPUT_VEH_FLY_ROLL_RIGHT_ONLY)
|
||||
CONFIG.plate_rear_lock_key = 109
|
||||
-- Plate reader front lock/unlock Key
|
||||
-- The default full keyboard key to lock/unlock the front plate reader is 118 (Numpad 9 - INPUT_VEH_FLY_SELECT_TARGET_RIGHT)
|
||||
plate_front_lock = 118,
|
||||
|
||||
-- Plate reader rear lock/unlock Key
|
||||
-- The default full keyboard key to lock/unlock the rear plate reader is 109 (Numpad 6 - INPUT_VEH_FLY_ROLL_RIGHT_ONLY)
|
||||
plate_rear_lock = 109
|
||||
},
|
||||
|
||||
-- Keys for smaller keyboards
|
||||
[ "small" ] = {
|
||||
-- Radar front antenna lock/unlock Key
|
||||
-- The default small keyboard key to lock/unlock the front antenna is 157 (1 - INPUT_SELECT_WEAPON_UNARMED)
|
||||
front_lock = 157,
|
||||
|
||||
-- Radar rear antenna lock/unlock Key
|
||||
-- The default small keyboard key to lock/unlock the rear antenna is 158 (2 - INPUT_SELECT_WEAPON_MELEE)
|
||||
rear_lock = 158,
|
||||
|
||||
-- Plate reader front lock/unlock Key
|
||||
-- The default small keyboard key to lock/unlock the front plate reader is 160 (3 - INPUT_SELECT_WEAPON_SHOTGUN)
|
||||
plate_front_lock = 160,
|
||||
|
||||
-- Plate reader rear lock/unlock Key
|
||||
-- The default small keyboard key to lock/unlock the rear plate reader is 164 (4 - INPUT_SELECT_WEAPON_HEAVY)
|
||||
plate_rear_lock = 164
|
||||
}
|
||||
}
|
||||
|
||||
-- Radar fast limit locking
|
||||
-- When enabled, the player will be able to define a fast limit within the radar's menu, when a vehicle
|
||||
|
||||
Reference in New Issue
Block a user