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

#401 2013-02-08 15:24:19

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

Re: Scripts Workshop: Give and get help with scripts

ErnieParke wrote:

funnymee323 wrote:

I would like to join, i'm not that good, but i can definetly answer some questions. But if i join, will my questions still be answered? Because i'm currently working on a complicated game and i may need some help....

Well, you don't need to be a member to ask questions; why you can ask them at any moment and have your questions answered with a nice reply! Also, you don't need to be good to join, you just need to ask to join. So you're in.  smile

Adding you to the first post.

Offline

 

#402 2013-02-10 12:00:32

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#403 2013-02-10 23:04:55

zubblewu
Scratcher
Registered: 2011-02-17
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

oh um
im going to retire after a (very) long period of inactivity


........................................................................................................................................................................................................................................

Offline

 

#404 2013-02-11 21:37:04

lvkathryn97
Scratcher
Registered: 2013-01-13
Posts: 4

Re: Scripts Workshop: Give and get help with scripts

How would you make a sprite switch to a costume only when a certain key is being pressed? I have a rocket ship and I want it to switch to the costume where it has flames while one of the arrow keys is being pressed, which is when it's moving.

Offline

 

#405 2013-02-11 22:05:18

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

lvkathryn97 wrote:

How would you make a sprite switch to a costume only when a certain key is being pressed? I have a rocket ship and I want it to switch to the costume where it has flames while one of the arrow keys is being pressed, which is when it's moving.

So just to make sure, you want it to switch to that costume when only one of the arrow keys are being pressed and not the others arrow keys?


http://i46.tinypic.com/35ismmc.png

Offline

 

#406 2013-02-12 03:06:35

Blazingwave
Scratcher
Registered: 2012-10-27
Posts: 500+

Re: Scripts Workshop: Give and get help with scripts

lvkathryn97 wrote:

How would you make a sprite switch to a costume only when a certain key is being pressed? I have a rocket ship and I want it to switch to the costume where it has flames while one of the arrow keys is being pressed, which is when it's moving.

Try this. For the "when spacebar clicked" you can choose what key.

When [spacebar v] key pressed
switch to costume [costume1 v]
Costume 1 is just the costume you want it to change to when that button is pressed

You can do any button, for example...

When [right arrow v] key pressed
switch to costume [costume1 v]
When [a v] key pressed
switch to costume [costume1 v]

Last edited by Blazingwave (2013-02-12 03:10:44)


http://i42.tinypic.com/t8nrlh.gif  http://blocks.scratchr.org/API.php?user=Blazingwave&action=onlineStatus&online=http://i49.tinypic.com/25flloj.gif=http://i45.tinypic.com/o8i97l.gif
http://i41.tinypic.com/s1lyyo.jpg

Offline

 

#407 2013-02-12 03:58:54

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

Re: Scripts Workshop: Give and get help with scripts

lvkathryn97 wrote:

How would you make a sprite switch to a costume only when a certain key is being pressed? I have a rocket ship and I want it to switch to the costume where it has flames while one of the arrow keys is being pressed, which is when it's moving.

if <up arrow key pressed?>
|---repeat until not <up arrow key pressed?>
|---|---switch to costume "flames"
|---switch to costume "no flames"

I think this should work, just change the key pressed to whichever one you want.

Sorry for the lack of Scratchblocks, I'm on a mobile device right now, so it's really hard to type those.

Offline

 

#408 2013-02-12 06:52:40

Blazingwave
Scratcher
Registered: 2012-10-27
Posts: 500+

Re: Scripts Workshop: Give and get help with scripts

kayybee wrote:

lvkathryn97 wrote:

How would you make a sprite switch to a costume only when a certain key is being pressed? I have a rocket ship and I want it to switch to the costume where it has flames while one of the arrow keys is being pressed, which is when it's moving.

if <up arrow key pressed?>
|---repeat until not <up arrow key pressed?>
|---|---switch to costume "flames"
|---switch to costume "no flames"

