SYNOPSIS

string object_name()
string object_name( object ob)

DESCRIPTION

Get the name of an object ob or, if no argument is given, of the current object.

As a special case, if ob is 0, the function returns 0.

This name is the name under which the object is stored in the muds object table. It is initialised at the creation of the object such that blueprints are named after the file they are compiled from (without the trailing ‘.c’), and clones receive the name of their blueprint, extended by “#” followed by a unique non-negative number. These rules also apply to virtual objects - the real name/type of virtual objects is ignored.

The name of an object can be changed with rename_object(E), and object_name(E) will reflect any of these changes.

The returned name always begins with ‘/’ (absolute path), except when the parser runs in __COMPAT_MODE__.

USAGE

The below is guaranteed to be true for all objects ob that are not destructed:

find_object(object_name(ob)) // ob

HISTORY

  • changed (3.2.9) – 0 is accepted as argument