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

#76 2012-10-17 15:31:47

Friddle16
Scratcher
Registered: 2012-08-21
Posts: 100+

Re: The Fire collab (Help wanted)

Wrong project use the fireballer alpha 1.1 to put the menu in!


http://oi46.tinypic.com/21c78yw.jpg

Offline

 

#77 2012-10-18 10:22:38

Spyderblade
Scratcher
Registered: 2012-07-13
Posts: 100+

Re: The Fire collab (Help wanted)

Hello! Trogdor667 said to come here and tell you how to make a smooth jump.
1. Make a variable called Vy (it can actually be called anything, but that name makes it simple)

set [Vy] to (0)
2. You will need 3 scripts, here is the first one:
when I receive [START v]
forever
 if <key [up arrow v] pressed?>
  set [Vy v] to (20)
  repeat until <touching color [#000000]>
   change [Vy v] by (-1)
  end
 end
end
3. Here's the second (remember, these scripts all go in the sprite that moves)
when I receive [START v]
forever
 if <touching color [#000000]>
  set [Vy v] to (0)
 end
end
4. Here's the last one:
when I receive [START v]
forever
change y by (Vy)
end
Now when you press the up arrow, it should give you a smooth jump!
If you want to, you can put this all into one script: (but it's slightly slower)
when I receive [START v]
set [Vy v] to (0)
forever
 if <touching color [#000000]>
  set [Vy v] to (20)
  repeat until <touching color [#000000]>
  change [Vy v] by (-1)
  end
 end
 if <touching color [#000000]>
  set [Vy v] to (0)
 end
 change y by (Vy)
end

Last edited by Spyderblade (2012-10-18 10:33:27)


http://i48.tinypic.com/2pzbc5x.jpg
Am I online? http://blocks.scratchr.org/API.php?user=Spyderblade&amp;action=onlineStatus&amp;type=circle And, check out my Challenge Mission 2!!

Offline

 

#78 2012-10-18 11:34:27

trogdor667
Scratcher
Registered: 2012-09-03
Posts: 38

Re: The Fire collab (Help wanted)

Spyderblade wrote:

Hello! Trogdor667 said to come here and tell you how to make a smooth jump.
1. Make a variable called Vy (it can actually be called anything, but that name makes it simple)

set [Vy] to (0)
2. You will need 3 scripts, here is the first one:
when I receive [START v]
forever
 if <key [up arrow v] pressed?>
  set [Vy v] to (20)
  repeat until <touching color [#000000]>
   change [Vy v] by (-1)
  end
 end
end
3. Here's the second (remember, these scripts all go in the sprite that moves)
when I receive [START v]
forever
 if <touching color [#000000]>
  set [Vy v] to (0)
 end
end
4. Here's the last one:
when I receive [START v]
forever
change y by (Vy)
end
Now when you press the up arrow, it should give you a smooth jump!
If you want to, you can put this all into one script: (but it's slightly slower)
when I receive [START v]
set [Vy v] to (0)
forever
 if <touching color [#000000]>
  set [Vy v] to (20)
  repeat until <touching color [#000000]>
  change [Vy v] by (-1)
  end
 end
 if <touching color [#000000]>
  set [Vy v] to (0)
 end
 change y by (Vy)
end

how do i et picher for my sig?


me:hi how are you? you:bad me: y? you: caz i cant build stuff on scratch me: well i can help you just post on my projects!!you: ok i need a __________(fill in the blank)

Offline

 

#79 2012-10-19 12:09:34

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

bump


http://i45.tinypic.com/vmq9nd.png

Offline

 

#80 2012-10-19 13:01:48

Friddle16
Scratcher
Registered: 2012-08-21
Posts: 100+

Re: The Fire collab (Help wanted)

Look at my new sig!


http://oi46.tinypic.com/21c78yw.jpg

Offline

 

#81 2012-10-19 20:25:28

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

Nice


http://i45.tinypic.com/vmq9nd.png

Offline

 

#82 2012-10-19 22:02:02

Friddle16
Scratcher
Registered: 2012-08-21
Posts: 100+

Re: The Fire collab (Help wanted)

Thanks! jontmy00 is making a better one then that for me [i think :p]


http://oi46.tinypic.com/21c78yw.jpg

Offline

 

#83 2012-10-20 13:46:16

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

Bump


http://i45.tinypic.com/vmq9nd.png

Offline

 

#84 2012-10-20 15:14:03

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

Can Any one here make a water bad guy  hmm

Last edited by Lordfireball (2012-10-20 15:14:24)


http://i45.tinypic.com/vmq9nd.png

Offline

 

#85 2012-10-20 16:11:16

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

Guys fireballer 1.2 is here http://scratch.mit.edu/projects/Lordfireball/2848257


http://i45.tinypic.com/vmq9nd.png

Offline

 

#86 2012-10-21 08:08:04

Linkkid102
Scratcher
Registered: 2012-08-30
Posts: 47

Re: The Fire collab (Help wanted)

i will make a water bad guy. but can ther be water bad guys?


http://i47.tinypic.com/3hr7k.gif

Offline

 

#87 2012-10-21 08:46:02

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

Yes


http://i45.tinypic.com/vmq9nd.png

Offline

 

#88 2012-10-21 18:54:42

trogdor667
Scratcher
Registered: 2012-09-03
Posts: 38

Re: The Fire collab (Help wanted)

what do i ned to do with the 1.2?


me:hi how are you? you:bad me: y? you: caz i cant build stuff on scratch me: well i can help you just post on my projects!!you: ok i need a __________(fill in the blank)

Offline

 

#89 2012-10-21 20:14:12

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

trogdor667 wrote:

what do i ned to do with the 1.2?

More levels and buy guys


http://i45.tinypic.com/vmq9nd.png

Offline

 

#90 2012-10-22 08:57:57

Spyderblade
Scratcher
Registered: 2012-07-13
Posts: 100+

Re: The Fire collab (Help wanted)

Hi everyone! Lordfireball invited me to come work with you on fireballer! How can I help? (other than doing the jumping, I'm working on that now...)


http://i48.tinypic.com/2pzbc5x.jpg
Am I online? http://blocks.scratchr.org/API.php?user=Spyderblade&amp;action=onlineStatus&amp;type=circle And, check out my Challenge Mission 2!!

Offline

 

#91 2012-10-22 09:19:44

SpyderXtras
New Scratcher
Registered: 2012-10-22
Posts: 1

Re: The Fire collab (Help wanted)

Ok, this is my new test account! I finished the new jump, here it is:
http://scratch.mit.edu/users/SpyderXtras

Offline

 

#92 2012-10-23 08:00:33

trogdor667
Scratcher
Registered: 2012-09-03
Posts: 38

Re: The Fire collab (Help wanted)

Lordfireball wrote:

trogdor667 wrote:

what do i ned to do with the 1.2?

More levels and buy guys

ok cool


me:hi how are you? you:bad me: y? you: caz i cant build stuff on scratch me: well i can help you just post on my projects!!you: ok i need a __________(fill in the blank)

Offline

 

#93 2012-10-23 09:56:54

chongyian
Scratcher
Registered: 2012-05-08
Posts: 1000+

Re: The Fire collab (Help wanted)

long time since i last posted, but i still check in everyday!

Offline

 

#94 2012-10-24 14:05:21

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

chongyian wrote:

long time since i last posted, but i still check in everyday!

Gald your back


http://i45.tinypic.com/vmq9nd.png

Offline

 

#95 2012-10-24 23:45:20

chongyian
Scratcher
Registered: 2012-05-08
Posts: 1000+

Re: The Fire collab (Help wanted)

smile

Offline

 

#96 2012-10-25 14:12:27

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

bump


http://i45.tinypic.com/vmq9nd.png

Offline

 

#97 2012-10-28 20:02:48

Spyderblade
Scratcher
Registered: 2012-07-13
Posts: 100+

Re: The Fire collab (Help wanted)

BUMPY


http://i48.tinypic.com/2pzbc5x.jpg
Am I online? http://blocks.scratchr.org/API.php?user=Spyderblade&amp;action=onlineStatus&amp;type=circle And, check out my Challenge Mission 2!!

Offline

 

#98 2012-11-01 13:49:49

trogdor667
Scratcher
Registered: 2012-09-03
Posts: 38

Re: The Fire collab (Help wanted)

bump? bump


me:hi how are you? you:bad me: y? you: caz i cant build stuff on scratch me: well i can help you just post on my projects!!you: ok i need a __________(fill in the blank)

Offline

 

#99 2012-11-03 13:06:01

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

I'm back


http://i45.tinypic.com/vmq9nd.png

Offline

 

#100 2012-11-06 19:49:47

Lordfireball
Scratcher
Registered: 2012-08-31
Posts: 57

Re: The Fire collab (Help wanted)

bump bump bump and bump


http://i45.tinypic.com/vmq9nd.png

Offline

 

Board footer