I think this should work, just change the key pressed to whichever one you want.

Sorry for the lack of Scratchblocks, I'm on a mobile device right now, so it's really hard to type those.

Fixed  smile
http://i47.tinypic.com/350npmf.gif

Anyway lvkathryn97 that is another way to do it.
I hope your problem is solved!

Thank you for using Script Workshop!

Last edited by Blazingwave (2013-02-12 06:54:24)


http://i42.tinypic.com/t8nrlh.gif  http://blocks.scratchr.org/API.php?user=Blazingwave&amp;action=onlineStatus&amp;online=http://i49.tinypic.com/25flloj.gif=http://i45.tinypic.com/o8i97l.gif
http://i41.tinypic.com/s1lyyo.jpg

Offline

 

#409 2013-02-12 15:19:02

lvkathryn97
Scratcher
Registered: 2013-01-13
Posts: 4

Re: Scripts Workshop: Give and get help with scripts

Blazingwave wrote:

kayybee wrote:

if <up arrow key pressed?>
|---repeat until not <up arrow key pressed?>
|---|---switch to costume "flames"
|---switch to costume "no flames"

I think this should work, just change the key pressed to whichever one you want.

Sorry for the lack of Scratchblocks, I'm on a mobile device right now, so it's really hard to type those.

Fixed  smile

Anyway lvkathryn97 that is another way to do it.
I hope your problem is solved!

Thank you for using Script Workshop!

Thanks guys  big_smile

Offline

 

#410 2013-02-14 15:30:36

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#411 2013-02-17 03:55:19

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

Re: Scripts Workshop: Give and get help with scripts

bump

Offline

 

#412 2013-02-17 22:44:25

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

Hey, I am new, and here to learn proggraming and 2D graphic design.
I have some experience, so I can help with some things. With the help from some very nice scratchers, I am learning a lot and fast.  smile

I won't be extremely active as I have several things going on, but I will help when I can.

Regards,

CAA14

Offline

 

#413 2013-02-18 11:12:43

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

CAA14 wrote:

Hey, I am new, and here to learn proggraming and 2D graphic design.
I have some experience, so I can help with some things. With the help from some very nice scratchers, I am learning a lot and fast.  smile

I won't be extremely active as I have several things going on, but I will help when I can.

Regards,

CAA14

Well, you do't have to be very active in the first place to join. In fact, at least 10%~20% of the members on the members list haven't even done a single thing here, so you should be fine. Also, welcome to the Scripts Workshop!


http://i46.tinypic.com/35ismmc.png

Offline

 

#414 2013-02-18 12:39:15

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

ErnieParke wrote:

CAA14 wrote:

Hey, I am new, and here to learn proggraming and 2D graphic design.
I have some experience, so I can help with some things. With the help from some very nice scratchers, I am learning a lot and fast.  smile

I won't be extremely active as I have several things going on, but I will help when I can.

Regards,

CAA14

Well, you do't have to be very active in the first place to join. In fact, at least 10%~20% of the members on the members list haven't even done a single thing here, so you should be fine. Also, welcome to the Scripts Workshop!

Thanks Ernie,

I will check here as often as  i can.


Regards,

CAA14

Offline

 

#415 2013-02-18 15:55:47

estile
Scratcher
Registered: 2013-01-26
Posts: 100+

Re: Scripts Workshop: Give and get help with scripts

sort of an advanced question, but i am sure someone can help, i checked the wiki but it was confusing, does anyone know how to do a raycaster?


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

Offline

 

#416 2013-02-19 16:47:58

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

estile wrote:

sort of an advanced question, but i am sure someone can help, i checked the wiki but it was confusing, does anyone know how to do a raycaster?

I know the ideas and concepts behind a raycaster, so I could make one every though I've never touched a single raycaster script, but it'd take awhile seeing as I have to build it partially "in the dark".


http://i46.tinypic.com/35ismmc.png

Offline

 

#417 2013-02-19 21:35:18

