Thanks Mr Fibble.
The problem seems to be when I Try to do the same thing twice in one loop where the two if statments kind of interact.
see code below
turn = 1
do
repeat
if mouseclick()=1 and turn = 1
turn = 0
input "type something,",keyInput
nextTurn = 1
endif
until scancode()<>0
print "press space"
wait key
repeat
if nextTurn = 1
nextturn = 0
turn = 1
print "Thanks for typing, ",keyInput
endif
until scancode()<>0
print "press space"
cls
loop
don't seem to be able to figure what goes wrng in this case?
These are not the droids you are looking for.