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

#2201 2012-12-10 12:53:50

321Thomas123
New Scratcher
Registered: 2012-12-07
Posts: 5

Re: Official [Scratchblocks] Testing Play Area

when gf clicked
set [password v] to _
show
when gf clicked
ask [password please]
forever
   if < (answer) = password >
      set [password v] to < (answer) >
      hide
then have code like this to other sprites

when gf clicked
forever
   if < (password) = password >
       what you want the sprite to do here

Offline

 

#2202 2012-12-10 13:22:52

machinespray
Scratcher
Registered: 2012-05-09
Posts: 93

Re: Official [Scratchblocks] Testing Play Area

when gf clicked
stop all 

Last edited by machinespray (2012-12-10 13:23:51)


I am made a mod for Scratch. If you have any ideas for the mod please post it on this forum page.http://scratch.mit.edu/forums/viewtopic.php?id=108265http://internetometer.com/image/38591.png
I am http://blocks.scratchr.org/API.php?action=onlineStatus&amp;type=text&amp;user=machinespray

Offline

 

#2203 2012-12-10 13:24:42

machinespray
Scratcher
Registered: 2012-05-09
Posts: 93

Re: Official [Scratchblocks] Testing Play Area

A script for making text:


when gf clicked

show

clear

set size to (100)%

switch to costume [cat1-a v]

go to x: (0) y: (0)

ask [Type anything] and wait

set [ans v] to (answer)

set [num v] to [1]

go to x: (-200) y: (0)

set size to (25)%

repeat (length of (answer))  

if <(letter (num) of (ans)) = [a]> 

switch to costume [a v]

end

if <(letter (num) of (ans)) = [b]> 

switch to costume [b v]

end

if <(letter (num) of (ans)) = [c]> 

switch to costume [c v]

end

if <(letter (num) of (ans)) = [d]> 

switch to costume [d v]

end

if <(letter (num) of (ans)) = [e]> 

switch to costume [e v]

end

if <(letter (num) of (ans)) = [f]> 

switch to costume [f v]

end

if <(letter (num) of (ans)) = [g]> 

switch to costume [g v]

end

if <(letter (num) of (ans)) = [h]> 

switch to costume [h v]

end

if <(letter (num) of (ans)) = [i]> 

switch to costume [i v]

end

if <(letter (num) of (ans)) = [j]> 

switch to costume [j v]

end

if <(letter (num) of (ans)) = [k]> 

switch to costume [k v]

end

if <(letter (num) of (ans)) = [l]> 

switch to costume [l v]

end

if <(letter (num) of (ans)) = [m]> 

switch to costume [m v]

end

if <(letter (num) of (ans)) = [n]> 

switch to costume [n v]

end

if <(letter (num) of (ans)) = [o]> 

switch to costume [o v]

end

if <(letter (num) of (ans)) = [p]> 

switch to costume [p v]

end

if <(letter (num) of (ans)) = [q]> 

switch to costume [q v]

end

if <(letter (num) of (ans)) = [r]> 

switch to costume [r v]

end

if <(letter (num) of (ans)) = [s]> 

switch to costume [s v]

end

if <(letter (num) of (ans)) = [t]> 

switch to costume [t v]

end

if <(letter (num) of (ans)) = [u]> 

switch to costume [u v]

end

if <(letter (num) of (ans)) = [v]> 

switch to costume [v v]

end

if <(letter (num) of (ans)) = [w]> 

switch to costume [w v]

end

if <(letter (num) of (ans)) = [x]> 

switch to costume [x v]

end

if <(letter (num) of (ans)) = [y]> 

switch to costume [y v]

end

if <(letter (num) of (ans)) = [z]> 

switch to costume [z v]

end

if <(letter (num) of (ans)) = [ ]> 

switch to costume [costume1 v]

end

stamp

move (20) steps

change [num v] by (1)

end

hide

Last edited by machinespray (2012-12-10 13:25:15)


I am made a mod for Scratch. If you have any ideas for the mod please post it on this forum page.http://scratch.mit.edu/forums/viewtopic.php?id=108265http://internetometer.com/image/38591.png
I am http://blocks.scratchr.org/API.php?action=onlineStatus&amp;type=text&amp;user=machinespray

Offline

 

#2204 2012-12-10 13:25:54

machinespray
Scratcher
Registered: 2012-05-09
Posts: 93

Re: Official [Scratchblocks] Testing Play Area

when gf clicked 
say [cool it works!!!]

Last edited by machinespray (2012-12-10 13:26:27)


I am made a mod for Scratch. If you have any ideas for the mod please post it on this forum page.http://scratch.mit.edu/forums/viewtopic.php?id=108265http://internetometer.com/image/38591.png
I am http://blocks.scratchr.org/API.php?action=onlineStatus&amp;type=text&amp;user=machinespray

Offline

 

#2205 2012-12-10 13:42:25

otnayupidstay
Scratcher
Registered: 2009-12-01
Posts: 35

