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

#1876 2011-08-15 10:08:08

SSBBM
Scratcher
Registered: 2009-10-09
Posts: 100+

Re: ITopic: Welcome to your local block library!

YourLocalBlockLib wrote:

Hardmath123 wrote:

Whose sig? Mine?  hmm

No, mine.  tongue

Shouldn't we just get rid of the first anniversary stuff?


http://goo.gl/zVfAp http://goo.gl/laci8

Offline

 

#1877 2011-08-15 16:13:29

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: ITopic: Welcome to your local block library!

SSBBM wrote:

YourLocalBlockLib wrote:

Hardmath123 wrote:

Whose sig? Mine?  hmm

No, mine.  tongue

Shouldn't we just get rid of the first anniversary stuff?

Yeah! The first anniversary stuff was a while back.


http://goo.gl/RDqKF

Offline

 

#1878 2011-08-15 16:49:10

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: Welcome to your local block library!

It's been up for a month or so, so I reckon its time to change back  smile


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#1879 2011-08-15 17:12:12

owetre18
Scratcher
Registered: 2009-07-01
Posts: 1000+

Re: ITopic: Welcome to your local block library!

I'm bored, so...

new block!

Type: BYOB
Name: [make line from x: () y: () to x: () y: () line thickness: () ]
Block image: http://i.imgur.com/ULeLC.gif

Block scripts: http://i.imgur.com/YoV12.gif

Offline

 

#1880 2011-08-17 07:28:13

legomany3448
Scratcher
Registered: 2010-08-30
Posts: 36

Re: ITopic: Welcome to your local block library!

