mob/proc/CreateNewCharacter()
var/prompt_title = "Character Creation"
var/help_text = "What is your name?"
rename
var/char_name = input(usr, help_text, prompt_title) as null|text
if(char_name == "")
alert("Please choose a name!")
goto rename
Problem description:
how do you make it so that you can create your character when you login and choose new game? i also need help completing the code
Actually you need to scrap that code outright, not complete it. It's from an old crap demo that's abusing goto.
Lummox JR