if you wanted to make a 1st person shooter game (Quake, Doom, Halo, etc.) that is single player (so you dont have to make a object for the player) so you just position the gun1 in the center of the screen, and you want it to beable to switch the gun when you press buttons 1-3, how would you do it?.
would you do something like this?: (this isnt actual code, i am just learning DB and i cant remember all the commands right off the top of my head

)
gun = 1
if keypress 1 then gun = 1 `if you push the [1] key
if keypress 2 then gun = 2
if keypress 3 then gun = 3
position object gun x,y,z `where ever
then you have the camera move when you press the arrows blah blah blah
is that how you would do it?
<{^_^<}