ID:149120
 
Ok, I have my code set up well. And I want it to make me appear at the title screen when I first login, but it takes me to chaarcter creation :-/ Heres my coding, what did I do wrong?

mob
proc
start()
usr.loc=locate(36,38,3)
usr << sound('opening.mid')



turf/Titlescreen
title
icon = 'TitleScreen.bmp'
title2
icon = 'ChooseDestiny.bmp'




area

turf//start turfs
start


StartClick
density = 1
Click()
usr.loc=locate(36,16,3)
sleep(30)
Branks wrote:
Ok, I have my code set up well. And I want it to make me appear at the title screen when I first login, but it takes me to chaarcter creation :-/ Heres my coding, what did I do wrong?

mob
proc
start()
usr.loc=locate(36,38,3)
usr << sound('opening.mid')

Does the above code ever get called? Where is Login()? Also, change usr to src in this proc.