J
jianmingyong
Guest
Describe the bug you experienced here.
What I expected to happen:
Somehow able to stack :while: at some point so that I don't have to think of alternative ways to loop certain script.
What actually happened:
Once the inner :while: has been ended, the entire :while: switches will stop. Kind of like it exit every single :while:
Steps to reproduce:
No idea where to start....
What I expected to happen:
Somehow able to stack :while: at some point so that I don't have to think of alternative ways to loop certain script.
What actually happened:
Once the inner :while: has been ended, the entire :while: switches will stop. Kind of like it exit every single :while:
Steps to reproduce:
No idea where to start....
Code:
@Storage.set(int,a,0)
@Storage.set(int,b,0)
:while:<Storage.get(int,a)>=0
@Text.show(Test 1)
:while:<Storage.get(int,b)>=0
@Text.show(Test 2)
@Storage.set(int,b,1)
:endwhile
:endwhile
@Text.show(while Ended)
:end