# means the value of a item in the RAM. so for example : #3 would be converted to the value of item 3 of the RAM when the code is ran. Wait(1) - waits 1 seconds Add(1,#2,#3) - adds the contents of item 2 in the RAM and item 3 in the RAM and puts the sum in item 1 of the RAM (there is also Subtract, Multiply and Divide. they work the same as Add) Set Pen Colour to(50) - Sets the pen's colour to 50 Set Pen Brightness to(5) - Sets the pen's Brightness to 5 Set Pen Saturation to(100) - Sets the pen's Saturation to 100 Set Pen Transparency to(0) - Sets the pen's Transparency to 0 Move to(100,-100) - goes to position X:100 Y:-100 on the screen. Pen Down()/Pen Up() - are self explanatory prompt(what's your name?,1,?) - when the ? key is pressed it will ask "What's your name?" and store the answer in item 1 of the RAM #programing #scratch-64 #trending
Me