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

#626 2010-06-13 04:14:04

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

@Billybob:
wow! your slash image is of 25MB!
what do you have in there?

Last edited by LS97 (2010-06-13 04:14:18)

Offline

 

#627 2010-06-13 04:20:35

iCode-747
Scratcher
Registered: 2009-11-21
Posts: 1000+

Re: Cool custom blocks in Scratch

Bingo is awesome! My 2nd favorite Scratch mod, after Panther.  smile


-End Transmission-

Offline

 

#628 2010-06-13 04:33:42

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

Billybob,
I'm sorry o have to say this but Slash is so unprofessional.
i'm not critisizing (well kind of), just trying to help improve it.

1. Has no style at all. Could have at least changed the skin to match the (ugly) colors
2. Squeak and 'Other' tabs look bad. should have used one of many free image editors online.
3. Many copied blocks. i recongnize some of Panther's, mine, and billy's. and no credit.
4. blocks that weren't copied were taken from obsolete. i suggest you think of some yourself.
5. list and other inserters were replaced by strings, instead of changing the type in Scratch-Blocks to a choice OR expression style like I did.
6. You used Scratch 1.4 instead of the Source Code, providing limited editing features.
7. Some blocks dont even work
8. boolean reporters replaced by round reporters. for a boolean, do #b !

I hope I didn't demoralize you too much, and try to fix all of this!

Offline

 

#629 2010-06-13 04:34:51

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

iCode-747 wrote:

Bingo is awesome! My 2nd favorite Scratch mod, after Panther.  smile

thanks for downloading!
hope you enjoy it!

Offline

 

#630 2010-06-13 10:04:17

johnnydean1
Scratcher
Registered: 2010-02-12
Posts: 1000+

Re: Cool custom blocks in Scratch

@ LS97

Whats wrong with this:

|t1 t2 t3 t4 t5 t6 t7 t8 t9 t10|
t1_ 0.
t2_ 0.
t9_ self reportVar: ('Scroll Size X').
t10_ self reportVar: ('Scroll Size Y').
t9 timesRepeat: [
t2_ t2 + 1.
t1_0.
t10 timesRepeat: [

t1_ t1 + 1.
t3_ self concatenate: ('R') with: (t2).
t4_ self concatenate: ('C') with: (t1).
t5_ self concatenate: (t3) with: (t4).
self lookLike: ('t5').
t6_ (t1 * 480).
t7_ self reportVar: ('Scroll X').
t6_ (t6 - t7).

t8_ (t2 * 360).
t7_ self reportVar: ('Scroll Y').
t8_ (t8 - t7).

self gotoX: (t6) y: (t8).
self stampCostume.

].
].

Its on Panthers CYOB

Last edited by johnnydean1 (2010-06-13 10:05:14)


You can now reach me on Twitter @johnnydean1_

Offline

 

#631 2010-06-13 10:32:10

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

@johnny:

nothing seems to be worng with it.
what's the spec for it and what's it supposed to do?

Offline

 

#632 2010-06-13 10:34:57

johnnydean1
Scratcher
Registered: 2010-02-12
Posts: 1000+

Re: Cool custom blocks in Scratch

BG Scroll

It should stamp out the coustums in releation to Scroll X / Y


You can now reach me on Twitter @johnnydean1_

Offline

 

#633 2010-06-13 10:37:33

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

johnnydean1 wrote:

BG Scroll

It should stamp out the coustums in releation to Scroll X / Y

i think probably you can't add squeak commands to panther. try using only the blocks from the 'add a block' button and see if it works...

Offline

 

#634 2010-06-13 10:43:39

johnnydean1
Scratcher
Registered: 2010-02-12
Posts: 1000+

Re: Cool custom blocks in Scratch

Ive added all the commands before....


You can now reach me on Twitter @johnnydean1_

Offline

 

#635 2010-06-13 10:45:07

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

johnnydean1 wrote:

Ive added all the commands before....

huh?

Offline

 

#636 2010-06-13 11:00:56

johnnydean1
Scratcher
Registered: 2010-02-12
Posts: 1000+

Re: Cool custom blocks in Scratch

As in timesRepeat: ive used before and t1_ t1 + 1 and so on...


You can now reach me on Twitter @johnnydean1_

Offline

 

#637 2010-06-13 11:06:01

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Cool custom blocks in Scratch

What does the depth part do in Form extent: 1 @ 1 depth: 32? Everything I can find in the source code seems to have depth 32.


/* No comment */

Offline

 

#638 2010-06-13 11:15:09

nXIII
Community Moderator
Registered: 2009-04-21
Posts: 1000+

Re: Cool custom blocks in Scratch

TheSuccessor wrote:

What does the depth part do in Form extent: 1 @ 1 depth: 32? Everything I can find in the source code seems to have depth 32.

It sets the pixel depth, i.e. at 32, that's 32 bits per pixel (millions of colors), whereas at a depth of 1, there is only one bit per pixel (black or white).


nXIII

Offline

 

#639 2010-06-13 11:19:59

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Cool custom blocks in Scratch

nXIII wrote:

TheSuccessor wrote:

What does the depth part do in Form extent: 1 @ 1 depth: 32? Everything I can find in the source code seems to have depth 32.

It sets the pixel depth, i.e. at 32, that's 32 bits per pixel (millions of colors), whereas at a depth of 1, there is only one bit per pixel (black or white).

Ahh... Everything makes sense now.


/* No comment */

Offline

 

#640 2010-06-13 11:21:38

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Cool custom blocks in Scratch

TheSuccessor wrote:

TheSuccessor wrote:

TheSuccessor wrote:

How can you do the opposite of (ascii for []) i.e. (from ascii [])?  hmm

Important. xCubed 1.0.0 is nearly finished, and I want this block in it. Also, how do you publish your own version of Scratch?

