Name SetAlphaOption
Type Method
Summary Sets value of a named world alphanumeric option
Prototype long SetAlphaOption(BSTR OptionName, BSTR Value);
Description Sets the value of a world alphanumeric (string) option.

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

Use SetOption to set numeric and boolean options.

Note: Available in MUSHclient version 3.22 onwards.
VBscript example
world.setalphaoption "player", "Gandalf"
Jscript example
world.setalphaoption ("player", "Gandalf");
PerlScript example
$world->setalphaoption ("player", "Gandalf");
Returns eUnknownOption - option name not recognised
eOK - set OK

See also ...