Okay, I want the hotkey to check if you're using one weapon and switch to another if you are...I got this:
And nothing happens.
Any ideas?
Thanks a heap,
-TIE
*Even better (while I'm here), the ultimate goal I guess is to switch back, as well...
So if you're using 119 go to 125, if you're using 125 go to 119, and if you're using neither go to 119.
Complicated, I know, but you guys are the geniuses.![http://forums.massassi.net/html/smile.gif [http://forums.massassi.net/html/smile.gif]](http://forums.massassi.net/html/smile.gif)
[This message has been edited by TIE_14 (edited October 30, 2001).]
Code:
symbols message activated thing player local end # ======================================================================================== code activated: player = GetSourceRef(); if(GetCurWeapon(player) == 119) SelectWeapon(player, 125); else SelectWeapon(player, 119); return; end
And nothing happens.
Any ideas?
Thanks a heap,
-TIE
*Even better (while I'm here), the ultimate goal I guess is to switch back, as well...
So if you're using 119 go to 125, if you're using 125 go to 119, and if you're using neither go to 119.
Complicated, I know, but you guys are the geniuses.
![http://forums.massassi.net/html/smile.gif [http://forums.massassi.net/html/smile.gif]](http://forums.massassi.net/html/smile.gif)
[This message has been edited by TIE_14 (edited October 30, 2001).]