Let's talk a little bit about SB syntax, some people has asking me, why my cleo-scripts looks so different than yours?. That's because I'm using another syntax to write the cleo script. Sanny Builder has two kind of syntax; Low Level Struct High Level Struct the difference between both are; one uses labels and the other don't. cleaner code in High Level Struct more readable in High Level Struct Low Level Struct, uses; :label - else_jump @label - jf @label - jump @label High Level Struct, uses; while true - end while - end repeat - until for - end if - then - end if - then - else - end now, I'm going to show you how to use High Level Struct instead Low Level Struct. for example; Command: while true - end Left side: High Level Struct Right side: Low Level Struct the red lines, indicate the Flow of the Game Command: while - end Topside: High Level Struct Underside: Low Level Struct the blue li...