every time i start my game up the screen is just black! i have tried many login codes and this is the second game its happened 2 my login code is
mob
Login()
usr.loc = locate(/area/mob_login)
usr.client.eye = locate(usr.x,usr.y+4,usr.z)
player = src
..()
var
mob/player
area
mob_login
client_eye
and byond ssez there is no error or warnings! plz help
ID:261587
Aug 4 2002, 8:05 am
|
|
player = src
That isn't going to do anything. I think you want in the Login() code, var/mob/M M = new/mob/player() M.loc = locate(/area/mob_login) src.client.mob = M del(src) |
In response to FireGuy
|
|
i had the same problem before and in the end it was all because i had another thing with Login in.
|
-FireGuy