Epicness123
Scratcher
Registered: 2011-11-12
Posts: 100+

Re: Scripts Workshop: Give and get help with scripts

also you dont need to join a workshop to help people silly  tongue


I am Epicness123,and I rock!

Offline

 

#418 2013-02-20 04:45:10

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

Re: Scripts Workshop: Give and get help with scripts

estile wrote:

sort of an advanced question, but i am sure someone can help, i checked the wiki but it was confusing, does anyone know how to do a raycaster?

Raycasters vary a lot. The best way to pick up the basic techniques is to look at existing raycaster projects. Here are the projects tagged with raycaster.

Offline

 

#419 2013-02-20 05:41:08

Blazingwave
Scratcher
Registered: 2012-10-27
Posts: 500+

Re: Scripts Workshop: Give and get help with scripts

Hmm, I dont like the shop banner...
Can I design a new one?
Its really blurry and unattractive...
On Ernieparkes script workshop we want to ATTRACT people to this.

Last edited by Blazingwave (2013-02-20 05:44:21)


http://i42.tinypic.com/t8nrlh.gif  http://blocks.scratchr.org/API.php?user=Blazingwave&amp;action=onlineStatus&amp;online=http://i49.tinypic.com/25flloj.gif=http://i45.tinypic.com/o8i97l.gif
http://i41.tinypic.com/s1lyyo.jpg

Offline

 

#420 2013-02-20 07:31:06

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

Re: Scripts Workshop: Give and get help with scripts

I'm back and ready to help!


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

Offline

 

#421 2013-02-20 12:15:33

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

Re: Scripts Workshop: Give and get help with scripts

Blazingwave wrote:

Hmm, I dont like the shop banner...
Can I design a new one?
Its really blurry and unattractive...
On Ernieparkes script workshop we want to ATTRACT people to this.

A better shop banner would be much appreciated.

Offline

 

#422 2013-02-20 16:55:49

GlennWright
Scratcher
Registered: 2012-08-15
Posts: 100+

Re: Scripts Workshop: Give and get help with scripts

I'm very sorry about the inactivity. I have been testing out Scratch 2.0 as an alpha tester, and now as a beta tester along with everyone else. I'm sorry if this has caused any inconvenience.


Hello everyone!
http://img5.imageshack.us/img5/465/dot.png

Offline

 

#423 2013-02-20 18:16:51

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

Blazingwave wrote:

Hmm, I dont like the shop banner...
Can I design a new one?
Its really blurry and unattractive...
On Ernieparkes script workshop we want to ATTRACT people to this.

Ummm… you do know that I don't own this shop?

Last edited by ErnieParke (2013-02-20 18:21:33)


http://i46.tinypic.com/35ismmc.png

Offline

 

#424 2013-02-20 18:20:21

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

JH1010 wrote:

Blazingwave wrote:

Hmm, I dont like the shop banner...
Can I design a new one?
Its really blurry and unattractive...
On Ernieparkes script workshop we want to ATTRACT people to this.

A better shop banner would be much appreciated.

I was thinking, since I'd also like to try my hand at making a banner, if I could make one as well and then we could vote in the end on which one to use. So, what do you think?

Just to say, I'm fine either way it goes.


http://i46.tinypic.com/35ismmc.png

Offline

 

#425 2013-02-20 18:23:41

CAA14
Scratcher
Registered: 2013-01-14
Posts: 1000+

Re: Scripts Workshop: Give and get help with scripts

ErnieParke wrote:

JH1010 wrote:

Blazingwave wrote:

Hmm, I dont like the shop banner...
Can I design a new one?
Its really blurry and unattractive...
On Ernieparkes script workshop we want to ATTRACT people to this.

A better shop banner would be much appreciated.

I was thinking, since I'd also like to try my hand at making a banner, if I could make one as well and then we could vote in the end on which one to use. So, what do you think?

Just to say, I'm fine either way it goes.

I think that's a good idea.

Regards,

CAA14

Offline

 

Board footer