Change ENGINEER_PDA's effect.

When set to off, now completely hides the PDAs.
This commit is contained in:
Lyrositor
2014-02-23 10:06:16 +01:00
parent de2cd06769
commit 6320e83b09
3 changed files with 13 additions and 4 deletions

View File

@@ -31,7 +31,6 @@ alias DEBUG_OUTPUT_ON_START "show_output"
// Enables or disables the Engineer's construction and destruction PDA (not
// essential with the additional key bindings). When disabled, the building
// keys are each shifted two keys to the left.
// You can still bring the PDAs up with mouse scroll.
alias ENGINEER_PDA "pda_off"
// LOADOUT_SWITCH

View File

@@ -20,6 +20,16 @@ alias buildings_6 "alias key6 sentry; alias key7 dispenser; alias key8 t_entranc
// PDA
// Enables or disables the Engineer's PDA.
alias pda_on "alias key4 slot4; alias key5 slot5; buildings_6"
alias pda_off "buildings_4; alias key8 slot8; alias key9 slot9"
alias scroll_1 "slot1; alias scroll_up scroll_3; alias scroll_down scroll_2"
alias scroll_2 "slot2; alias scroll_up scroll_1; alias scroll_down scroll_3"
alias scroll_3 "slot3; alias scroll_up scroll_2; alias scroll_down scroll_1"
alias scroll_on "alias scroll_up invprev; alias scroll_down invnext"
alias scroll_off "scroll_1"
alias key1_off "slot1; scroll_1"
alias key2_off "slot2; scroll_2"
alias key3_off "slot3; scroll_3"
alias pda_on "alias key1 slot1; alias key2 slot2; alias key3 slot3; alias key4 slot4; alias key5 slot5; buildings_6; scroll_on"
alias pda_off "alias key1 key1_off; alias key2 key2_off; alias key3 key3_off; buildings_4; alias key8 slot8; alias key9 slot9; scroll_off"
bind MWHEELUP scroll_up
bind MWHEELDOWN scroll_down
ENGINEER_PDA