mob/create_character
var/mob/character
Login()
var/charactername = input("Choose Your Name to Join OK!","OK Character Name?")
character = new /mob/You/Player()
character.name = charactername
src.client.mob = character
character.loc=locate (9,49,1)
world<<"<B>[character] has logged in!"
del(src)
..()
however when i login it takes me to a diffrent place? any ideas why
Ok, you finally admitted it. Now, I'll try and help. Do you have any other Login() code that sends you to another location?