Re: Official [Scratchblocks] Testing Play Area

dvd4 wrote:

otnayupidstay wrote:

when gf clicked
forever
  get [up v]
  eat
  go to [School v]
  eat
  go to [Home v]
  eat
  sleep
end

fixed

I would think that when "sleep" is passed, sleep would end.


IN SOVIET RUSSIA, TBGs CLOSE SCRATCH TEAM.
http://internetometer.com/image/13020.png

Offline

 

#2206 2012-12-10 13:46:00

30-1
Scratcher
Registered: 2012-08-08
Posts: 100+

Re: Official [Scratchblocks] Testing Play Area

There is a much simpler way of doing it:

machinespray wrote:

A script for making text:


when gf clicked
set [num v] to [1]
ask [type text] and wait
repeat (length of (answer))  
 switch to costume (letter (num) of (answer))
 change x by (8)
 stamp
 change [num v] by (1)

end

Last edited by 30-1 (2012-12-10 13:47:45)


http://i.imgur.com/ocOya7x.gif
I. Text I Based I Games I

Offline

 

#2207 2012-12-10 15:58:10

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Official [Scratchblocks] Testing Play Area

321Thomas123 wrote:

when gf clicked
ask [password please] and wait
forever
   if < (answer) = [password]>
      set [password v] to (answer)
      hide
   end

Fixed.

Last edited by ErnieParke (2012-12-10 22:12:04)


http://i46.tinypic.com/35ismmc.png

Offline

 

#2208 2012-12-10 22:00:28

Firedrake969
Scratcher
Registered: 2011-11-24
Posts: 1000+

Re: Official [Scratchblocks] Testing Play Area

round ()

Last edited by Firedrake969 (2012-12-10 22:00:43)


Click the sign.
https://s3.amazonaws.com/eterna/eterna2/logo2.png

Offline

 

#2209 2012-12-10 22:11:40

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Official [Scratchblocks] Testing Play Area

Firedrake969 wrote:

(round ())

Fixed.


http://i46.tinypic.com/35ismmc.png

Offline

 

#2210 2012-12-11 16:08:20

nazofan_specials
New Scratcher
Registered: 2012-12-11
Posts: 2

Re: Official [Scratchblocks] Testing Play Area

when gf clicked
repeat until <(Scratch) = [2.0]>
  go to [CRISTMAS!!! v]
end
think [Scratch 2.0 on CRISTMAS!] for (777) secs
say [SCRATCH ROCKS!!!]

Offline

 

#2211 2012-12-11 17:00:07

Coyotefoxwolflover
New Scratcher
Registered: 2012-12-11
Posts: 1

Re: Official [Scratchblocks] Testing Play Area

 hi! i'm bored but i like foxes coyotes and wolves! 

Offline

 

#2212 2012-12-11 17:26:08

ErnieParke
Scratcher
Registered: 2010-12-03
Posts: 1000+

Re: Official [Scratchblocks] Testing Play Area

To all of the spamers above, please don't spam here. There are other websites for that.

Paddle2See wrote:

However, please do not turn this into a spam area.  Post until you are comfortable with the Scratchblock syntax and then stop.  Don't make ongoing stories or conversations here.


http://i46.tinypic.com/35ismmc.png

Offline

 

#2213 2012-12-11 17:40:15

gfchll
Scratcher
Registered: 2012-04-21
Posts: 100+

Re: Official [Scratchblocks] Testing Play Area