Blocks are useful...but what about hacks?  Like enabling Mesh?  I made my own website for that (http://customblocks.weebly.com/) but I think you should include that find of stuff here (and my website is totally falling apart).  ;D
<when green flag clicked>
<forever>
     <if><(true<=>false)>
          <stop script>
     <end>
     <play sound[happy]and waits> ...until Scratch 2.0
<end>


¿uʍop-ǝpısdn pɐǝɹ noʎ uɐɔ
Click here to get EPIC custom blocks on Scratch!

Offline

 

#1881 2011-08-19 11:59:11

mrsrec
Scratcher
Registered: 2010-11-14
Posts: 100+

Re: ITopic: Welcome to your local block library!

Motion Is The Category. Switch Drag Is The Name.
Code:
<if> <draggable?>
make undraggable.
<else>
make draggable.
<end>


Scratchy Scratcher Scratched Scratch Scratches When He Scratchy Scratches Scratch Projects. These Scratch Projects Were Started From Scratch.
http://internetometer.com/image/37716.png

Offline

 

#1882 2011-08-19 15:08:30

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: ITopic: Welcome to your local block library!

Hey, I just want to remind whoever does the next update, DON'T OVERLOOK MY BLOCKS! I know Greenatic posted 300 majillion gazillion blocks, but I posted three useful booleans, and I don't want them overlooked!


http://goo.gl/RDqKF

Offline

 

#1883 2011-08-19 15:52:20

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: ITopic: Welcome to your local block library!

I know I haven't added many blocks recently, so here's two.

http://www.freewebs.com/polyeztahpuppies/perfectsquare.gif
http://www.freewebs.com/polyeztahpuppies/perfectcube.gif

Code:

 ('%n is a perfect square?' #b #IsPerfectSquare:) ('%n is a perfect cube?' #b #IsPerfectCube:)

Code:

IsPerfectSquare: t1 
    | t2 |
    t2 _ 1.
    t1 isInf ifTrue: [^ false].
    t1 isNaN ifTrue: [^ false].
    [t2 * t2 < t1]
        whileTrue: [t2 _ t2 + 1].
    ^ t2 * t2 = t1

Code:

IsPerfectCube: t1 
    | t2 |
    t2 _ 1.
    t1 isInf ifTrue: [^ false].
    t1 isNaN ifTrue: [^ false].
    [t2 * t2 * t2 < t1]
        whileTrue: [t2 _ t2 + 1].
    ^ t2 * t2 * t2 = t1

Offline

 

#1884 2011-08-19 16:11:44

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: ITopic: Welcome to your local block library!

BTW, in reference to all blocks woth dropdowns:  I think whoever updates the library next should replace %somethings only used in one block with the method used in the |set stepping speed to {   v}| block.

Offline

 

#1885 2011-08-20 09:58:27

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: ITopic: Welcome to your local block library!

I'd like to request a fixed block for the ( [var] sensor value ) block in sensing ( at the bottom ). So I can put reporters into it ( like ( join [value] with [value] ) ) for Panther.  smile

Last edited by Magnie (2011-08-20 09:58:53)

Offline

 

#1886 2011-08-20 11:34:04

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: ITopic: Welcome to your local block library!

Magnie wrote:

I'd like to request a fixed block for the ( [var] sensor value ) block in sensing ( at the bottom ). So I can put reporters into it ( like ( join [value] with [value] ) ) for Panther.  smile

it would also be good if it was one of those dropdowns you could type in, like the (item [1] of [list]) block.


the the the the the

Offline

 

#1887 2011-08-20 11:36:26

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: ITopic: Welcome to your local block library!

I hate it that the fraction blocks only allow values from the dropdown list, so...

Code:

('%n/%n as decimal' #r #fraction:Decimal:)

fraction: t1 Decimal: t2
^t1/t2

Code:

('%n/%n of %n' #r #fraction:Of:Number:)

fraction: t1 Of: t2 Number: t3
|t4|
t4_t3/t2*t1
^t4

Now, you can have fractions like 890/124704 in these two blocks!


http://goo.gl/RDqKF

Offline

 

#1888 2011-08-22 08:10:10

roijac
Scratcher
Registered: 2010-01-19
Posts: 1000+

Re: ITopic: Welcome to your local block library!

new BYOB block:
http://i.imgur.com/Dm5hP.gif
http://i.imgur.com/w87eN.gif

Offline

 

#1889 2011-08-22 11:49:57

Greenatic
Scratcher
Registered: 2009-05-03
Posts: 1000+

Re: ITopic: Welcome to your local block library!

Is anyone ever going to do an update?

Offline

 

#1890 2011-08-22 18:16:35

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: ITopic: Welcome to your local block library!

Greenatic wrote:

Is anyone ever going to do an update?

^Agreed.


http://goo.gl/RDqKF

Offline

 

#1891 2011-08-23 05:07:19

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: ITopic: Welcome to your local block library!

TuragaTreeko wrote:

Greenatic wrote:

Is anyone ever going to do an update?

^Agreed.

Eventually.  tongue
Cool post count, Turaga; 123.  tongue

Offline

 

#1892 2011-08-23 12:37:59

YourLocalBlockLib
Scratcher
Registered: 2011-03-10
Posts: 100+

Re: ITopic: Welcome to your local block library!

Time to do a BYOB update. Lets start with these two blocks.

Do at same time was made by Floppy_gunk.


owetre18 wrote:

I'm bored, so...

new block!

Type: BYOB
Name: [make line from x: () y: () to x: () y: () line thickness: () ]
Block image: http://i.imgur.com/ULeLC.gif

Block scripts: http://i.imgur.com/YoV12.gif

make line is already in the library. I think make line with thickness is a little much.

SSBBM

Last edited by YourLocalBlockLib (2011-08-23 12:38:25)


http://dl.dropbox.com/u/6273449/BlockLibraryTitle.png

Offline

 

#1893 2011-08-23 12:44:43

sparks
Community Moderator
Registered: 2008-11-05
Posts: 1000+

Re: ITopic: Welcome to your local block library!

^ cheers, SSBBM, you could always update "make line" with "make line with thickness" as an improvement update?


http://img541.imageshack.us/img541/7563/scratchbetabanner.png

Offline

 

#1894 2011-08-23 12:45:46

YourLocalBlockLib
Scratcher
Registered: 2011-03-10
Posts: 100+

Re: ITopic: Welcome to your local block library!

Sidharth wrote:

I have improved Floppy_gunk's block (for-each-in):

http://i.imgur.com/DeiQm.gif

It comes with a counter and I have a .ysp file, too: Here

Another control block (for-with-counter):

http://i.imgur.com/ItKgO.gif

.ysp file: here

EDIT: More coming soon!

Which block is this an updated for? I'm a little confused.

SSBBM

Last edited by YourLocalBlockLib (2011-08-23 12:48:17)


http://dl.dropbox.com/u/6273449/BlockLibraryTitle.png

Offline

 

#1895 2011-08-23 12:47:50

YourLocalBlockLib
Scratcher
Registered: 2011-03-10
Posts: 100+

Re: ITopic: Welcome to your local block library!

sparks wrote:

^ cheers, SSBBM, you could always update "make line" with "make line with thickness" as an improvement update?

I still think the block is more for certain situation and is a lot less useful for most projects.
Also do you know the link for the normal logo?

SSBBM

Last edited by YourLocalBlockLib (2011-08-23 12:48:41)


http://dl.dropbox.com/u/6273449/BlockLibraryTitle.png

Offline

 

#1896 2011-08-23 13:02:52

YourLocalBlockLib
Scratcher
Registered: 2011-03-10
Posts: 100+

Re: ITopic: Welcome to your local block library!

.                              http://welcometoyourlocalblocklibrary.weebly.com/uploads/7/1/1/0/7110842/292223741.gif

BYOB Blocks added: 7
http://i.imgur.com/Dm5hP.gif by roijac
http://i.imgur.com/WnBD3.gif by Flashgocrazy
http://i.imgur.com/2reko.gif by Flashgocrazy
http://i.imgur.com/0Wuku.gif by Flashgocrazy
http://i.imgur.com/f2tHO.gif by Flashgocrazy
http://i.imgur.com/IiAoa.gif by Flashgocrazy
http://i.imgur.com/GOUHC.gif by Sidharth

Other updates: 1
The first anniversary is over. All the logos are changed.

Update carried out by block librarian: SSBBM
________________________________________________________________________________
^home
^updates archive

Last edited by YourLocalBlockLib (2011-08-24 07:31:19)


http://dl.dropbox.com/u/6273449/BlockLibraryTitle.png

Offline

 

#1897 2011-08-23 13:06:59

YourLocalBlockLib
Scratcher
Registered: 2011-03-10
Posts: 100+

Re: ITopic: Welcome to your local block library!

I need another librarian's opinion on these posts. Post 1 Post 2 Post 3

~SSBBM

Last edited by YourLocalBlockLib (2011-08-23 13:07:13)


http://dl.dropbox.com/u/6273449/BlockLibraryTitle.png

Offline

 

#1898 2011-08-23 14:02:30

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: ITopic: Welcome to your local block library!

YourLocalBlockLib wrote:

Also do you know the link for the normal logo?

SSBBM

http://dl.dropbox.com/u/6273449/BlockLibraryTitle.png

Offline

 

#1899 2011-08-23 14:26:24

TuragaTreeko
Scratcher
Registered: 2011-04-24
Posts: 100+

Re: ITopic: Welcome to your local block library!

YourLocalBlockLib wrote:

.                              http://welcometoyourlocalblocklibrary.w … 223741.gif

BYOB Blocks added: 1
http://i.imgur.com/Dm5hP.gif by roijac

Update being carried out by block librarian: SSBBM
________________________________________________________________________________
^home
^updates archive

SSBBM, are you going to also add the blocks for scratch Greenatic and I added? And also everyone else's non-BYOB blocks? Some of the above posts suggest not.


http://goo.gl/RDqKF

Offline

 

#1900 2011-08-23 14:29:59

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: ITopic: Welcome to your local block library!

I'd like him to.  hmm

Last edited by scimonster (2011-08-23 14:49:59)

Offline

 

Board footer