ID:173330
 
I have been having problems with my login the following error keeps poping up.

runtime error: bad proc
proc name: Login (/mob/create_character/Login)
usr: Sleinth (/mob/create_character)
src: Sleinth (/mob/create_character)
call stack:
Sleinth (/mob/create_character): Login()
Sleinth wrote:
runtime error: bad proc
proc name: Login (/mob/create_character/Login)
usr: Sleinth (/mob/create_character)
src: Sleinth (/mob/create_character)
call stack:
Sleinth (/mob/create_character): Login()

I know how you feel. This is what you need:

mob/proc name: Login (/mob/create_character/Login)
usr: Sleinth (/mob/create_character)
src: Sleinth (/mob/create_character)
call stack:
Sleinth (/mob/create_character): Login()
You tried to call a proc which doesn't exist. I'd wager that instead of doing this:

<code>..() //Correct</code>

You did this:

<code>...() //Wrong</code>

If that's not the problem, you need to post some code.
Mayhap you should post some code so we can help you.

Lummox JR