ID:174484
 
ok I cant get the char handl system so for now how do I make it so my player at least has an icon?
Here is a simple login/character code:

mob/Login()
world << "[usr] has entered [world.name]"
usr << "welcome [usr] to [world.name]"
usr.loc = locate(1,1,1)
usr.icon = 'person.dmi'
In response to IvoryWizard
thanks exactly what I needed!
In response to IvoryWizard
IvoryWizard wrote:
Here is a simple login/character code:

mob/Login()
world << "[usr] has entered [world.name]"
usr << "welcome [usr] to [world.name]"
usr.loc = locate(1,1,1)
usr.icon = 'person.dmi'
"No put usr in procs ungh."

hehe, most of us will know who says that, now any way Login() is only semi-safe with usr, you should use src as its more safe to use.