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

#1176 2012-05-13 07:35:53

funelephant
Scratcher
Registered: 2010-07-02
Posts: 1000+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

shadefrost47 wrote:

Looks AMAZING!


nicki begs to differ
http://24.media.tumblr.com/ab0e6e8fd347c5e39c2821bcab9d16e6/tumblr_mgu35sui1L1rfb7aqo2_500.gif

Offline

 

#1177 2012-05-13 07:36:11

wilena
Scratcher
Registered: 2011-06-04
Posts: 16

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Can't wait!°!!!!!
*explodes*
:3


....

Offline

 

#1178 2012-05-13 08:19:26

James07
Scratcher
Registered: 2012-04-04
Posts: 500+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

wilena wrote:

Can't wait!°!!!!!
*explodes*
:3


http://trinary.site40.net/images/scratchrank.php?username=James07

Offline

 

#1179 2012-05-13 08:28:09

blokeman42
Scratcher
Registered: 2011-06-21
Posts: 12

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

This looks so good. great updates, and i cant wait!

Offline

 

#1180 2012-05-13 08:40:41

James07
Scratcher
Registered: 2012-04-04
Posts: 500+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

funelephant wrote:

shadefrost47 wrote:

Looks AMAZING!


http://trinary.site40.net/images/scratchrank.php?username=James07

Offline

 

#1181 2012-05-13 08:42:33

ftf841
Scratcher
Registered: 2012-02-19
Posts: 1000+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

count down: 4 days


http://mag.racked.eu/cimage/i9002/Achievement++get%21/Hi+there./mca.png
http://mag.racked.eu/mcimage/i354/Achievement++get%21/CAKE%21%21%21%21%21/mca.png

Offline

 

#1182 2012-05-13 08:45:18

Symp-G
Scratcher
Registered: 2010-04-26
Posts: 18

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Is there going to be a Save/Load game function?


~Symp-G

Offline

 

#1183 2012-05-13 08:48:17

silvershine
Scratcher
Registered: 2010-11-21
Posts: 500+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Symp-G wrote:

Is there going to be a Save/Load game function?

You could use the cloud lists and variables to do that.

Offline

 

#1184 2012-05-13 09:01:11

Friezeshrew
Scratcher
Registered: 2011-11-05
Posts: 27

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

I have already designed a few scripts in my head to work with the cloud variables! I have a high-score list with the ability to choose whether to add your score along with your initials (because your name might take up a lot of space)

when I receive [addscore]
ask [would you like to add your score?] and wait
if <(answer) = [yes]>
 ask [what are your initials?] and wait
 if <(score) > (item [1] of [scores])>
  insert (join (score) (answer)) at [1] of [scores]
 else
  add (join (score) (answer)) to [scores]
  end
else
 say [Okay then...] for (2) secs
end
broadcast [Startmenu]
I also have a script in mind that automatically displays the top 5 scores along with the initials depending on whether your score is larger or not.
when gf clicked
forever
 if <(score) > (hiscore1)>
  set [hiscore1] to (score)
 else
  if <(score) > (hiscore2)>
   set [hiscore2] to (score)
  else
    if <(score) > (hiscore3)>
     set [hiscore3] to (score)
    else
      if <(score) > (hiscore4)>
       set [hiscore4] to (score)
      else
        if <(score) > (hiscore1)>
          set [hiscore1] to (score)
        else
           do nothing
end
I have thought up a script in which you need two people to get the character to the other side of the screen (or to fill a glass with water or something).
http://i1177.photobucket.com/albums/x344/Boonaiih/SBlocks.jpg

Last edited by Friezeshrew (2012-05-13 09:33:35)


http://i1177.photobucket.com/albums/x344/Boonaiih/Bshow.gif It's not an act, it's an art. -Joshua Bowers

Offline

 

#1185 2012-05-13 09:13:34

jontmy00
Scratcher
Registered: 2011-11-28
Posts: 1000+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Friezeshrew wrote:

I have already designed a few scripts in my head to work with the cloud variables! I have a high-score list with the ability to choose whether to add your score along with your initials (because your name might take up a lot of space)

when I receive [addscore v]
ask [Would you like to add your score?] and wait
if <(answer) = [yes]>
 ask [What are your initials?] and wait
 if <(score) > (item (1 v) of [scores v])>
  insert (join (score) (answer)) at (1 v) of [scores v]
 else
  add (join (score) (answer)) to [scores v]
  end
else
 say [Okay then...] for (2) secs
end
broadcast [Startmenu v]
I also have a script in mind that automatically displays the top 5 scores along with the initials depending on whether your score is larger or not. I have thought up a script in which you need two people to get the character to the other side of the screen (or to fill a glass with water or something).

Script fixed.  smile


FOR ALL THE NEWS ON UPDATES FOR SIMPLISTICRAFT, CLICK HERE.

Offline

 

#1186 2012-05-13 09:16:13

James07
Scratcher
Registered: 2012-04-04
Posts: 500+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Friezeshrew wrote:

I have already designed a few scripts in my head to work with the cloud variables! I have a high-score list with the ability to choose whether to add your score along with your initials (because your name might take up a lot of space)

