this is part of a subprogram that will not work for some reason.
IF[#150 LT 20] GOTO 200
#535=260
N200 #535=200
BUT NO MATTER WHAT #150 = IT ALWAYS RUNS AT 200 WHY IS THIS?
N200 is setting #535 to 200 every time. Try this:
IF[#150 LT 20] GOTO 200
#535=260
GOTO 201
N200 #535=200
N201