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

#1 2011-03-16 14:03:36

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Script maker service now running

Need a script and can't make it yourself?

Well here I am to help you

Please give me credit (You don't have to but it would be nice)


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#2 2011-03-17 18:29:04

lemonpretzel
Scratcher
Registered: 2008-10-23
Posts: 100+

Re: Script maker service now running

Do you mean you will make a script which does what we want it to do?

Offline

 

#3 2011-03-19 11:24:35

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

Yep bang on the dot

Last edited by muppetds (2011-03-19 11:24:45)


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#4 2011-03-19 23:20:58

floppy_gunk
Scratcher
Registered: 2008-11-14
Posts: 500+

Re: Script maker service now running

Can you make a script that calculates the derivative of an arbitrary formula?


http://img163.imageshack.us/img163/1917/2856lg.jpg Get it now!  smile

Offline

 

#5 2011-03-20 00:26:56

3DBlenderRender
Scratcher
Registered: 2011-03-10
Posts: 44

Re: Script maker service now running

Well, right now I've got everything down, but I'm really glad to know there's a Scratcher who offers these services. Credit to you for doing this.

Cheers,
3DBlenderRender

Offline

 

#6 2011-03-20 02:03:21

floppy_gunk
Scratcher
Registered: 2008-11-14
Posts: 500+

Re: Script maker service now running

I'd also like one that can detect a collision between polygons and circles and update the rotational and directional velocities accordingly.


http://img163.imageshack.us/img163/1917/2856lg.jpg Get it now!  smile

Offline

 

#7 2011-03-20 09:27:22

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

floppy_gunk wrote:

Can you make a script that calculates the derivative of an arbitrary formula?

I can try but what is arbitary?
NEED MORE DETAIL: What do you want it for?

Last edited by muppetds (2011-03-20 09:36:41)


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#8 2011-03-20 09:58:06

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

floppy_gunk wrote:

I'd also like one that can detect a collision between polygons and circles and update the rotational and directional velocities accordingly.

I don't entirelly get it but I think you want something along the lines of this

Polygon

<when green flag clicked>
<forever>
<if><(<distance to[circle <<> 500 )>
  <broadcast[ collision time ]and wait c>
<end>
<set{ direction }to( <direction>
<point in direction( <pick random(  1)to(360
<repeat( 10
  <move( 10 )steps>
  <if on edge, bounce>
<end>
<end>

Circle

<when green flag clicked>
<forever>
<move( 5 )steps>
<if on edge, bounce>
<end>

<when I receive[ Collision time
<point in direction( (( <{ Direction  }> <-> 180 ))

Please let me know if this is what you wanted

Last edited by muppetds (2011-03-20 09:59:36)


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#9 2011-03-20 23:21:56

floppy_gunk
Scratcher
Registered: 2008-11-14
Posts: 500+

Re: Script maker service now running

Well, not quite. I was thinking more about physics based collisions based on mass, velocity, torque, etc.

But I said it kind of as a joke, and you probably wouldn't know the required physics anyway, so you don't have to it.  tongue

I hope I didn't cause any trouble.  smile

By the way, I was joking about the derivative thing too. I don't think it's even possible in Scratch.


http://img163.imageshack.us/img163/1917/2856lg.jpg Get it now!  smile

Offline

 

#10 2011-03-20 23:24:01

BlahBlahRatSheep
Scratcher
Registered: 2010-11-07
Posts: 500+

Re: Script maker service now running

Can you make a a scrolling script like in a scroller game? :3 I will give you tons of credit~


"and knew ones will come and they will get poopular then theyll leave and more pooples will get poopular." -soupoftomato
http://i405.photobucket.com/albums/pp132/kimchi_and_chowder/lolicon.gif Lovely day to air out my tongue, yes?

Offline

 

#11 2011-03-21 12:43:39

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

BlahBlahRatSheep wrote:

Can you make a a scrolling script like in a scroller game? :3 I will give you tons of credit~

Yep I can:

Stage script:

<when green flag clicked>
<set{ Scroll X }to( 30 This determines the starting posistion
<forever>
<if> <key[ Left arrow ]pressed?>
        <change{ Scroll X  }by( 10
        <end>
<if> <key[ Right arrow ]pressed?>
        <change{ Scroll X  }by( -10
        <end>
<end>

Sprite Script:

<when green flag clicked>
<forever>
<set x to( (( <{ Scroll X }> <+> (( 480 <*> 0 This determines how for apart you want your sprite to be )) ))
<if> <( <abs( <x position> <>> 260 )>
   <hide>
<else>
   <show>
<end>
<end>

Last edited by muppetds (2011-03-21 13:14:39)


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#12 2011-03-21 13:15:20

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

floppy_gunk wrote:

Well, not quite. I was thinking more about physics based collisions based on mass, velocity, torque, etc.

But I said it kind of as a joke, and you probably wouldn't know the required physics anyway, so you don't have to it.  tongue

I hope I didn't cause any trouble.  smile

By the way, I was joking about the derivative thing too. I don't think it's even possible in Scratch.

I thought so


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#13 2011-03-23 13:33:04

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

Any more requests?


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#14 2011-03-23 19:55:01

sergent310
New Scratcher
Registered: 2011-03-05
Posts: 4

Re: Script maker service now running

I need a character that jumps and moves around because I cant do this velocity thing, when the character hits the top of a black object it lands but if it hits the bottom of the black object it won`t go throught like this....
if touching color black and not touching bottom of color black, land, if touching bottom, do not go through

Offline

 

#15 2011-03-23 20:18:02

kayybee
Scratcher
Registered: 2009-12-07
Posts: 1000+

Re: Script maker service now running

please give me the scripts to solve for x, y, z, and w when there's an equation like:

2x+5y=8z-5w

or something similar to this.

Don't say its impossible or else I would have just wasted my time and I will add you to my ignore list and such.

Offline

 

#16 2011-03-24 15:23:18

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

sergent310 wrote:

I need a character that jumps and moves around because I cant do this velocity thing, when the character hits the top of a black object it lands but if it hits the bottom of the black object it won`t go throught like this....
if touching color black and not touching bottom of color black, land, if touching bottom, do not go through

Try this:

Moving script:

<when green flag clicked>
<forever>
  <if> <key[ Left arrow ]pressed?>
        <point in direction( -90
        <move( 10 )steps>
  <end>
<if> <key[ Right arrow ]pressed?>
        <point in direction( 90
        <move( 10 )steps>
  <end>
<end>

Jump Script:

<when[ Up arrow ]key pressed>
<repeat( 50 )steps>
<point in direction( 0
<move( 10

<when green flag clicked>
<forever>
  <if> <<  <not> <touching color[ Black >>
   <repeat until> <touching color[ Black
   <point in direction( 180
   <move( 10 )steps>
  <end>
  <if> <key[ Space ]pressed?>
   <wait( 4 )secsc>
<end>
<end>


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#17 2011-03-24 15:24:25

muppetds
Scratcher
Registered: 2011-02-11
Posts: 1000+

Re: Script maker service now running

kayybee wrote:

please give me the scripts to solve for x, y, z, and w when there's an equation like:

2x+5y=8z-5w

or something similar to this.

Don't say its impossible or else I would have just wasted my time and I will add you to my ignore list and such.

Tricky one
Going to take a while to work out


SCRATCH'S PARTLY INSANE RESIDENT 
http://internetometer.com/imagesmall/31691.pnghttp://bluetetrarpg.x10.mx/usercard/?name=muppetds

Offline

 

#18 2012-08-22 15:10:26

kalev05
Scratcher
Registered: 2011-11-28
Posts: 21

Re: Script maker service now running

when gf clicked
forever
repeat until <(I need a script!) = [746525433473543473547]>
say [I need a script for a character to land on black in a background.] for (I need a script!) secs
say [I also need a script for a character to go left or right while jumping.] for (I need a script!) secs
end
go to [Game v]
say [Will you give me the scripts, please?] for (I need a script!) secs
end

Offline

 

Board footer