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

#1 2012-02-25 08:39:55

ConnorJamesMcIntosh
New Scratcher
Registered: 2012-02-25
Posts: 14

The World Hardest Game Help

How can i make the world's hardest game like make coings and make levels everything else i know wat to do

Offline

 

#2 2012-02-25 09:15:32

RedRocker227
Scratcher
Registered: 2011-10-26
Posts: 1000+

Re: The World Hardest Game Help

We can't make the entire game for you. What exactly do you need help with?


Why

Offline

 

#3 2012-02-25 09:39:30

ConnorJamesMcIntosh
New Scratcher
Registered: 2012-02-25
Posts: 14

Re: The World Hardest Game Help

the coins the levels

Offline

 

#4 2012-02-25 09:40:17

RedRocker227
Scratcher
Registered: 2011-10-26
Posts: 1000+

Re: The World Hardest Game Help

You still need to be more specific.


Why

Offline

 

#5 2012-02-25 10:11:08

ConnorJamesMcIntosh
New Scratcher
Registered: 2012-02-25
Posts: 14

Re: The World Hardest Game Help

I need help with the coins if u walk over it u get the point but if u touched the finsh line woulnt the amout of coin u wont change level

Offline

 

#6 2012-02-25 10:37:57

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: The World Hardest Game Help

You can change levels by changing the background of the stage like so:

when gf clicked
broadcast [Level 1 v]

when I receive [Level 1 v]
switch to background [Level 1 v]

when I receive [Level 2 v]
switch to background [Level 2 v]
Then for the Character, when it touches the color green, then it goes to the next level:
when I receive [Level 1 v]
go to x:(0) y:(0)
broadcast [Controls v] and wait
broadcast [Level 2 v]

when I receive [Level 2 v]
go to x:(0) y:(0)
broadcast [Controls v] and wait
broadcast [Level 3 v]

when I receive [Controls v]
repeat until <touching color [#00FF00]?>
    if <key [Up Arrow v] pressed?>
        change y by (3)
    end


    if <key [Down Arrow v] pressed?>
        change y by (-3)
    end


    if <key [Right Arrow v] pressed?>
        change x by (3)
    end


    if <key [Left Arrow v] pressed?>
        change x by (-3)
    end
end
And so on. You can also do something similar with variables. But that would take a while to write out.

For the coins:
when gf clicked
hide
set [score v] to (0)

when I receive [Level 1 v]
go to x:(10) y:(-10)
wait until <touching [player v]?>
change [score v] by (1)

when I receive [Level 2 v]
go to x:(-10) y:(10)
wait until <touching [player v]?>
change [score v] by (1)
Could you explain exactly what you want, please. Literally every aspect of it.  smile

Last edited by Magnie (2012-02-25 10:41:02)

Offline

 

#7 2012-02-25 11:45:32

ConnorJamesMcIntosh
New Scratcher
Registered: 2012-02-25
Posts: 14

Re: The World Hardest Game Help

know any good pic

Offline

 

#8 2012-02-25 11:59:46

Stickman704
Scratcher
Registered: 2009-01-31
Posts: 1000+

Re: The World Hardest Game Help

In English that means...?

Edit: Ok, sorry that's a little blunt but we can help you quicker if you say exactly what you need.

Last edited by Stickman704 (2012-02-25 12:02:53)


Dun dun dun dun dun dun.... dun dun dun dun dun dun...  tongue

Offline

 

#9 2012-02-25 12:13:05

ConnorJamesMcIntosh
New Scratcher
Registered: 2012-02-25
Posts: 14

Re: The World Hardest Game Help

Hmm idk what i need to do

Offline

 

#10 2012-02-25 12:27:42

Stickman704
Scratcher
Registered: 2009-01-31
Posts: 1000+

Re: The World Hardest Game Help

Tell us what you have done so far.


Dun dun dun dun dun dun.... dun dun dun dun dun dun...  tongue

Offline

 

#11 2012-02-25 12:30:03

coolhogs
Scratcher
Registered: 2011-07-26
Posts: 1000+

Re: The World Hardest Game Help

Stickman704 wrote:

Tell us what you have done so far.

or just upload it.


Get ready for domination of:  tongue

Offline

 

#12 2012-02-25 13:12:27

ConnorJamesMcIntosh
New Scratcher
Registered: 2012-02-25
Posts: 14

Re: The World Hardest Game Help

check my games

Offline

 

#13 2012-02-25 15:45:29

Stickman704
Scratcher
Registered: 2009-01-31
Posts: 1000+

Re: The World Hardest Game Help

Okay doke.

Download this project and take a look at the scripting. This should give you a good idea on how to do more levels which seems to be the next step you need to take.  smile

http://scratch.mit.edu/projects/Stickman704/506056


Dun dun dun dun dun dun.... dun dun dun dun dun dun...  tongue

Offline

 

Board footer