Use turbo-mode (shift+click flag) for best experiences, but it's not /|\ required. | It does not have an editor, so you have to go inside to edit it... | press [C], [V], and [B] to switch from the main-Code, Value-code, and Boolean-code descriptions. here is a cheat sheet with some of the coding keywords: print ('text') prints 'text' (remember the ' ' ) print (text) prints the variable named text new var pi 3.14159 creates a new var named 'pi' with a value of 3.14159 pi = 3.1416 sets pi to 3.1416 rest 4 waits 4 seconds if <bind_all:mouse> then: if mouse-down then: print ('now-the-mouse-is-down...') prints 'now-the-mouse-is-down...' end ends a if statement (or a loop) #Note: you have to put an 'end' at the end of your loop/if statement #Value coding, you can replace any ~value~ with any of the followings randint (1:10) creates a random number between 1 and 10 Uses: print (randint (1:10)) prints a random number between 1 and 10 #Boolean coding, you can replace any '<statement>' with any of the following <bind_all:mouse> if the mouse is down, it sets it to '1', if not, '0' Uses: if <bind_all:mouse> then: a if statement print ('now-the-mouse-is-down...') prints 'now-the-mouse-is-down...' end ends the if statement print (<bind_all:mouse>) if the mouse is down, it prints '1', if not '0' That's it, I hope you enjoyed it :)
100% me!