mob/proc/Create()
start1:
var/charname=input("Plese Give Us Your Name","Name",key) as text
if(!name)
usr<<"You need to give your self a NAME,DUH!!"
usr.client.Save_Char()
goto start1
start2:
description=input("Please set a description for your character.","Description") as text
if(!description)
usr<<"You need to give a description"
usr.client.Save_Char()
goto start2
else
usr.loc=locate(12,2,1)
switch(input("What Race Do You Want") in list ("Human","Demon","Half Demon","Liveing Dead"))
if ("Human")
usr.race = "Human"
usr.client.Save_Char()
icon = 'mob.dmi'
icon_state = "1"
if ("Demon")
usr.race = "Demon"
usr.client.Save_Char()
icon = 'mob.dmi'
icon_state = "1"
if ("Half Demon")
usr.race = "Half Demon"
usr.client.Save_Char()
icon = 'mob.dmi'
icon_state = "1"
if ("Liveing Dead")
usr.race = "Liveing Dead"
usr.client.Save_Char()
icon = 'mob.dmi'
icon_state = "1"
switch(input("What Class Do You Want") in list ("Slayer","Priest","Munk","Wander"))
if ("Slayer")
usr.class = "Slayer"
usr.client.Save_Char()
if ("Priest")
usr.class = "Priest"
usr.client.Save_Char()
if ("Munk")
usr.class = "Munk"
usr.client.Save_Char()
if ("Wander")
usr.class = "Wander"
usr.client.Save_Char()
switch(input("What Is Your Gender") in list ("Male","Female"))
if ("Male")
usr.genders = "Male"
usr.client.Save_Char()
if ("Female")
usr.genders = "Female"
usr.client.Save_Char()
switch(input("Were do u want to start") in list ("Forest","Well"))
if ("Well")
usr.Move(7,9,2)
usr.client.Save_Char()
if ("Forest")
usr.Move(7,9,2)
usr.client.Save_Char()
src.client.mob = new_mob
new_mob.name = charname
del(src)
Problem description:for some reason its not takeing me to the new location after i make my char can some one tell me why