I want to make a game like Club Penguin but idk how! What's the scripts to make a game like club penguin! Please help!
Offline
if you mean a multiplayer online game then thats really hard even for the most advanced of scratchers
Offline
That's a pretty big mouthful to bite off! You might want to start with smaller things and work up to more complicated things. Maybe start with sprite motion, then interaction with other sprites.
Unfortunately, there isn't really a way to make a workable multi-player online game in the current version of Scratch. But you can make some pretty cool "virtual world" type projects that a single player can explore.
Offline
When Scratch 2.0 is released, you may be able to pull this off using cloud variables that store the coordinates of other players.
Offline
The penguin movement is easy. It is just the arrow key script which is one of the most common scripts in scratch.
when gf clicked forever if <key up arrow pressed> change y by 5 end if <key down arrow pressed> change y by -5 end if <key right arrow pressed> change x by 5 end if <key left arrow pressed> change y by -5 end endFor the puffle to follow:
when gf clicked forever go to sprite 1 v // Change this to which sprite the penguin is. endHope this helps.
Offline
Paddle2See wrote:
Unfortunately, there isn't really a way to make a workable multi-player online game in the current version of Scratch. But you can make some pretty cool "virtual world" type projects that a single player can explore.
yes there is, i simply havent released it yet :P
Offline
JH1010 wrote:
The penguin movement is easy. It is just the arrow key script which is one of the most common scripts in scratch.
when gf clicked forever if <key up arrow pressed> change y by 5 end if <key down arrow pressed> change y by -5 end if <key right arrow pressed> change x by 5 end if <key left arrow pressed> change y by -5 end endFor the puffle to follow:when gf clicked forever go to sprite 1 v // Change this to which sprite the penguin is. endHope this helps.
You've got a lot of errors in those scratchblocks there...
Here's the guide for using the scratch blocks plugin. ;D
Offline
I mean like Fireicedude's Penguin Village.
Offline