Syntax error: unexpected repeat bug.
-
Is there a work around or fix? I have some if then statements for using the control stick to convert it into nsew movement, but that makes it forget about the loop... how do I fix this?
-
@Zypher I don't really understand your problem. Can you post a sample of the code or a screenshot so that we can have a look
-
Unexpected repeat usually means a missing closing line on something. Perhaps a missing
endif
?It's hitting the
repeat
keyword when it's expecting something else. Hard to know exactly without seeing the code! -
Sorry for being gone so lone. Thank you for the advise, I had mistakenly structured the single line if then statements without an end if like smilebasic 3ds. I didn't realise those needed an endif.