ID:139227
 


mob
icon='mob.dmi'
var
hp=10
str=5
def=2
mob
Login()
usr.icon_state="male"
usr.Move(locate(1,1,1))
Ok basically my turf and etc. are loaded when i run my test server but for some reason there is no icon state or user there and basically im stuck how can i fix this so the male OR female icon appears?
SigmaWolf wrote:
mob
icon='mob.dmi'
var
hp=10
str=5
def=2
mob // you have changed the path
Login()
usr.icon_state="male"
usr.Move(locate(1,1,1))

mob
icon = 'mob.dmi'
var
HP = 10
STR = 5
DEF = 2

mob // this is there you changed your login path to mob/mob
Login()
src.icon_state = "male"
src.loc = locate(1, 1, 1)

// in order to fix that, you either change the world's mob's path, or you change it to mob/Login()

world
mob = /mob/mob // the mob/mob/Login() path


You've changed your Login() to mob/mob, but it's set at mob/Login().
In response to Neimo
ok thank you s much ill see if it works