At the moment the only thing I'm able to do is make short stories and scenes. How do I make ACTUAL games, like Platform Adventure or something like that?
Please reply if you think you can help!
Offline
when gf clicked forever if <[left arrow v]key pressed?> repeat until <not <[left arrow v] key pressed?>> change x by [-1] end end if <[right arrow v] key pressed?> repeat until < not <[right arrow v] key pressed?>> change x by [1] end end when gf clicked forever if <touching color [color of ground]?> change y by [5] end if <not <touching color [color of ground]?>> change y by [-5] end <when[space v] key pressed> if <touching color [color of ground]?> perform jump you wish it to else stop script endIn order from top to bottom:
Last edited by wasabi56 (2012-05-28 23:12:34)
Offline
When I want to make a game that is similar to another, I download it and look at the scripts.
So if you want to make a platform adventure game, look for a game like that and download it to see how they did it. A good example of a platform game is Blob.
Look at the scripts to help you make your own game.
Offline
suma1234 wrote:
how to make a line move by itself differently every time?
You use the "Pick Random" block found under Operators. Example:
when gf clicked forever change x by (pick random (-5) to (5)) wait (0.5) secs end
Last edited by SciTecCf (2012-05-30 08:10:05)
Offline