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

#26 2011-05-15 13:36:07

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

Re: Claw

Anyone! What do you think of 1.5?


You can now reach me on Twitter @johnnydean1_

Offline

 

#27 2011-05-15 14:44:11

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

Re: Claw

I think it's great, but since Squeak on my computer has problems with sockets, I can't try out the new SLBs.


/* No comment */

Offline

 

#28 2011-05-15 14:45:17

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

Re: Claw

Put the image with all the .dll files (Come with the normal scratch download). It should fix the problem.


You can now reach me on Twitter @johnnydean1_

Offline

 

#29 2011-05-16 10:59:26

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

Re: Claw

So, I spent ages modding to add online into Scratch and 4 people download (4 downloads so far)


You can now reach me on Twitter @johnnydean1_

Offline

 

#30 2011-05-16 16:15:10

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

johnnydean1 wrote:

So, I spent ages modding to add online into Scratch and 4 people download (4 downloads so far)

I always thought this was catch! Of course I will download!
EDIT:
Oh... I did download this a while ago.

Last edited by Pecola1 (2011-05-16 16:17:35)


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#31 2011-05-16 16:17:13

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

Re: Claw

Pecola1 wrote:

johnnydean1 wrote:

So, I spent ages modding to add online into Scratch and 4 people download (4 downloads so far)

I always thought this was catch! Of course I will download!

No, mediafire emails me every 5 downloads (so does 4Shared). Took me ages in the menus. So far were up to ~15 downloads.


You can now reach me on Twitter @johnnydean1_

Offline

 

#32 2011-05-16 16:22:05

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

johnnydean1 wrote:

Pecola1 wrote:

johnnydean1 wrote:

So, I spent ages modding to add online into Scratch and 4 people download (4 downloads so far)

I always thought this was catch! Of course I will download!

No, mediafire emails me every 5 downloads (so does 4Shared). Took me ages in the menus. So far were up to ~15 downloads.

How did you make the 3d costume block? It draws backwards. I can't find the code.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#33 2011-05-16 16:38:55

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

Re: Claw

Pecola1 wrote:

johnnydean1 wrote:

Pecola1 wrote:


I always thought this was catch! Of course I will download!

No, mediafire emails me every 5 downloads (so does 4Shared). Took me ages in the menus. So far were up to ~15 downloads.

How did you make the 3d costume block? It draws backwards. I can't find the code.

What do you mean?


You can now reach me on Twitter @johnnydean1_

Offline

 

#34 2011-05-16 16:40:58

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

Re: Claw

clearthreedcos: t1 to: t2 gap: t3
    | t4 t5 t6 t7 t8 t9 t10 t11 t12 |
    self clearPenTrails.
    t6 _ t1.
    t2 > t1 ifTrue: [t6 _ t2].
    t5 _ t6.
    t6 = t1
        ifTrue: [t4 _ t2]
        ifFalse: [t4 _ t1].
    t7 _ self xpos.
    t8 _ self ypos.
    t11 _ self costumeIndex.
    t6 _ t5 - t4.
    t9 _ 0.
    t6
        timesRepeat:
            [t9 _ t9 + 1.
            t10 _ t9 * t3.
            t10 _ t10 - t3.
            t10 _ t10 + t8.
            self ypos: t10.
            t12 _ t9 - 1.
            self lookLike: t12.
            self stampCostume].
    self xpos: t7.
    self ypos: t8.
    self lookLike: t11


You can now reach me on Twitter @johnnydean1_

Offline

 

#35 2011-05-16 17:00:09

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

johnnydean1 wrote:

clearthreedcos: t1 to: t2 gap: t3
    | t4 t5 t6 t7 t8 t9 t10 t11 t12 |
    self clearPenTrails.
    t6 _ t1.
    t2 > t1 ifTrue: [t6 _ t2].
    t5 _ t6.
    t6 = t1
        ifTrue: [t4 _ t2]
        ifFalse: [t4 _ t1].
    t7 _ self xpos.
    t8 _ self ypos.
    t11 _ self costumeIndex.
    t6 _ t5 - t4.
    t9 _ 0.
    t6
        timesRepeat:
            [t9 _ t9 + 1.
            t10 _ t9 * t3.
            t10 _ t10 - t3.
            t10 _ t10 + t8.
            self ypos: t10.
            t12 _ t9 - 1.
            self lookLike: t12.
            self stampCostume].
    self xpos: t7.
    self ypos: t8.
    self lookLike: t11

Where is it in the browser? NVM found it. I couldn't find it earlier.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#36 2011-05-17 03:11:16

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

Re: Claw

So have you used Scratch Live yet? Blocks under connections tab BTW.


You can now reach me on Twitter @johnnydean1_

Offline

 

#37 2011-05-17 11:12:25

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

