(adsbygoogle = window.adsbygoogle || []).push({});
Currently I am using Chrome's 1.12 patch. Now, instead of pressing the LEFT PAD to enter the menu, I would like it to be the UP PAD.
the original codes were:
bind BUTTON_RSHLDR "+attack"
bind BUTTON_LSHLDR "+speed_throw"
bind BUTTON_RTRIG "+frag"
bind BUTTON_LTRIG "+smoke"
bind BUTTON_RSTICK "+melee"
bind BUTTON_LSTICK "+breath_sprint"
set gpad_button_rstick_deflect_max 1
set gpad_button_lstick_deflect_max 1
bind BUTTON_A "+gostand"
bind BUTTON_B "+stance"
bind BUTTON_X "+usereload"
bind BUTTON_Y "weapnext"
bind DPAD_UP "+actionslot 1"
bind DPAD_DOWN "+actionslot 2"
bind DPAD_RIGHT "+actionslot 4"
bind BUTTON_START "togglemenu"
bind DPAD_LEFT "vstr MENU"
and the edited codes are:
bind BUTTON_RSHLDR "+attack"
bind BUTTON_LSHLDR "+speed_throw"
bind BUTTON_RTRIG "+frag"
bind BUTTON_LTRIG "+smoke"
bind BUTTON_RSTICK "+melee"
bind BUTTON_LSTICK "+breath_sprint"
set gpad_button_rstick_deflect_max 1
set gpad_button_lstick_deflect_max 1
bind BUTTON_A "+gostand"
bind BUTTON_B "+stance"
bind BUTTON_X "+usereload"
bind BUTTON_Y "weapnext"
bind DPAD_UP "vstr MENU"
bind DPAD_DOWN "+actionslot 2"
bind DPAD_RIGHT "+actionslot 4"
bind BUTTON_START "togglemenu"
bind DPAD_LEFT "+actionslot 3"
For some reason, that didn't work for me. Now the game crashes and/or blackscreens. Can anyone help me out? All I want to do is change the LEFT to UP to open the menu. Thanks in advance!