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

#1 2012-05-22 10:36:21

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Very Simple Help Here! Everything To Do With Scratch!

Hello scratchers seeking for help!

I am willing to help anybody with scripts very soon! I will post you the script that you will be needing or help you make something in your project (Including inspiration)!

Please post below!


"Submarines are like water like underwater airplanes" O_o

Offline

 

#2 2012-05-23 11:20:40

zammer990
Scratcher
Registered: 2012-01-22
Posts: 500+

Re: Very Simple Help Here! Everything To Do With Scratch!

This should be in requests I think, as you're offering something rather than requesting.


http://i45.tinypic.com/2ynq7nn.jpg Play now!

Offline

 

#3 2012-05-23 13:46:25

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

zammer990 wrote:

This should be in requests I think, as you're offering something rather than requesting.

Yeah, but this is for people with help, they go here and can ask for help here.


"Submarines are like water like underwater airplanes" O_o

Offline

 

#4 2012-05-24 04:59:29

jontmy00
Scratcher
Registered: 2011-11-28
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

ExtremelyGamer wrote:

zammer990 wrote:

This should be in requests I think, as you're offering something rather than requesting.

Yeah, but this is for people with help, they go here and can ask for help here.

That's the whole point of the Help With Scripts forum. If (New) Scratchers want to ask for help, they can just create a new thread. I agree with zammer990 or else this thread should be closed.


FOR ALL THE NEWS ON UPDATES FOR SIMPLISTICRAFT, CLICK HERE.

Offline

 

#5 2012-05-24 06:36:15

suma1234
New Scratcher
Registered: 2012-03-26
Posts: 13

Re: Very Simple Help Here! Everything To Do With Scratch!

how to hide sprites

Offline

 

#6 2012-05-24 06:54:43

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

Use the

hide
block  smile


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#7 2012-05-24 07:12:14

suma1234
New Scratcher
Registered: 2012-03-26
Posts: 13

Re: Very Simple Help Here! Everything To Do With Scratch!

but when background 1 starts i want to hide something and when background 2 starts i want to show it again

Offline

 

#8 2012-05-24 08:00:12

ImagineIt
Scratcher
Registered: 2011-02-28
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

when gf clicked
forever
if <([background  v] of [stage v] = (1))>
hide
end
if <([background  v] of [stage v] = (2))>
show
end
end

Last edited by ImagineIt (2012-05-24 08:08:10)

Offline

 

#9 2012-05-24 08:08:41

ImagineIt
Scratcher
Registered: 2011-02-28
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

I just can't get it right...

Offline

 

#10 2012-05-24 09:00:22

jontmy00
Scratcher
Registered: 2011-11-28
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

ImagineIt wrote:

