client/base_num_characters_allowed = 3
world/mob = /mob/creating_character
mob/creating_character
base_save_allowed = 0
Login()
spawn()
loc = locate(76,9,3)
src << sound('ChaseTheChance.mid',1)
src.CreateCharacter()
proc/CreateCharacter()
var/prompt_title = "New Character"
var/help_text = "What do you want to name the character?"
var/default_value = key
var/char_name = input(src, help_text, prompt_title, default_value) as null|text
Problem description:I'm pretty new to coding; however, I have pieced together this login code... The problem is that I dont see the title screen or hear the midi untill I click "create a new character". How do I fix that?
I'm not sure if im right on this but im still learning also.
~Grand~