If you need help with scripts, post your problem here. One of our members is sure to get back to you. If you wold like to help people with scripts, sign up here. The aim of this is to reduce the amount of threads in the Help With Scripts forum, and eventually become a complete guide to scripting.
Members
These people help you with your scripting issues.
JH1010 Is Currently
dvd4 Is Currently
BirdByte Is Currently
firedrake969 Is Currently
bullelk12 Is Currently
Jodymoses Is Currently
Martiscratch Is Currently
ErnieParke Is Currently
Auto007 Is Currently
yoshidude56 Is Currently
Ideas Is Currently
Seil Is Currently
GlennWright Is Currently
machinespray Is Currently
BurritoSM Is Currently
fetchydog567 Is Currently
technoboy10 Is Currently
lovekid2002 Is Currently
OrcaCat Is Currently
Blazingwave Is Currently
ianthestuntman Is Currently
numberonegamers Is Currently
Aditya007 Is Currently
funnymee323 Is Currently
CAA14 is Currently
7734f is Currently
shivadas is Currently
xlk is Currently
Tohmis is Currently
Last edited by JH1010 (2013-04-27 03:09:50)
Offline
dvd4 wrote:
do you need more members ?
Yes we do. Would you like to join?
Offline
dvd4 wrote:
JH1010 wrote:
dvd4 wrote:
do you need more members ?
Yes we do. Would you like to join?
yes
added
Offline
I can help I guess, but dot expect me to be the most active. I'm to lazy to make my own one of these
Offline
zubblewu wrote:
I can help I guess, but dot expect me to be the most active. I'm to lazy to make my own one of these
Don't worry. We don't get many problems.
Offline
BirdByte wrote:
I would love to be a part of this. Sign me up!
firedrake969_test wrote:
Join may I?
You're both in.
Offline
Thanks mods for changing the title.
Offline
Jodymoses wrote:
Who is in?
So far the members are JH1010, dvd4, zubblewu, BirdByte and firedrake969. Would you like to join?
Offline
bullelk12 wrote:
I'd like to join also. I've had plenty of experience with scratch to be helpful.
You're in.
Offline
Jodymoses wrote:
Me too
I'll add you.
Offline
Can we ask amature questions to each other like, how to add links, or how to make a simple scroller, or how to annimate, etc.?
Offline
Jodymoses wrote:
Can we ask amature questions to each other like, how to add links, or how to make a simple scroller, or how to annimate, etc.?
Yes, members can ask questions.
Offline
just downloaded scratch. can't seem to make gravity work right. velocity doesn't seem to work either. I have tried the tutorials mine doesn't work like their's . any Ideas? john 17312@aol.com
Offline
john17312 wrote:
just downloaded scratch. can't seem to make gravity work right. velocity doesn't seem to work either. I have tried the tutorials mine doesn't work like their's . any Ideas? john 17312@aol.com
First, giving out your e-mail is unessecary and against the community guidelines, because I can just reply like this.
Secondly, your problem.
1) Change the colour of the floor to black.
2) Change everything else to a colour that is not black.
3) Add these scripts:
when gf clicked // Or whenever you want the gravity to start. forever if <<key [up arrow v] pressed?> and <touching color [#000000]?>> // This prevents double jumping. change [y velocity v] by (6) // This will be how high your character bounces. 6 works well. end end
when gf clicked // Or whenever you want the gravity to start. forever if <not <touching color [#000000]?>> // Means you can't go down when you hit the floor. change [y velocity v] by (0.4) // How strong your gravity is. 0.4 works well. else set [y velocity v] to (0) // Stops the sprite when it hits the ground. end end
when gf clicked // Or whenever you want the gravity to start. forever change y by (y velocity) // This is what will make the sprite move. end
Last edited by JH1010 (2012-09-18 01:55:54)
Offline
Offline