プレイ日記
stepa stepi03
i have REPEAT and UNTIL and it still says UNTIL without REPEAT, why?
6そうだね
プレイ済み
返信[1]
親投稿
Hanzo rzsense
Write ENDIF in line 132, 135 and 138. When THEN is followed by carriage return directly, you need ENDIF at the end of IF THEN suite. When you write IF THEN suite in a line, you don't need ENDIF.
2そうだね
未プレイ
返信[2]
親投稿
[Dev]☆MAHE maherangers
Other loop: @LOOP PRINT "EXEMPLE" GOTO @LOOP
1そうだね
プレイ済み
返信[3]
親投稿
doum95 95doum
Maybe you need to assign a value to your B variable before UNTIL . So that B can reach 16. Tell us what is that B variable ?
0そうだね
プレイ済み
返信[4]
親投稿
Nicole moesaku
Like Hanzo says, your IF statements need an ENDIF. If your entire IF is on a single line like this: IF A THEN B then it ends at the end of that line. But if it's like this, it needs an ENDIF or everything after the IF is inside it: IF A THEN B ENDIF Because of that, in your program, everything after line 130 is actually inside that IF, including the UNTIL, which is why it breaks.
1そうだね
未プレイ
返信[5]
親投稿
stepa stepi03
@doum95 B=BUTTON() 16=#A @everyone thank you guys very much, but i already fixed it :D
1そうだね
プレイ済み