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

#276 2010-10-04 14:41:53

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

Re: Welcome to the OLD local block library!

zorket wrote:

Well, since you're not adding a SINGLE block i'm giving you, i'll stop.

Zorket! I posted above yesterday saying I CAN'T add any new blocks right now! I have some bad, costly internet (I'm paying to write this) on my phone and i have neither the time nor the money to update it on here without copy and paste. So yes, i'm not adding your blocks, but I'm currently not adding anyone's. Just a little patience?


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

Offline

 

#277 2010-10-04 15:52:45

zorket
Scratcher
Registered: 2010-05-25
Posts: 500+

Re: Welcome to the OLD local block library!

sparks wrote:

zorket wrote:

Well, since you're not adding a SINGLE block i'm giving you, i'll stop.

Zorket! I posted above yesterday saying I CAN'T add any new blocks right now! I have some bad, costly internet (I'm paying to write this) on my phone and i have neither the time nor the money to update it on here without copy and paste. So yes, i'm not adding your blocks, but I'm currently not adding anyone's. Just a little patience?

Fine.
I have a list of blocks:
<true> and <false>
the one you didn't accept: <if <> then <> else <>
remix of (get (): (get (^)
New! () + () + () + () + ()

blockspec:

('%n + %n + %n + %n + %n' #r #addOne:two:three:four:five:)

Code:

addOne: t1 two: t2 three: t3 four: t4 five: t5
^ t1 + t2 + t3 + t4 + t5

These are the blocks I made you didn't add. I'll let you take your time now.

Hey, this is my 200th post! :p

Last edited by zorket (2010-10-04 16:54:25)


Marzipan11 must learn to not spoil

Offline

 

#278 2010-10-04 16:11:18

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

Re: Welcome to the OLD local block library!

A different solution to the join [] < > block:
http://i51.tinypic.com/2qu3s55.jpg


nXIII

Offline

 

#279 2010-10-04 17:31:09

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: Welcome to the OLD local block library!

nXIII wrote:

A different solution to the join [] < > block:
http://i51.tinypic.com/2qu3s55.jpg

wow.


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#280 2010-10-05 12:47:19

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

Re: Welcome to the OLD local block library!

Hello! I have internet again! I don't know how long it will last (forever if I'm lucky) but that's cool, I'll update the library as soon as my guest has left  smile


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

Offline

 

#281 2010-10-05 14:24:00

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

Re: Welcome to the OLD local block library!

SSBBM wrote:

I got some more!

http://img826.imageshack.us/img826/5116/error.gif

Lol. Like it.

Last edited by TheSuccessor (2010-10-05 14:25:29)


/* No comment */

Offline

 

#282 2010-10-05 17:15:05

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: Welcome to the OLD local block library!

nXIII, your block requires other BYOB blocks right?


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#283 2010-10-05 17:39:41

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

Re: Welcome to the OLD local block library!

midnightleopard wrote:

nXIII, your block requires other BYOB blocks right?

Well, just one:

all but first of (list)
script vars (a)
set [a] to (copy of (list))
delete (1) of (a)
report (a)

Last edited by nXIII (2010-10-05 17:39:50)


nXIII

Offline

 

#284 2010-10-05 19:53:10

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: Welcome to the OLD local block library!

nXIII wrote:

midnightleopard wrote:

nXIII, your block requires other BYOB blocks right?

Well, just one:

all but first of (list)
script vars (a)
set [a] to (copy of (list))
delete (1) of (a)
report (a)

yeah but what is that (join >) block you've got there at the bottom of your code?


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#285 2010-10-05 20:05:42

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

Re: Welcome to the OLD local block library!

midnightleopard wrote:

nXIII wrote:

midnightleopard wrote:

nXIII, your block requires other BYOB blocks right?

Well, just one:

all but first of (list)
script vars (a)
set [a] to (copy of (list))
delete (1) of (a)
report (a)

yeah but what is that (join >) block you've got there at the bottom of your code?

The same block! It uses recursion.  smile


nXIII

Offline

 

#286 2010-10-05 20:26:42

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: Welcome to the OLD local block library!

nXIII wrote:

midnightleopard wrote:

nXIII wrote:


Well, just one:

all but first of (list)
script vars (a)
set [a] to (copy of (list))
delete (1) of (a)
report (a)

yeah but what is that (join >) block you've got there at the bottom of your code?

The same block! It uses recursion.  smile

what's recursion? You can put the block you're working on in it's own code!?


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#287 2010-10-05 20:35:35

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

Re: Welcome to the OLD local block library!

nXIII wrote:

midnightleopard wrote:

nXIII wrote:


Well, just one:

all but first of (list)
script vars (a)
set [a] to (copy of (list))
delete (1) of (a)
report (a)

yeah but what is that (join >) block you've got there at the bottom of your code?

The same block! It uses recursion.  smile

You know, you don't have to use (the (join >) block) in the call block, you could just use (join >)


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

Offline

 

#288 2010-10-05 21:25:23

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

Re: Welcome to the OLD local block library!

ScratchReallyROCKS wrote:

nXIII wrote:

midnightleopard wrote:


yeah but what is that (join >) block you've got there at the bottom of your code?

The same block! It uses recursion.  smile

You know, you don't have to use (the (join >) block) in the call block, you could just use (join >)

?
I need to call it with a list of arguments!


nXIII

Offline

 

#289 2010-10-05 21:34:16

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

Re: Welcome to the OLD local block library!

nXIII wrote:

ScratchReallyROCKS wrote:

nXIII wrote:


The same block! It uses recursion.  smile

You know, you don't have to use (the (join >) block) in the call block, you could just use (join >)

?
I need to call it with a list of arguments!

No, I mean don't need to use the (the () block) block.


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

Offline

 

#290 2010-10-06 06:52:17

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: Welcome to the OLD local block library!

okay but how do you put a block you're making in it's own coding?


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#291 2010-10-06 07:09:44

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

Re: Welcome to the OLD local block library!

midnightleopard wrote:

okay but how do you put a block you're making in it's own coding?

You drag it in.


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

Offline

 

#292 2010-10-06 13:04:29

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

Re: Welcome to the OLD local block library!

SBBM< what catagory does your ERROR block go under?

Odd, some people are saying that Zorket is not the author of the Scratch block "get time" and that someone else did it... anyone know who to credit?

No one has made suggestions for improving the glossary... does that mean it's perfect or that people have not checked it? I'm sure lots of people could add words and definitions (or improve on the definitions I gave)!


I have a block request for Panther! does anyone know how to code a <sound $SoundNames$ playing?> block?

Last edited by sparks (2010-10-06 13:13:08)


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

Offline

 

#293 2010-10-06 13:14:33

militarydudes
Scratcher
Registered: 2008-09-12
Posts: 1000+

Re: Welcome to the OLD local block library!

This is awesome!


__m. .m__ KILROY WAS HERE
        U

Offline

 

#294 2010-10-06 13:22:44

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

Re: Welcome to the OLD local block library!

militarydudes wrote:

This is awesome!

http://www.watblog.com/wp-content/uploads/2010/08/facebook-like-buton.png


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

Offline

 

#295 2010-10-06 15:26:06

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

Re: Welcome to the OLD local block library!

sparks wrote:

Odd, some people are saying that Zorket is not the author of the Scratch block "get time" and that someone else did it... anyone know who to credit?

I thought LS97 made it.


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

Offline

 

#296 2010-10-06 15:43:42

zorket
Scratcher
Registered: 2010-05-25
Posts: 500+

Re: Welcome to the OLD local block library!

THANK YOU sparks! FINALLY!


ScratchReallyROCKS wrote:

sparks wrote:

Odd, some people are saying that Zorket is not the author of the Scratch block "get time" and that someone else did it... anyone know who to credit?

I thought LS97 made it.

He did. I got confused and now I got it.

Last edited by zorket (2010-10-06 15:44:49)


Marzipan11 must learn to not spoil

Offline

 

#297 2010-10-06 16:35:55

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

Re: Welcome to the OLD local block library!

ScratchReallyROCKS wrote:

nXIII wrote:

ScratchReallyROCKS wrote:


You know, you don't have to use (the (join >) block) in the call block, you could just use (join >)

?
I need to call it with a list of arguments!

No, I mean don't need to use the (the () block) block.

You mean I could just use an OSlot (gray border)? I don't like that shortcut, (the () block) is short enough for me (it's a shortening of (the script (report ())))


nXIII

Offline

 

#298 2010-10-06 16:47:57

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

Re: Welcome to the OLD local block library!

nXIII wrote:

ScratchReallyROCKS wrote:

nXIII wrote:


?
I need to call it with a list of arguments!

No, I mean don't need to use the (the () block) block.

You mean I could just use an OSlot (gray border)? I don't like that shortcut, (the () block) is short enough for me (it's a shortening of (the script (report ())))

Yeah. Why don't you like it?


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

Offline

 

#299 2010-10-06 16:50:55

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

Re: Welcome to the OLD local block library!

nXIII wrote:

ScratchReallyROCKS wrote:

nXIII wrote:

?
I need to call it with a list of arguments!

No, I mean don't need to use the (the () block) block.

You mean I could just use an OSlot (gray border)? I don't like that shortcut, (the () block) is short enough for me (it's a shortening of (the script (report ())))

Yeah. Why don't you like it?


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

Offline

 

#300 2010-10-06 16:54:18

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: Welcome to the OLD local block library!

hmm I thought billyedward made the date/time block!


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

Board footer