runtime error: Cannot modify null.name.
proc name: Login (/mob/create_character/Login)
usr: the xc (/mob/create_character)
src: the xc (/mob/create_character)
call stack:
the xc (/mob/create_character): Login()
ID:174361
Aug 23 2003, 2:18 pm
|
|
In response to Lummox JR
|
|
runtime error: Cannot modify null.name.
Somewhere in your code, theres name. instead of name |
In response to FranquiBoy
|
|
FranquiBoy wrote:
runtime error: Cannot modify null.name. Nope, the problem is more like this: var/mob/M Lummox JR |
It means you're trying to modify the name var of an object that hasn't been initialized, and so is null.
This is a pretty easy error to track down. For one thing, all you have to do is look for anywhere you used something.name. But if that doesn't help, you can turn on debugging info in Build | Preferences to get a line number to go with your error.
Lummox JR