This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-06-24 21:58:32

Puffleboy25
New Scratcher
Registered: 2012-06-24
Posts: 8

Help please!

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

 

#2 2012-06-24 22:10:43

777w
Scratcher
Registered: 2009-02-10
Posts: 1000+

Re: Help please!

if you mean a multiplayer online game then thats really hard even for the most advanced of scratchers

Offline

 

#3 2012-06-24 22:21:12

Paddle2See
Scratch Team
Registered: 2007-10-27
Posts: 1000+

Re: Help please!

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.


http://i39.tinypic.com/2nav6o7.gif

Offline

 

#4 2012-06-24 23:20:24

silvershine
Scratcher
Registered: 2010-11-21
Posts: 500+

Re: Help please!

When Scratch 2.0 is released, you may be able to pull this off using cloud variables that store the coordinates of other players.  smile

Offline

 

#5 2012-06-25 02:04:19

JH1010
Scratcher
Registered: 2012-05-31
Posts: 1000+

Re: Help please!

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
end
For the puffle to follow:

when gf clicked
forever
go to sprite 1 v // Change this to which sprite the penguin is.
end
Hope this helps.

Offline

 

#6 2012-06-25 02:13:26

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Help please!

There are many ways of creating games of this type.
Try downloading a few existing projects like this, to see how they function.


http://trinary.tk/images/signature_.php

Offline

 

#7 2012-06-25 05:42:41

777w
Scratcher
Registered: 2009-02-10
Posts: 1000+

Re: Help please!

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

 

#8 2012-06-25 07:49:13

Wes64
Scratcher
Registered: 2011-08-19
Posts: 1000+

Re: Help please!

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
end
For the puffle to follow:

when gf clicked
forever
go to sprite 1 v // Change this to which sprite the penguin is.
end
Hope this helps.

You've got a lot of errors in those scratchblocks there...
Here's the guide for using the scratch blocks plugin. ;D


Experienced 2.0 Tester: Ask me questions!
Using Firefox 13.0, Flash plugin version 11.4.402.287, and Windows XP Professional.

Offline

 

#9 2012-06-25 18:36:16

Puffleboy25
New Scratcher
Registered: 2012-06-24
Posts: 8

Re: Help please!

I mean like Fireicedude's Penguin Village.

Offline

 

Board footer