when gf clicked
forever
if <(background #) = (1)>
hide
end
if <(background #) = (2)>
show
end
end

Blocks fixed.  wink


FOR ALL THE NEWS ON UPDATES FOR SIMPLISTICRAFT, CLICK HERE.

Offline

 

#11 2012-05-24 19:13:19

Firedrake969
Scratcher
Registered: 2011-11-24
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

I need a gravity and yscrolling script.


Click the sign.
https://s3.amazonaws.com/eterna/eterna2/logo2.png

Offline

 

#12 2012-05-25 15:08:32

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

1. open Scratch
2. Click Import new sprite
3. GO to the folder things
4. Scroll down and find a red ball saying gravity marble.


"Submarines are like water like underwater airplanes" O_o

Offline

 

#13 2012-05-25 18:11:04

Firedrake969
Scratcher
Registered: 2011-11-24
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

How to create my own AND a y scrolling game.  I need the gravity script so you only can jump once at a time...

Last edited by Firedrake969 (2012-05-25 18:12:18)


Click the sign.
https://s3.amazonaws.com/eterna/eterna2/logo2.png

Offline

 

#14 2012-05-25 21:08:31

ImagineIt
Scratcher
Registered: 2011-02-28
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

jontmy00 wrote:

ImagineIt wrote:

when gf clicked
forever
if <([background # v] of [Stage v]) = (1)>
hide
end
if <([background # v] of [Stage v]) = (2)>
show
end
end

Blocks fixed.  wink

Fixed a fix of my own scripts.

Offline

 

#15 2012-05-26 02:54:43

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

Firedrake969 wrote:

How to create my own AND a y scrolling game.  I need the gravity script so you only can jump once at a time...

For gravity,

when gf clicked
forever if <<not <touching [ground v]?>> and <touching [air v]?>>
  change y by [2]

Last edited by ExtremelyGamer (2012-05-27 02:55:00)


"Submarines are like water like underwater airplanes" O_o

Offline

 

#16 2012-05-26 03:00:51

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

just can't get it right...


"Submarines are like water like underwater airplanes" O_o

Offline

 

#17 2012-05-26 08:12:15

zammer990
Scratcher
Registered: 2012-01-22
Posts: 500+

Re: Very Simple Help Here! Everything To Do With Scratch!

ExtremelyGamer wrote:

when gf clicked
forever if <<not <touching [ground v]?>> and <touching [air v]?>>
change y by (2)
end

Fixed, booleans need ? after the []


http://i45.tinypic.com/2ynq7nn.jpg Play now!

Offline

 

#18 2012-05-26 22:11:24

GoldSnail
New Scratcher
Registered: 2012-05-26
Posts: 6

Re: Very Simple Help Here! Everything To Do With Scratch!

I'm a beginner and I don't know how to make my sprite move. I also don't know how to extend my background as far as I want to the right.

Offline

 

#19 2012-05-26 22:27:22

GoldSnail
New Scratcher
Registered: 2012-05-26
Posts: 6

Re: Very Simple Help Here! Everything To Do With Scratch!

how do i make my character have lives and lose lives?

Offline

 

#20 2012-05-27 02:36:32

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

Move:

when gf clicked
forever if <key [right arrow v] pressed?>
  change x by [10]
And you do this to all the rest.

Last edited by ExtremelyGamer (2012-05-27 02:41:12)


"Submarines are like water like underwater airplanes" O_o

Offline

 

#21 2012-05-27 02:49:59

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

Lives:

when gf clicked
set [life v] to [5]
forever if <touching [bad guy v]?>
  change [life v] by [-1]
  wait until <not <touching [bad guy v]?>>

Last edited by ExtremelyGamer (2012-05-27 02:51:16)


"Submarines are like water like underwater airplanes" O_o

Offline

 

#22 2012-05-27 02:59:13

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

Firedrake969 wrote:

I need a gravity and yscrolling script.

for the y scrolling, just find a x scrolling script and change the x and instead of 480, have 360!


"Submarines are like water like underwater airplanes" O_o

Offline

 

#23 2012-05-27 15:43:50

GoldSnail
New Scratcher
Registered: 2012-05-26
Posts: 6

Re: Very Simple Help Here! Everything To Do With Scratch!

How do I make my sprite jump up? I need it to go up and down if thats clearer. Also, how do i make an obstacle go up and down without some one clicking it?

Offline

 

#24 2012-05-27 15:46:56

GoldSnail
New Scratcher
Registered: 2012-05-26
Posts: 6

Re: Very Simple Help Here! Everything To Do With Scratch!

WHen my sprite's lives go to 0, how do I make the bakground automatically say "gmae over"?

Offline

 

#25 2012-05-28 08:30:46

ExtremelyGamer
Scratcher
Registered: 2012-03-11
Posts: 1000+

Re: Very Simple Help Here! Everything To Do With Scratch!

GoldSnail wrote:

WHen my sprite's lives go to 0, how do I make the bakground automatically say "gmae over"?

when gf clicked
forever if <(life) = [0]>
  switch to background [game over v]

Last edited by ExtremelyGamer (2012-05-28 08:31:19)


"Submarines are like water like underwater airplanes" O_o

Offline

 

Board footer