ID:271178
 
with this current code how can i make them choose their name when they Click() New on the title screen.


turf
start_screen
icon='Title 1.png'
start_screen2
icon='Title 2.png'
New
Click()
mob
proc
Set_My_Name(t as text)
src.name = t
src << "Your name is now [t]!"

Then just make it
Click()
src.Set_My_Name

I think.
In response to Revojake
i said somthin that can connect to the bottom of this

turf
start_screen
icon='Title 1.png'
start_screen2
icon='Title 2.png'
New
Click()
In response to Vegito SSJ44
You're putting things in the wrong places. Don't worry -- you'll learn where things go, and it'll become second nature after you do it long enough.

Here's what I think you're looking for:

turf
start_screen
//whatever
start_screen_2
//whatever
Click() //here's the good part
var/mob/m = usr //m = whoever clicked:
//one of the rare "legitimate" uses of usr
m.name = input(m,"What is your character's name","Name") as text