0 Members and 1 Guest are viewing this topic.
Quote from: p2 on August 02, 2011, 12:33:18 pm(In such a big program you can save 50 to 100 if you write it in a block. But then it'll be hard to read the code. And then it'll be very annoying if you press CLEAR!!!)Well I could but not until I am done completly.
(In such a big program you can save 50 to 100 if you write it in a block. But then it'll be hard to read the code. And then it'll be very annoying if you press CLEAR!!!)
:Lbl A:text(0,0,"Hayleia.orange"):Goto A
:Lbl A:text(...
:Lbl A:text(0,0,("Hayleia.orange:Goto A
You can write it all in big blocks, but make it like this:Code: [Select]:Lbl A:text(0,0,"Hayleia.orange"):Goto Aand not like this:Code: [Select]:Lbl A:text(...or like this:Code: [Select]:Lbl A:text(0,0,("Hayleia.orange:Goto AAlways put every ) and " and always use a new line for a new Lbl
yeah, of cause it will be diffivult.I ever made it like this:Write every command in a new line.NEVER forget any ) or "If all is ready, And you can't optimise the code more, write : at the end of every line and press DELThen it will all be a block without any mistakes!
Have you written it in a block or a single line for every command?(In such a big program you can save 50 to 100 if you write it in a block. But then it'll be hard to read the code. And then it'll be very annoying if yo press CLEAR!!!)
:Output(1,1,"HI:Pause
:Output(1,1,"HI"):Pause