I want to change if my R.O.B. program uses Joysticks or Keyboard/Kids/Touchpad/Keypad controllers based on difficulty switches. One of my pet peeves is not knowing how they should be used, especially when different systems have different labels on them. So what I decided is if they are the same, use Joystick, if they are different, use keyboard. I will probably make switches un-needed anyway, but I wanted to ask about this code.
It seems I cannot use this code (or any variant I can come up with).
if switchrightb = switchleftb then (goto routine)
--- Unresolved Symbol List
0.switchleftb 0000 ???? (R )
but if I do this
if switchleftb then if !switchrightb then (goto routine)
if !switchleftb then if switchrightb then (goto routine)
It compiles and works.
I am ok, just curious if I missed somthing in the documentation.