when I receive [addscore]
ask [would you like to add your score?] and wait
if <(answer) = [yes]>
 ask [what are your initials?] and wait
 if <(score) > (item [1] of [scores])>
  insert (join (score) (answer)) at [1] of [scores]
 else
  add (join (score) (answer)) to [scores]
  end
else
 say [Okay then...] for (2) secs
end
broadcast [Startmenu]
I also have a script in mind that automatically displays the top 5 scores along with the initials depending on whether your score is larger or not. I have thought up a script in which you need two people to get the character to the other side of the screen (or to fill a glass with water or something).

Me too!

add (score) to [:cloud: scores v]


http://trinary.site40.net/images/scratchrank.php?username=James07

Offline

 

#1187 2012-05-13 09:23:38

Friezeshrew
Scratcher
Registered: 2011-11-05
Posts: 27

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Yeah adding scratch blocks on here is hard. I might just start taking screen caps of my computer lol


http://i1177.photobucket.com/albums/x344/Boonaiih/Bshow.gif It's not an act, it's an art. -Joshua Bowers

Offline

 

#1188 2012-05-13 09:24:18

Mokat
Scratcher
Registered: 2011-12-08
Posts: 1000+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

I know how I could use the BYOB feature!


http://www.eggcave.com/egg/977371.pnghttp://www.eggcave.com/egg/977376.pnghttp://www.eggcave.com/egg/1005291.pnghttp://www.eggcave.com/egg/996745.png

Offline

 

#1189 2012-05-13 09:36:34

bond24
Scratcher
Registered: 2012-05-09
Posts: 1

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

i think you should make it so you can make online game so other people can play with you

Offline

 

#1190 2012-05-13 10:18:57

SaveALLtheWhales
New Scratcher
Registered: 2012-05-13
Posts: 2

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

[removed - please use respectful language]------------ It looks like facebook! My mom is going to KILL me if she sees me on what no longer appears to be an innocent site that lets you share art and stuff! Still, looks amazing!

Last edited by Paddle2See (2012-05-13 13:08:14)

Offline

 

#1191 2012-05-13 10:31:19

SANDIman
Scratcher
Registered: 2012-02-23
Posts: 13

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

look's exiting beaucase soon it is scrach day.
smile

Offline

 

#1192 2012-05-13 10:32:47

AgentRoop
Scratcher
Registered: 2012-02-11
Posts: 1000+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

SANDIman wrote:

look's exiting beaucase soon it is scrach day.
smile


La La
I wrote an album.

Offline

 

#1193 2012-05-13 10:37:09

SANDIman
Scratcher
Registered: 2012-02-23
Posts: 13

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

make a mesing know!<forever>

Offline

 

#1194 2012-05-13 10:38:48

pokegearguy123
Scratcher
Registered: 2011-06-19
Posts: 4

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

lol so makin wizarding game outta x-box k-nect fing =-)

Offline

 

#1195 2012-05-13 10:41:34

joletole
Scratcher
Registered: 2011-02-20
Posts: 1000+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

SaveALLtheWhales wrote:

[removed - please use respectful language]------------ It looks like facebook! My mom is going to KILL me if she sees me on what no longer appears to be an innocent site that lets you share art and stuff! Still, looks amazing!

Me too.

Last edited by Paddle2See (2012-05-13 13:08:50)

Offline

 

#1196 2012-05-13 11:02:33

SANDIman
Scratcher
Registered: 2012-02-23
Posts: 13

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

good luck;p
I would like to try out the new scrach. Hey to learn about scrach to 5-8 you need to be clever in all ways like me.It miet be upseting if you want to use scrach but you can't so I'l give you some tips .
tips
know to downlowd scrach tipe;scrach downlowd .chois @ if you have :laptops pl v pl4 apple laptop or game play ; click on the sine apple or if you have centos click on the penguin if you have any fink els click on lenocs sine.But if you have any old computer you can't downlowd it.know you have a page  of fin's you have  downlowded before.click on the one you just downlowded.Know figer out yourself.

Offline

 

#1197 2012-05-13 11:25:09

technoboy10
Scratcher
Registered: 2007-08-25
Posts: 1000+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

ftf841 wrote:

count down: 4 days

big_smile  Can't wait!


So long, 1.4.
http://goo.gl/3JEV9

Offline

 

#1198 2012-05-13 11:37:01

James07
Scratcher
Registered: 2012-04-04
Posts: 500+

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

technoboy10 wrote:

ftf841 wrote:

count down: 4 days

big_smile  Can't wait!

>
>
>
>
>Post errors
>The following errors need to be corrected before the message can be posted:
>At least 60 seconds have to pass between posts. Please wait a little while and try posting >again.
EDIT:Just gave me somthing to do while the 60 second rule past.

Last edited by James07 (2012-05-13 11:38:03)


http://trinary.site40.net/images/scratchrank.php?username=James07

Offline

 

#1199 2012-05-13 11:53:38

tomrow
Scratcher
Registered: 2011-05-31
Posts: 12

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Credentials needed for Scratch v2.0a

Offline

 

#1200 2012-05-13 11:55:25

tomrow
Scratcher
Registered: 2011-05-31
Posts: 12

Re: Celebrate Scratch Day! Try out the Scratch 2.0 prototype!

Oh, and I've already tried out the program. I've found it on Google.

Offline

 

Board footer