Name GetAlphaOption
Type Method
Summary Gets the value of an alphanumeric configuration option
Prototype VARIANT GetAlphaOption(BSTR OptionName);
Description Gets the value of an alphanumeric world option (text option), such as player name, MUD name etc.

You can use GetAlphaOptionList to get a list of the names of all possible options.

Note: Available in MUSHclient version 3.22 onwards.
VBscript example
world.note world.getalphaoption ("player")
Jscript example
/world.note(world.getalphaoption ("player"));
PerlScript example
/$world->note ($world->getalphaoption ("player"));
Returns The value of the requested option, or an "empty" variant if the option does not exist.

See also ...