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

#1 2011-04-14 20:17:22

NYCMargaret
New Scratcher
Registered: 2011-03-03
Posts: 2

Name in Game

How would I be able to use a name throughout the whole game? So if they type in their name in the game and then if you want to say, "Good job (name)!" How would you do that? I am doing a life game so I need to know how to do that! Thanks in advance!

Offline

 

#2 2011-04-14 20:25:46

PythonLibrary
Scratcher
Registered: 2011-03-26
Posts: 100+

Re: Name in Game

Use the answer block.


http://dl.dropbox.com/u/9137793/Python%20Library%20logo.png
Our website: pylibrary.co.cc http://dl.dropbox.com/u/9137793/Awesomeness%20Block.gif

Offline

 

#3 2011-04-14 21:41:16

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

Re: Name in Game

Code:

[When Green Flag Clicked]
[Ask "What is your name?" and wait]
[Set variable "name" to "(answer)"]
[Say "(join "Good job, " with "(name)" for "5" seconds]

Does that make sense? To add the exclamation point would require another "join" block.

Offline

 

#4 2011-04-16 08:39:49

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: Name in Game

Magnie wrote:

Code:

[When Green Flag Clicked]
[Ask "What is your name?" and wait]
[Set variable "name" to "(answer)"]
[Say "(join "Good job, " with "(name)" for "5" seconds]

Does that make sense? To add the exclamation point would require another "join" block.

[blocks]
<when green flag clicked>
[ask ("Whats your name?")
<set{ name }to(  (answer)
<say[ join("Good job, " with "<{ name }> " ]for( 5 )secs>
[/blocks]

Offline

 

#5 2011-04-16 10:09:42

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

Re: Name in Game

This should be in 'All About Scratch' forums.


You can now reach me on Twitter @johnnydean1_

Offline

 

#6 2011-04-17 20:35:03

kingofdallamas
Scratcher
Registered: 2010-03-07
Posts: 500+

Re: Name in Game

johnnydean1 wrote:

This should be in 'All About Scratch' forums.

I think this actually should be in New Scratchers forums, too.  smile  But, I think the case has already been resolved.


http://i853.photobucket.com/albums/ab99/Gilgamesh1192/Ninja%20Saga/ElementalJutsus2.gifhttp://i27.photobucket.com/albums/c192/BoomKaTish/GIF/thgfhgfhfhgf.gif
ハロー友だち!

Offline

 

#7 2011-05-05 16:13:37

NYCMargaret
New Scratcher
Registered: 2011-03-03
Posts: 2

Re: Name in Game

Thank you!

Offline

 

Board footer