Just playing around and can't figure out why this code does not work. It will open up and give you the choices. I am only trying to get the N choice to work. when I push N or n it crashes the output screen and says that that window will close the screen. Here is the code.
position_x = 0
position_y = 0
print "Which way do you want to go? "
print "(N)orth, (S)outh, (E)ast, (W)est ", player_move$
input player_move$
select player_move$
case 1
if player_move = N || n
print "Player position = ", position_y + 1, ",", position_x
ENDIF
endcase
endselect
wait key
Thanks
Dragonslayer[