Tell me, please.

PLEASE!!!
(Sorry to nag, but...)


/* No comment */

Offline

 

#641 2010-06-13 12:25:36

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

TheSuccessor wrote:

TheSuccessor wrote:

TheSuccessor wrote:


Important. xCubed 1.0.0 is nearly finished, and I want this block in it. Also, how do you publish your own version of Scratch?

Tell me, please.

PLEASE!!!
(Sorry to nag, but...)

ok, step-by-step:
1. make sure it's a good mod and not a suckish one
2. check it for glitches
3. when you're happy with it, make a site for it
4. upload a zip folder with yourMod.image, yourMod.exe, all the plugins, etc. to MediaFire or another hosting site.
5. link it to your site.
6. advertise it, but never too much please.
7. Wait for downloads!

Offline

 

#642 2010-06-13 17:49:42

Jahava
Scratcher
Registered: 2009-09-22
Posts: 9

Re: Cool custom blocks in Scratch

LS97 wrote:

TheSuccessor wrote:

Jahava wrote:

Can these custom blocks be uploaded in projects?
Also, can you show me how to create the (sprite name) block?

(sprite name) block:
Add this to Scratch-Objects > ScratchSpriteMorph (click 'class' at this point) > BlockSpecs > BlockSpecs:

Code:

 ('sprite name' #r #spriteName)

Click 'instance' then sensing ops > hideQuestion.
Replace hideQuestion with spriteName and self with objName.
Right-click and click 'accept'.

that's way too long when you can simply make a blockSpec with
('sprite name' #r #objName)

Thanks a lot!  smile  Can you or someone else download my Sprite Name Test project and see if it then works online? Than tell me in the notes.

Offline

 

#643 2010-06-14 03:57:42

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

@jahava,

it doesnt work. i know it wont

Offline

 

#644 2010-06-14 11:22:45

johnnydean1
Scratcher
Registered: 2010-02-12
Posts: 1000+

Re: Cool custom blocks in Scratch

@LS97
Can you make a (pitch) block.
Like loundness, but for pitch


You can now reach me on Twitter @johnnydean1_

Offline

 

#645 2010-06-14 11:55:15

Joeman592
Scratcher
Registered: 2010-01-23
Posts: 100+

Re: Cool custom blocks in Scratch

off topic but i wanna know: how do you put the auto-remove line-picture-text things under your thing? like LS97's Bingo and Silvisoft thingy


http://i.imgur.com/HcAj1.png
http://i.imgur.com/gss7S.gifhttp://i.imgur.com/kbcKt.gifhttp://i.imgur.com/0LteM.gif

Offline

 

#646 2010-06-14 12:49:07

henley
Scratcher
Registered: 2008-06-21
Posts: 1000+

Re: Cool custom blocks in Scratch

Joeman592 wrote:

off topic but i wanna know: how do you put the auto-remove line-picture-text things under your thing? like LS97's Bingo and Silvisoft thingy

It's called a signature. You can get one after you have been on the forums for a while, then edit, change, and customize it to be your own. For more information, go to this thread. Or you could go here to learn more about why certain things about signatures are the way they are, and other basic information.


"I've worked so hard for you and you give me nothing in return. Do you need help... Or do I?"

Offline

 

#647 2010-06-14 15:03:00

TheSuccessor
Scratcher
Registered: 2010-04-23
Posts: 1000+

Re: Cool custom blocks in Scratch

LS97 wrote:

TheSuccessor wrote:

TheSuccessor wrote:


Tell me, please.

PLEASE!!!
(Sorry to nag, but...)

ok, step-by-step:
1. make sure it's a good mod and not a suckish one
2. check it for glitches
3. when you're happy with it, make a site for it
4. upload a zip folder with yourMod.image, yourMod.exe, all the plugins, etc. to MediaFire or another hosting site.
5. link it to your site.
6. advertise it, but never too much please.
7. Wait for downloads!

Every time I rename the image to xCubed.image it reverts to old Scratch again and I have to change the name back. What should I do? Confused. (very)  hmm
(In case it's helpful, I've got Windows 7 home edition)


/* No comment */

Offline

 

#648 2010-06-14 15:23:06

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

TheSuccessor wrote:

LS97 wrote:

TheSuccessor wrote:


PLEASE!!!
(Sorry to nag, but...)

ok, step-by-step:
1. make sure it's a good mod and not a suckish one
2. check it for glitches
3. when you're happy with it, make a site for it
4. upload a zip folder with yourMod.image, yourMod.exe, all the plugins, etc. to MediaFire or another hosting site.
5. link it to your site.
6. advertise it, but never too much please.
7. Wait for downloads!

Every time I rename the image to xCubed.image it reverts to old Scratch again and I have to change the name back. What should I do? Confused. (very)  hmm
(In case it's helpful, I've got Windows 7 home edition)

try pasting it into a different folder. if that doesn't work, explain yourself better, i might not have understood.

Offline

 

#649 2010-06-15 11:40:19

LS97
Scratcher
Registered: 2009-06-14
Posts: 1000+

Re: Cool custom blocks in Scratch

johnnydean1 wrote:

@LS97
Can you make a (pitch) block.
Like loundness, but for pitch

no, i cant. pitch is not a simple value, it's hard to sense it.
but i think you can do something with the picoboard, not sure though.

Offline

 

#650 2010-06-15 11:48:38

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

Re: Cool custom blocks in Scratch

LS97 wrote:

johnnydean1 wrote:

@LS97
Can you make a (pitch) block.
Like loundness, but for pitch

no, i cant. pitch is not a simple value, it's hard to sense it.
but i think you can do something with the picoboard, not sure though.

No, that's just loudness. A pitch block would be REALLY nice though.


http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

Board footer