Ignore List object - Hotride/OrionUO GitHub Wiki
Command format:
ReturnType NameSpace.name(requiredParameters, [optionalParameters=defaultValue]);
-
ReturnType - the return value of the function (void - the function returns nothing);
-
NameSpace - the scope of the function;
-
name - the name of the function;
-
requiredParameters - required parameters;
-
optionalParameters - optional parameters, the default value is indicated after the = sign
String ignoreList.Name();
Result: The name of the search ignore list.
- ШIgnoreListItemObjectList ignoreList.Items();
Result: A list of objects to ignore when searching, objects of type IgnoreListItemObject.
void ignoreList.SetName('value');
Change the name of the search list to value.
- void ignoreList.SetItems(ignoreListItemObjectList);
Change the list of items to ignore when searching to ignoreListItemObjectList.