when gf clicked 
say [i haven't posted anything in this for a long time] for (5) secs
say [it's cool what people think of these days] for (5) secs
say [Let's Cerlebrate! 3,000,000 projects is Near!] for (4) secs
play sound [ Celebration by Kool and the Gang v]until done
say [THAT was fun.] for (3) secs
say [let's reach for 5,000,000] for (5) secs
stop [SCRATCH ON!] all

Last edited by gfchll (2012-12-11 17:40:29)


HELLO EVERYBODY!

Offline

 

#2214 2012-12-12 15:15:39

Balboa7
Scratcher
Registered: 2010-01-22
Posts: 31

Re: Official [Scratchblocks] Testing Play Area

When Green Flag Clicked
When Green Flag Clicked
When Key [space] Pressed
trololololololololololo!
TROLOLOLOLO!
TROLOLOLOLO!
TROLOLOLOLO!
TROLOLOLOLO!
HEHEHEHEHEHEHEHEHEHEHEEEEEE!
TROLOLOLOLO!
:D:D:D:D:D:D:D:D:D:D:D:D:D:
testinginginginginginginginginginginginginging
ingtestestestestestestestesttesttesttesttesting
inginginginginginging
TROLOLO
When Key [TROLOLOLOLO] Pressed


Check out my game art projects!:
http://scratch.mit.edu/static/projects/Balboa7/2772374_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749252_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749330_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749444_med.png

Offline

 

#2215 2012-12-12 15:17:47

Balboa7
Scratcher
Registered: 2010-01-22
Posts: 31

Re: Official [Scratchblocks] Testing Play Area

When Green Flag Clicked
Forever
if <Key [TROLOLOLOLO] Pressed>
Troll Everyone
Troll Everyone
Stop All


Check out my game art projects!:
http://scratch.mit.edu/static/projects/Balboa7/2772374_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749252_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749330_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749444_med.png

Offline

 

#2216 2012-12-12 15:23:14

Balboa7
Scratcher
Registered: 2010-01-22
Posts: 31

Re: Official [Scratchblocks] Testing Play Area

Sorry if I annoy everyone, but I like doing funny scratch blocks. Soo.....

[scratchblocks]
When Key [Microwave] Pressed
Open Microwave
Wait <500>
Put HotPocket in Microwave
Wait <3 Minutes>
Broadcast [Hotpocket Done Cooking]
When I receive [Hotpocket Done Cooking]
Take Hotpocket out of MicroWave
Broadcast [This tastes good!]


Check out my game art projects!:
http://scratch.mit.edu/static/projects/Balboa7/2772374_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749252_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749330_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749444_med.png

Offline

 

#2217 2012-12-12 15:25:48

Balboa7
Scratcher
Registered: 2010-01-22
Posts: 31

Re: Official [Scratchblocks] Testing Play Area

When Key [Microwave] Pressed
Open Microwave
Wait <500>
Put HotPocket in Microwave
Wait <3 Minutes>
Broadcast [Hotpocket Done Cooking]
When I receive [Hotpocket Done Cooking]
Take Hotpocket out of MicroWave
Broadcast [This tastes good!]


Check out my game art projects!:
http://scratch.mit.edu/static/projects/Balboa7/2772374_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749252_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749330_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749444_med.png

Offline

 

#2218 2012-12-12 15:27:15

Balboa7
Scratcher
Registered: 2010-01-22
Posts: 31

Re: Official [Scratchblocks] Testing Play Area

Balboa7 wrote:

Sorry if I annoy everyone, but I like doing funny scratch blocks. Soo.....

When Key [Microwave] Pressed
Open Microwave
Wait <500>
Put HotPocket in Microwave
Wait <3 Minutes>
Broadcast [Hotpocket Done Cooking]
When I receive [Hotpocket Done Cooking]
Take Hotpocket out of MicroWave
Broadcast [This tastes good!][/quote]

I failed, I was supposed to put ""


Check out my game art projects!:
http://scratch.mit.edu/static/projects/Balboa7/2772374_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749252_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749330_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749444_med.png

Offline

 

#2219 2012-12-12 15:29:28

Balboa7
Scratcher
Registered: 2010-01-22
Posts: 31

Re: Official [Scratchblocks] Testing Play Area

I Fail.


Check out my game art projects!:
http://scratch.mit.edu/static/projects/Balboa7/2772374_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749252_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749330_med.pnghttp://scratch.mit.edu/static/projects/Balboa7/2749444_med.png

Offline

 

#2220 2012-12-12 19:14:16

BrandonSharp
New Scratcher
Registered: 2012-12-12
Posts: 2

Re: Official [Scratchblocks] Testing Play Area

When flag clicked
if 1+1=2 do
while true do end

Offline

 

#2221 2012-12-12 20:35:49

Portalmaker
Scratcher
Registered: 2012-10-21
Posts: 76

Re: Official [Scratchblocks] Testing Play Area

when gf clicked
forever
 motor on for (1) secs
 motor on for (1) secs
 motor on for (1) secs
 motor on for (1) secs
end


-_meow_

Offline

 

#2222 2012-12-13 16:29:44

30-1
Scratcher
Registered: 2012-08-08
Posts: 100+

Re: Official [Scratchblocks] Testing Play Area

Balboa7 wrote:

...spam removed...

YOU ANNOYING SPAMMER!!!!!!!!!!!!


http://i.imgur.com/ocOya7x.gif
I. Text I Based I Games I

Offline

 

#2223 2012-12-14 21:15:58

CanadianGeorge
Scratcher
Registered: 2012-11-21
Posts: 100+

Re: Official [Scratchblocks] Testing Play Area

when gf clicked
repeat [0]
stop all pinks
end
say [I <3 Scratch!]


smile   neutral   sad   big_smile   yikes   wink   hmm   tongue   lol   mad   roll   cool
"You're weird" -My Sister

Offline

 

#2224 2012-12-15 12:42:18

ruby77
New Scratcher
Registered: 2012-12-14
Posts: 3

Re: Official [Scratchblocks] Testing Play Area

When gf clicked
forever
talk [COOOL] for (8) seconds
Lol xD

Offline

 

#2225 2012-12-15 12:46:34

ruby77
New Scratcher
Registered: 2012-12-14
Posts: 3

Re: Official [Scratchblocks] Testing Play Area

when gf clicked
Bank
Money
Stolen Money
Say [COPS ARE HERE RAISE YOUR HANDS] for (2) secs
Money Say [Yeah, Let Me Go >:(] for (2) secs

Offline

 

Board footer