Well first off you guy's have done an incredible job on this game. I was hooked after the first five minutes.
but i have one minor problem, i did not really like how you had to scroll through all you're items to get to you're blaster and back to you're secondary weapon then having to push another button just to confirm the selection. it took me more time than i wanted to simply switch.
So i decided to read about the commands ect so i could make a quick script that would toggle between blaster and secondary and vice versa in one button press :O. i have some problems with the script though, it switches from blaster to secondary like wanted, but does not switch back and forth.
could any of you that are fluent in q3 engine alias and binds help me out?
here is the script so far
// weapon swap
set wep1 "itemact blaster; itemact rifle set swep vstr wep2"
set wep2 "itemact rifle; itemact ckit set swep vstr wep3"
set wep3 "itemact ckit; itemact ackit set swep vstr wep4"
set wep4 "itemact ackit; itemact shotgun set swep vstr wep5"
set wep5 "itemact shotgun; itemact lgun set swep vstr wep6"
set wep6 "itemact lgun; itemact prifle set swep vstr wep7"
set wep7 "itemact prifle; itemact mdriver set swep vstr wep8"
set wep8 "itemact mdriver; itemact flamer set swep vstr wep9"
set wep9 "itemact flamer; itemact chaingun set swep vstr wep10"
set wep10 "itemact chaingun; itemact lcannon set swep vstr wep11"
set wep11 "itemact lcannon; itemact psaw set swep vstr wep1"
set swep "vstr wep1"
bind g "vstr swep"
// end script