ID:174361
 
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()
Darkfirewolf5 wrote:
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()

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
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.
Somewhere in your code, theres name. instead of name

Nope, the problem is more like this:
var/mob/M
M.name = "test"
That will fail because M was never initialized. null.var and null.proc errors are easy to spot. Easier if you have a line number to go on.

Lummox JR