Originally posted by Duddy.
This is a small "tut" on how to save space and stop such long binding strings.
Start by putting your open menu bind
bind dpad_up "vstr 1"
Now bind the dpad's/scroll buttons and selecting buttons to a vstr
bind dpad_up "bind dpad_down vstr d;bind dpad_up vstr u;bind button_a vstr a;vstr 1"\
The instead of putting bind dpad_down vstr 2;bind dpad_up vstr 4;bind button_a mod everytime, you just put set d vstr 2;set u vstr 4;set a mod
set 1 "^1God;set d vstr 2;set u vstr 4;set a god"
This will save alot of space. Remember to un-bind after
bind button_back "bind dpad_down +actionslot 2;bind dpad_up +actionslot 1;bind button_a +gostand"
Default Button Commands (Usefull ones)
Up: +actionslot 1
Down: +actionslot 2
Left: +actionslot 3
Right: +actionslot 4
X: +gostand
[]: usereload
This seems to be very useful to think about. Do you even know if it will work?