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

#201 2012-11-20 11:03:00

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

Re: Scripts Workshop: Give and get help with scripts

fillergames wrote:

JH1010 wrote:

fillergames wrote:

There is an annoying glitche in my game. When you destroy a rock sometimes it respawns in the middle of the screen insted of the top.

http://scratch.mit.edu/projects/fillergames/2913466

Sorry, we don't deal with glitches in finished games. For this I would recommend The Tester Team.

Ok. Whos the Tester Team?

The people linked in my first post. I should've mentioned that at first.

Offline

 

#202 2012-11-20 15:20:17

fillergames
Scratcher
Registered: 2012-10-15
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

JH1010 wrote:

fillergames wrote:

JH1010 wrote:


Sorry, we don't deal with glitches in finished games. For this I would recommend The Tester Team.

Ok. Whos the Tester Team?

The people linked in my first post. I should've mentioned that at first.

Never mind i found it. I forgot to change the number in the SET Y block.


http://i50.tinypic.com/2ufvxc5_th.gif Grammer? Whats grammar?

Offline

 

#203 2012-11-21 15:19:02

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#204 2012-11-23 01:17:26

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#205 2012-11-23 10:04:00

dvd4
Scratcher
Registered: 2010-06-30
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

BUYP
up
your
post


I made a mod  big_smile  It's called blook!
http://i49.tinypic.com/16ia63p.png

Offline

 

#206 2012-11-24 01:54:12

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

Re: Scripts Workshop: Give and get help with scripts

dvd4 wrote:

BUYP
up
your
post

Thanks!

Offline

 

#207 2012-11-24 08:14:36

dvd4
Scratcher
Registered: 2010-06-30
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

JH1010 wrote:

dvd4 wrote:

BUYP
up
your
post

Thanks!

Y welcome !


I made a mod  big_smile  It's called blook!
http://i49.tinypic.com/16ia63p.png

Offline

 

#208 2012-11-25 01:15:48

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#209 2012-11-26 02:05:25

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

Re: Scripts Workshop: Give and get help with scripts

^^

Offline

 

#210 2012-11-28 01:36:41

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#211 2012-11-29 15:32:40

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

Re: Scripts Workshop: Give and get help with scripts

See above post.

Offline

 

#212 2012-11-29 23:21:42

Vortex_
Scratcher
Registered: 2012-08-07
Posts: 13

Re: Scripts Workshop: Give and get help with scripts

On my test account I am trying to make an RPG battle system. The attacks are made by broadcasts, but I can't figure out how to make the HP bars change when you attack. I also don't have the AI yet. If you could help with the HP bar problem, then thanks.

Offline

 

#213 2012-11-30 01:20:35

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

Re: Scripts Workshop: Give and get help with scripts

You need a costume for every different possibility for the HP bar. If you have this then the script wold be something like this:

when gf clicked // or whenever you begin the battle
forever
if <<health>=(4)>
switch to costume [costume4 v]
end
if <<health>=(3)>
switch to costume [costume3 v]
end
if <<health>=(2)>
switch to costume [costume2 v]
end
if <<health>=(1)>
switch to costume [costume1 v]
end
end
If you start with more than four HP then change the health and costume number to match in another if block.

Last edited by JH1010 (2012-11-30 01:22:55)

Offline

 

#214 2012-12-02 02:11:26

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#215 2012-12-02 07:13:40

Ideas
Scratcher
Registered: 2012-10-07
Posts: 100+

Re: Scripts Workshop: Give and get help with scripts

Here is something for you to consider. A script for a helicopter that slowly falls without any repeat blocks. VELOCITY Usage needed.


http://img685.imageshack.us/img685/2010/screenshot20121110at132.pngI think that you must CLICK above

Offline

 

#216 2012-12-02 13:35:46

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

Re: Scripts Workshop: Give and get help with scripts

Ideas wrote:

Here is something for you to consider. A script for a helicopter that slowly falls without any repeat blocks. VELOCITY Usage needed.

So no forever, repeat () or repeat until blocks. Intresting. I'll think about it.

Offline

 

#217 2012-12-02 13:49:17

dankill51
Scratcher
Registered: 2012-01-22
Posts: 85

Re: Scripts Workshop: Give and get help with scripts

Can I get help with my project? I don't know what's wrong with it. The link is http://scratch.mit.edu/projects/dankill51/2951294

Offline

 

#218 2012-12-03 13:54:10

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#219 2012-12-04 10:51:45

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#220 2012-12-04 14:06:19

Ideas
Scratcher
Registered: 2012-10-07
Posts: 100+

Re: Scripts Workshop: Give and get help with scripts

No, a forever/ a broadcast may be used. HAS velocitced X movement too.


http://img685.imageshack.us/img685/2010/screenshot20121110at132.pngI think that you must CLICK above

Offline

 

#221 2012-12-05 02:44:13

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

Re: Scripts Workshop: Give and get help with scripts

Ideas wrote:

No, a forever/ a broadcast may be used. HAS velocitced X movement too.

when gf clicked
forever
if <touching [ground v]?>
set [y velocity v] to (0)
else
change [y velocity v] by (-0.4)
end
end
when gf clicked
forever
change y by (y velocity)
That should work for falling.

Last edited by JH1010 (2012-12-05 02:45:16)

Offline

 

#222 2012-12-05 05:41:01

Ideas
Scratcher
Registered: 2012-10-07
Posts: 100+

Re: Scripts Workshop: Give and get help with scripts

Well duh, sorry for that but i meant something like ((yv*0.999)-0.4)


http://img685.imageshack.us/img685/2010/screenshot20121110at132.pngI think that you must CLICK above

Offline

 

#223 2012-12-06 12:30:41

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#224 2012-12-08 01:40:41

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

Re: Scripts Workshop: Give and get help with scripts

We have competition!

Last edited by JH1010 (2012-12-08 01:41:45)

Offline

 

#225 2012-12-08 10:55:33

fetchydog567
Scratcher
Registered: 2011-12-28
Posts: 500+

Re: Scripts Workshop: Give and get help with scripts

Still more space? I would join.


http://www.minecraftanonymous.com/assets/banners/banner_51.pngJust a reminder I won't be on Scratch that much but I 'll still be here, so if i'm on something, I will be commenting back, okay! wink , PICO Team!!!!!!!!!!! SCRATCH DEADW!!! PICO HACK ACCOUTNTT@@

Offline

 

Board footer