johnnydean1 wrote:

So have you used Scratch Live yet? Blocks under connections tab BTW.

I don't know PHP. So, no.
Also, this is the site, right? It doesn't seem to be one.

Last edited by Pecola1 (2011-05-17 11:16:16)


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#38 2011-05-17 14:28:11

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

Re: Claw

Pecola1 wrote:

johnnydean1 wrote:

So have you used Scratch Live yet? Blocks under connections tab BTW.

I don't know PHP. So, no.
Also, this is the site, right? It doesn't seem to be one.

Corrected link. And you dont have to know PHP. When you start Claw it should auto-connect. (Check the Scratch-Live tab). Then goto the Connections tab and at the bottom are the online blocks.


You can now reach me on Twitter @johnnydean1_

Offline

 

#39 2011-05-17 14:35:01

lilhome57
New Scratcher
Registered: 2011-04-28
Posts: 8

Re: Claw

okayy cooolllllllllll..

Offline

 

#40 2011-05-17 16:56:13

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

Re: Claw

1.6 should have uploading and collapsible scripts (credit to Jens)


You can now reach me on Twitter @johnnydean1_

Offline

 

#41 2011-05-17 17:18:57

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

johnnydean1 wrote:

Pecola1 wrote:

johnnydean1 wrote:

So have you used Scratch Live yet? Blocks under connections tab BTW.

I don't know PHP. So, no.
Also, this is the site, right? It doesn't seem to be one.

Corrected link. And you dont have to know PHP. When you start Claw it should auto-connect. (Check the Scratch-Live tab). Then goto the Connections tab and at the bottom are the online blocks.

Okay, sweet, I thought you did for some reason, btw if you want to make a variable with a space, rather than a space put %20.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#42 2011-05-18 03:27:00

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

Re: Claw

It replaces spaces ( ) with _


You can now reach me on Twitter @johnnydean1_

Offline

 

#43 2011-05-18 07:25:18

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Claw

What happened to 1.1-1.4? Anyway, 1.5 is great, one of the best, if not the very best mod.


♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#44 2011-05-18 09:48:10

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

johnnydean1 wrote:

It replaces spaces ( ) with _

But if YOU replace your spaces with %20 online it WILL have spaces.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#45 2011-05-18 12:38:39

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

Hey, JD1 found something you need to do, you need to put the ScratchLiveBlocks under obsolete block spec, that way if the internet loses connection, when you open a project, it wont have a bunch of blocks with 'obsolete!' on them. I am making a COM (Claw Online Mesh) I will release it once I can.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#46 2011-05-18 12:43:25

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

YAY! COM is finished download it here: COM.cw

My IP that I use is 911.911.911 okay?

P.S., I have updated 2 times so if you downloaded it earlier, you might not have the newest version!

Last edited by Pecola1 (2011-05-18 15:26:45)


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#47 2011-05-18 15:48:06

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

Re: Claw

Pecola1 wrote:

Hey, JD1 found something you need to do, you need to put the ScratchLiveBlocks under obsolete block spec, that way if the internet loses connection, when you open a project, it wont have a bunch of blocks with 'obsolete!' on them. I am making a COM (Claw Online Mesh) I will release it once I can.

They hide when you dont have connection.


You can now reach me on Twitter @johnnydean1_

Offline

 

#48 2011-05-18 15:48:38

scratcher7_13
Scratcher
Registered: 2011-02-09
Posts: 1000+

Re: Claw

scratcher7_13 wrote:

What happened to 1.1-1.4? Anyway, 1.5 is great, one of the best, if not the very best mod.


♫ 90% of teens can't do math. If you are one of the 40% of teens who can, copy and paste this into your signature. ♫♪
http://dl.dropbox.com/u/6273449/BlockLibraryTitle.pnghttp://i.imgur.com/mr9Hf.gif

Offline

 

#49 2011-05-18 15:49:48

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

johnnydean1 wrote:

Pecola1 wrote:

Hey, JD1 found something you need to do, you need to put the ScratchLiveBlocks under obsolete block spec, that way if the internet loses connection, when you open a project, it wont have a bunch of blocks with 'obsolete!' on them. I am making a COM (Claw Online Mesh) I will release it once I can.

They hide when you dont have connection.

But when you first open, if you don't have connection they will be 'obsolete!' blocks.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

#50 2011-05-18 15:55:28

Pecola1
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: Claw

rdococ wrote:

For some reason, I can't load Claw.
Squeak cannot open the file.

moved.


If you are reading this, please read to the end, because if you don't you won't know what's at the end. Don't just skip to the end though otherwise you won't be able to read the middle, which is most important. Now you must be wondering why you just read all that, the reason is you may have not noticed something, read it again and see if you notice it this time  smile

Offline

 

Board footer