ID:261217
 
when I log back into my game all I get is a black screen I have no errors or warnings, anyone have any clue as to how to stop this?
Himura Kenshin wrote:
when I log back into my game all I get is a black screen I have no errors or warnings, anyone have any clue as to how to stop this?



Yeah code your login proc right. {That wasn't meant to be mean it was a honest answer.)
In response to Nadrew
of course it does! how else would I be able to create
In response to Himura Kenshin
Himura Kenshin wrote:
of course it does! how else would I be able to create



That's not your Login proc that's Deadron's Login proc.
In response to Nadrew
well my code has A login proc to it
In response to Himura Kenshin
Himura Kenshin wrote:
well my code has A login proc to it


That doesn't mean you're doing it right, show me your login code.
In response to Nadrew
Login()
usr.loc = locate(1,1,1)

src.CreateCharacter()
In response to Himura Kenshin
Himura Kenshin wrote:
Login()
usr.loc = locate(1,1,1)

src.CreateCharacter()


Ok I already see what you're doing wrong

1.Using usr and src
2.Not using ..() in your Login proc
3.Not declearing it as a mob proc.

It should look like this:

mob/Login()
..()
src.loc=locate(1,1,1)
src.CreateCharacter()
In response to Nadrew
hrm still havin problems with black screen...