File: UO.em
Description: Functions that interact with and alter UO game world data, including server-client messages.
Last Modified: 6/19/2003
File Constants:
Accessible( Character, item ) | |
---|---|
Parameters: | |
Name | Type |
Character | Character Reference |
item | Item Reference |
Explanation | |
Function: Determines if an item falls into one of the following categories for a character: | |
An item on the ground, within two squares | |
An item equipped by the character | |
An item inside the character's backpack | |
A temporarily accessible item | |
Notes: Does not check that character has line-of-sight to item. | |
Return values | |
0 if item does not fall into one of the above categories, 1 if the item does. | |
Errors | |
none | |
Related | |
Item | |
Character |
AddAmount( item_ref, amount ) | |
---|---|
Parameters: | |
Name | Type |
item_ref | Item reference |
amount | An integer 1-60000 |
Explanation | |
Adds the specified amount to a stack of items. Amount is between 1 and 60000 | |
Return values | |
1 or error | |
Errors | |
"That item is being used" (if inuse or reserved) | |
"That item type is not stackable" | |
"Can't add that much to that stack" (if resulting amount > 60000) | |
"Invalid Parameter type" | |
Related | |
Item |
AlterAttributeTemporaryMod( character, attrname, delta_tenths ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
attrname | String (attribute name) |
delta_tenths | Integer |
Explanation | |
Changes the temporary modification value for attribute named "attrname". delta_tenths is in tenths, obviously. So "1" would increase the temp mod by 0.1 points. | |
Return values | |
1 on success or Error | |
Errors | |
"Invalid parameter type" including if attrname was not found as an attribute | |
"New modifier value is out of range" | |
Related | |
Character | |
Related Configs | |
attributes.cfg |
ApplyConstraint( objlist, configfile, propertyname, minvalue ) | |
---|---|
Parameters: | |
Name | Type |
objlist | array of objtype numbers |
configfile | config file reference |
propertyname | string |
minvalue | integer |
Explanation | |
Each element's objtype in "objlist" is looked up in the config file referenced by "configfile". if the object's value for "propertyname" is less than "minvalue", its objtype is included in the returned array. | |
Notes: Example: gets all the bowcraft items you can make given the amount of logs selected. | |
//Returns all the objtypes in the "BowcraftCarving" entry in menus.cfg: var objtypes := GetMenuObjTypes( "BowcraftCarving" ); //Returns a subset of the objtypes in the bowcraft item crafting config file that require //less "material" than the value of targetted_logs.amount. objtypes := ApplyConstraint(objtypes,bowcraftconfigfile,"material",targetted_logs.amount); //the return value is in a convienent form to use AddMenuItem() return objtypes; | |
Return values | |
An Array of Object Types that pass the constraint. | |
Errors | |
none (instead returns an Uninitialized Object on failure) | |
Related | |
UObject | |
Array |
ApplyDamage( Character, Hits ) | |
---|---|
Parameters: | |
Name | Type |
Character | Character Reference |
Hits | Real (0.0 to 30000.0) |
Explanation | |
Decreases a character's hit points, after reducing damage due to armor. | |
(Old notes:) The steps taken are as follows: A piece of armor is chosen randomly, based on probabilities in ARMRZONE.CFG. Damage is reduced by 50% to 100% of the armor's AR. Remaining damage is halved. "I'm Hit" animation is played. Damage is applied. Mobile is killed if hit points are now zero. Invokes Reputation system effects. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"Damage is out of range" | |
Related | |
Character |
ApplyRawDamage( Character, Hits ) | |
---|---|
Parameters: | |
Name | Type |
Character | Character Reference |
Hits | Integer (0..255) |
Explanation | |
Decreases a character's hit points. If this causes hit points to drop to zero, kills the character. | |
Notes: Armor is ignored. | |
Invokes Reputation system effects. | |
Return values | |
1 on success | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
Character |
AssignRectToWeatherRegion( region, xwest, ynorth, xeast, ysouth ) | |
---|---|
Parameters: | |
Name | Type |
region | string |
xwest | integer |
ynorth | integer |
xeast | integer |
ysouth | integer |
Explanation | |
Sets the range for weather region named "region". Useful for making moving storms. Notes: Weather region strings as defined in regions/weather.cfg | |
Return values | |
1 on success | |
Errors | |
"Invalid Parameter type" | |
"Weather region not found" | |
Related Configs | |
weather.cfg |
CheckLineOfSight( object1, object2 ) | |
---|---|
Parameters: | |
Name | Type |
object1 | UObject Reference |
object2 | UObject Reference |
Explanation | |
Tests if object1 has Line-of-sight to object 2 | |
Return values | |
0 if sight blocked | |
1 if object1 has LOS to object2 | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
UObject |
CheckLosAt( character, x, y, z ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
x,y,z | Integer world coordinates |
Explanation | |
Tests if character has Line-of-sight to coordinate | |
Return values | |
1 if character has line-of-sight to (x,y,z) | |
0 if character does not have line-of-sight to (x,y,z) | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
Character |
CheckSkill( character, skillid, difficulty, points ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Ref |
skillid | Integer skill/attribute ID |
difficulty | Integer skill use difficulty |
points | Integer skill gain on success |
Explanation | |
NOTE: Calls the Syshook script CheckSkill. If it doesn't exist, always returns false. | |
Return values | |
Return value of CheckSkill syshook. | |
Errors | |
"Invalid parameter" | |
"No such skill" | |
Related | |
Character |
ConsumeMana( who, spellid ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
spellid | Integer |
Explanation | |
Consumes amount of "Mana" for "who" for the spell as defined in spells.cfg | |
Notes: spells.cfg files define spells and spell ids. | |
Consumes from "Mana" vital. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
"No such spell" | |
"Spell ID out of range" | |
Related | |
Character | |
Related Configs | |
spells.cfg |
ConsumeReagents( caster, spellid ) | |
---|---|
Parameters: | |
Name | Type |
caster | Character Reference |
spellid | An integer |
Explanation | |
Removes reagent items from caster's pack according to spellid's definition in spells.cfg. Spells.cfg files define spells & spell ids. | |
Return values | |
1 on successful consume, 0 if not enough of defined reagents | |
Errors | |
"Spell ID out of range" if !(spellid >= 1 && spellid <= last spellid) | |
"No such spell" if spellid not found | |
"Invalid parameter" | |
Related | |
Character | |
Related Configs | |
spells.cfg |
ConsumeSubstance( container, objtype, amount ) | |
---|---|
Parameters: | |
Name | Type |
container | Container reference |
objtype | Integer objtype to find and consume |
amount | An integer |
Explanation | |
Subtracts "amount" from the first stack of type "objtype" found, starting in container "container" | |
Return values | |
1 or Error | |
Errors | |
"That is not a container" if container.isa(POLCLASS_CONTAINER) == false | |
"Amount cannot be negative" if amount < 0 | |
"Not enough of that substance in container" | |
"Invalid parameter type" | |
Related | |
Container |
ConsumeVital( who, vital, hundredths ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
vital | String (vital name) |
hundreths | Integer |
Explanation | |
Consumes an amount of vital "vital" in hundreths. for example, ConsumeVital(who, "Stamina", 100) consumes one point of stamina. | |
Return values | |
1 on consume success or 0 on failure (insufficient value for the vital) | |
Errors | |
"Invalid parameter type" including if vital was not found as a vital name | |
Related | |
Character | |
Related Configs | |
vitals.cfg |
CreateAccount( acctname, password, enabled ) | |
---|---|
Parameters: | |
Name | Type |
acctname | string |
password | string |
enabled | integer (0 or 1) |
Explanation | |
Creates a new player account with the specified account name, password. | |
Notes: If enabled == 0, player cannot log in. | |
Return values | |
Account Reference for the new account on success | |
Errors | |
"Account already exists" | |
"Invalid parameter type" | |
Related | |
Account |
CreateGuild() | |
---|---|
Explanation | |
Creates a new Guild Object. | |
Return values | |
A Guild Reference to the new guild. | |
Related | |
Guild |
CreateItemAtLocation( x, y, z, objtype, amount ) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
objtype | Integer objtype, OR String ObjtypeName, OR GetItemDescriptor struct. |
amount | Integer (0..60000) |
Explanation | |
Creates an item at an arbitrary location. | |
Amount specifies how large the stack should be. | |
Runs the item's create script, if any. | |
Return values | |
Item Reference on success | |
Errors | |
"That item is not stackable. Create one at a time." | |
"Unable to create item of objtype X" | |
"Invalid parameter type" | |
Related | |
Item | |
Related Configs | |
itemdesc.cfg |
CreateItemCopyAtLocation(x, y, z, itemref) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
itemref | Item Reference |
Explanation | |
makes a clone of the item referenced with "itemref" at location x,y,z. Copies member variables and CProps. Does not work with Multi objects. Does not copy a container's contents. | |
Return values | |
A new Item Reference | |
Errors | |
"Unable to clone item" | |
"Invalid parameter type" | |
"This function does not work with Multi objects." | |
Related | |
Item | |
Related Configs | |
itemdesc.cfg |
CreateItemInBackpack( of_character, objtype, amount := 1 ) | |
---|---|
Parameters: | |
Name | Type |
of_character | Character Reference |
objtype | Integer objtype, OR String ObjtypeName, OR GetItemDescriptor struct. |
amount | Integer (optional, 0..60000) |
Explanation | |
Creates an item in a character's backpack. | |
Notes: Adds to an existing stack in the top level of the container, if an appropriate stack can be found (meaning, can hold the new amount, the existing item stack has color equal to its itemdesc.cfg color property AND has equal CProps as its itemdesc.cfg entry (not counting locally and globally ignored cprops). If no appropritate stack is found, creates a new stack. | |
Runs the item's create script, if any. | |
Calls the container's canInsert and onInsert scripts, if any. | |
Return values | |
Item Reference on success | |
Errors | |
"A parameter was invalid." | |
"Character has no backpack." | |
"That item is not stackable. Create one at a time." | |
"That container is full" | |
"Failed to create that item type" | |
Related | |
Character | |
Item | |
Related Configs | |
itemdesc.cfg | |
stacking.cfg |
CreateItemInContainer( container, objtype, amount := 1 ) | |
---|---|
Parameters: | |
Name | Type |
container | Container Reference |
objtype | Integer objtype, OR String ObjtypeName, OR GetItemDescriptor struct. |
amount | Integer (optional, 0..60000) |
Explanation | |
Creates an item in a container. | |
Notes: Adds to an existing stack in the top level of the container, if an appropriate stack can be found (meaning, can hold the new amount, the existing item stack has color equal to its itemdesc.cfg color property AND has equal CProps as its itemdesc.cfg entry (not counting locally and globally ignored cprops). If no appropritate stack is found, creates a new stack. | |
Runs the item's create script, if any. | |
Calls the container's canInsert and onInsert scripts, if any. | |
Return values | |
Item Reference on success | |
Errors | |
"A parameter was invalid" | |
"That is not a container" | |
"That item is not stackable. Create one at a time." | |
"That container is full" | |
"Failed to create that item type" | |
Related | |
Item | |
Container | |
Related Configs | |
itemdesc.cfg | |
stacking.cfg |
CreateItemInInventory( container, objtype, amount := 1 ) | |
---|---|
Parameters: | |
Name | Type |
container | Container reference |
objtype | Integer objtype for item to be created, OR String ObjtypeName, OR GetItemDescriptor struct. |
amount | size of stack to be created. Default = 1 |
Explanation | |
Creates a stack of items in the specified container. As usual, objtype must be valid and amount must be 1..60000. | |
Note: Will call the container's canInsert and onInsert scripts. | |
Return values | |
Item reference or Error | |
Errors | |
"A parameter was invalid" | |
"That is not a container" if container.isa(POLCLASS_CONTAINER) == false | |
"That container is full" if weight would be > 65535, or if would exceed maximum # of items | |
"Failed to create that item type" | |
"Could not insert item into container." if canInsert script returns false | |
Related | |
Container | |
Item | |
Related Configs | |
itemdesc.cfg |
CreateMultiAtLocation( x, y, z, objtype, flags := 0 ) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
objtype | Integer objtype, OR String ObjtypeName, OR GetItemDescriptor struct. |
flags | Integer (optional) |
Explanation | |
Creates a "multi" object (house or boat) at a location. | |
Notes: uo.em constants for flags: | |
houses only: const CRMULTI_IGNORE_MULTIS := 0x0001; //ignore intersecting multis const CRMULTI_IGNORE_OBJECTS := 0x0002; //ignore dynamic objects const CRMULTI_IGNORE_WORLDZ := 0x0004; //ignore standability,relative Z,world height const CRMULTI_IGNORE_ALL := 0x0007; | |
objtype must be a multi type as defined in itemdesc.cfg having a type House or Boat. | |
For Boats: Position must be passable - every part of the hull sits on water, and no hull location is occupied by the hull of another ship, nor a static or dynamic blocking item. Runs scripts/misc/boat.ecl on creation. | |
Return values | |
Boat Reference or House Reference on success, and adds the multi to the world | |
Errors | |
"That location is out of bounds" | |
"That objtype is not a Multi" | |
"Invalid parameter type" | |
"Don't know what kind of multi to make" | |
Boats: | |
"Multi definition not found for Boat, objtype=X, graphic=Y" | |
"No boatshape for Boat in boats.cfg, objtype=X, graphic=Y" | |
"Position indicated is impassable" | |
Houses: | |
"Multi definition not found for House, objtype=X, graphic=Y" | |
"Location intersects with another structure" (use CRMULTI_IGNORE_MULTIS) | |
"Something is blocking that location" (use CRMULTI_IGNORE_OBJECTS) | |
"That location is not suitable" (use CRMULTI_IGNORE_WORLDZ) | |
Related | |
House | |
Boat |
CreateNpcFromTemplate( template, x, y, z, override_properties := 0) | |
---|---|
Parameters: | |
Name | Type |
template | String |
x,y,z | Integer world coordinates |
override_properties | A Struct with keys as String members and values as appropriate (see notes) |
Explanation | |
Creates an NPC from a template (found in NPCDESC.CFG). | |
Notes: override_properties: a structure containing members to override values in the NPC template. This can be used only to override built-in properties (facing, color, gender etc), but not custom properties. To override custom properties, use SetObjProperty after the NPC has been created. | |
Return values | |
Character Reference on success | |
Errors | |
"Invalid parameter type" | |
"Parameter 4 must be a Struct or Integer(0)" | |
"NPC template 'X' not found" | |
"Not a valid location for an NPC!" | |
"Exception detected trying to create npc from template 'X'" | |
Related | |
NPC | |
Related Configs | |
npcdesc.cfg |
CreateRootItemInStorageArea( area, itemname, objtype ) | |
---|---|
Parameters: | |
Name | Type |
area | String |
itemname | String |
objtype | Integer objtype, OR String ObjtypeName, OR GetItemDescriptor struct. |
Explanation | |
Creates the "root" (top-level) item in the storage area "area". "itemname" is the name of this item, and "objtype" is its type. | |
Notes: The item is normally a container. For example, a bankbox is a storage area and the root item is the chest container. Normal items are then placed in this container. | |
Return values | |
Item Reference on success | |
Errors | |
"Invalid parameter type" | |
"Unable to create item" | |
Related | |
Item |
DestroyGuild( guild ) | |
---|---|
Parameters: | |
Name | Type |
guild | Guild Reference |
Explanation | |
Destroys an empty guild. | |
Notes: Must first empty the guild of members, allies, and enemies (see guildref methods) | |
Return values | |
1 on success | |
Errors | |
"Guild has members" | |
"Guild has allies" | |
"Guild has enemies" | |
"Guild has disbanded" | |
"Invalid parameter type" | |
Related | |
Guild |
DestroyItem( Item ) | |
---|---|
Parameters: | |
Name | Type |
Item | Item Reference |
Explanation | |
Removes an item from the world. Transmits commands to each client in range of item to reflect this. | |
Notes: runs the Item's destroy script, if any. | |
Return values | |
1 if the item was destroyed | |
0 if the item's destroy script disallowed destruction | |
Errors | |
"That item is being used." | |
"Invalid parameter type" | |
Related | |
Item |
DestroyMulti( multi ) | |
---|---|
Parameters: | |
Name | Type |
multi | Multi Reference |
Explanation | |
Deletes a Multi item from the world. | |
Notes: House: Moves all characters and items inside multi to ground. Boat: Requires hold be empty, deck be empty, and have no mobiles logged-out on boat. | |
Return values | |
1 on success | |
Errors | |
"WTF!? Don't know what kind of multi that is!" if not a boat or a house | |
"Invalid parameter type" | |
Boat Errors:"There is cargo in the ship's hold" | |
"There are logged-out characters on the deck" | |
"The deck is not empty" | |
Related | |
House | |
Boat |
DisconnectClient( character ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
Explanation | |
Disconnects the character's client. | |
Notes: Fun! | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
"No client is attached" | |
Related | |
Character |
Distance( object1, object2 ) | |
---|---|
Parameters: | |
Name | Type |
object1 | UObject Reference |
object2 | UObject Reference |
Explanation | |
Determines the distance between two objects. If either object is in a container, uses the world-position of its ultimate-parent container. | |
Notes: This distance is defined as the greater of the x-distance and the y-distance. z-distance is not taken into account. (This is neither Pythagorean distance nor Manhattan distance) | |
Return values | |
Integer - calculated distance on success | |
Errors | |
"Invalid parameter type" | |
Related | |
UObject |
EnumerateItemsInContainer( container ) | |
---|---|
Parameters: | |
Name | Type |
container | Container Reference |
Explanation | |
Returns an array of the contents of a container. | |
Notes: Recurses into unlocked subcontainers. If 'container' is itself locked, its contents will still be enumerated. | |
Return values | |
An Array of Item References on success | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
Container |
EnumerateOnlineCharacters() | |
---|---|
Explanation | |
Gets a list of all online player characters. | |
Return values | |
An Array of Character References on success | |
Errors | |
none | |
Related | |
Character |
EquipFromTemplate( character, template ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
template | String |
Explanation | |
Creates equipment for a character, using EQUIP.CFG. | |
Notes: Element properties in EQUIP.CFG can have the following formats: Equip [hex_objtype] [hex_color] Armor [armor_template_name] Weapon [weapon_template_name] Note that object type and color must be in hex format (0xHHHH) | |
Will not create an item that is not equippable. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
"Equipment template not found" | |
"Blech! Can't find '[object name]' named in equip.cfg" | |
Related | |
Character | |
Equipment | |
Related Configs | |
equip.cfg |
EquipItem( mobile, item ) | |
---|---|
Parameters: | |
Name | Type |
mobile | Character Reference |
item | Item Reference |
Explanation | |
Equips an item on a mobile. | |
Notes: If item is in a container, it will be removed from the container. | |
"Equippable" means that the character does not have a similar item equipped, and that the item is an equipment-type item. | |
Carrying-capacity and strength requirements will fall under this category as well. | |
To "unequip" an item, move it to another location (typically a backpack) | |
Runs the Item's Equiptest and Equip scripts, if any. | |
Return values | |
1 if the item was equipped succesfully | |
0 if the item's Equip script returned false | |
Errors | |
"That is immobile" | |
"That item is being used." | |
"That item is not equippable by that character" if equiptest script failed. | |
"Invalid parameter type" | |
Related | |
Character | |
Item |
EraseObjProperty( object, propertyname ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject Reference |
propertyname | String |
Explanation | |
Removes a property from the custom-property ("cprop") list of an object. propertyname is case-sensative | |
Return values | |
1 if the property was erased or did not exist. | |
Errors | |
"Invalid parameter type" | |
Related | |
UObject |
FindAccount( acctname ) | |
---|---|
Parameters: | |
Name | Type |
acctname | string |
Explanation | |
Gets a player Account Reference by the name of the account. | |
Return values | |
Account Reference on success | |
Errors | |
"Account not found." | |
"Invalid parameter type" | |
Related | |
Account |
FindGuild( guildid ) | |
---|---|
Parameters: | |
Name | Type |
guildid | integer |
Explanation | |
Gets a Guild Reference for a given Guild ID number | |
Return values | |
Guild Reference on success | |
Errors | |
"Guild not found" | |
"Invalid parameter type" | |
Related | |
Guild |
FindObjtypeInContainer( container, objtype ) | |
---|---|
Parameters: | |
Name | Type |
container | Container reference |
objtype | integer objtype to find |
Explanation | |
Returns an Item Reference to the first found item matching objtype starting in "container". | |
Return values | |
Item reference or Error | |
Errors | |
"Invalid parameter type" | |
"That is not a container" if container.isa(POLCLASS_CONTAINER) == false | |
"No items were found" | |
Related | |
Container | |
Item |
GetAmount( item ) | |
---|---|
Parameters: | |
Name | Type |
item | Item Reference |
Explanation | |
Returns size of item stack. | |
probably better to use item.amount | |
Return values | |
Integer size of item's stack on success | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
Item |
GetAttribute( character, attrname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
attrname | String (attribute name) |
Explanation | |
Returns the current effective value for the specified attribute on character. | |
Return values | |
Integer "Effective" attribute value on success (base + temporary mod + intrinsic mod) or Error | |
Errors | |
"Invalid parameter type" including if attrname was not found as an attribute | |
Related | |
Character | |
Related Configs | |
attributes.cfg |
GetAttributeBaseValue( character, attrname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
attrname | String (attribute name) |
Explanation | |
Returns the base value for the specified attribute on character. | |
Return values | |
Integer "Base" attribute value on success or Error | |
Errors | |
"Invalid parameter type" including if attrname was not found as an attribute | |
Related | |
Character | |
Related Configs | |
attributes.cfg |
GetAttributeIntrinsicMod( character, attrname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
attrname | String (attribute name) |
Explanation | |
Returns the intrinsic value for the specified attribute on character. | |
Return values | |
Integer "Intrinsic" attribute value on success or Error | |
Errors | |
"Invalid parameter type" including if attrname was not found as an attribute | |
Related | |
Character | |
Related Configs | |
attributes.cfg |
GetAttributeTemporaryMod( character, attrname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
attrname | String (attribute name) |
Explanation | |
Returns the temporary modification value for the specified attribute on character. | |
Return values | |
Integer "temporary" attribute value on success or Error | |
Errors | |
"Invalid parameter type" including if attrname was not found as an attribute | |
Related | |
Character | |
Related Configs | |
attributes.cfg |
GetCommandHelp( character, command ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
command | string |
Explanation | |
Gets a help message for a textcommand, if one is defined. | |
Notes: Help files are found in commandname.txt in the same directory as the command script. | |
Return values | |
String with help information | |
Errors | |
"Invalid parameter type" | |
"No help for that command found" | |
Related | |
Character |
GetEquipmentByLayer( character, layer ) | |
---|---|
Parameters: | |
Name | Type |
Character | Character reference |
layer | An integer |
Explanation | |
Gets an item reference to an equipped item. For proper layer values, see scripts/include/client.inc | |
Return values | |
Itemref or Error | |
Errors | |
"Invalid layer" | |
"Nothing equipped on that layer." | |
"Invalid parameter" | |
Related | |
Character | |
Item |
GetHarvestDifficulty( resource, x, y, tiletype ) | |
---|---|
Parameters: | |
Name | Type |
resource | String |
x,y | Integer world coordinates |
tiletype | Integer |
Explanation | |
Determines the difficulty of harvesting a resource from location (x,y). | |
Notes: tiletype will typically be .objtype from TargetCoordinates() Checks the location for an object of type 'tiletype'. This tiletype may be a landtile or an object tile. | |
"resource" is something like "ore" "wood" "fish", etc. see regions/resource.cfg, regions/ore.cfg, etc. | |
Return values | |
An integer difficulty level if resources exist. | |
Errors | |
"Invalid parameter" | |
"No resource by that name" | |
"No resource-bearing landmark there" | |
"No resource region at that location" | |
"Resource is depleted" | |
Related Configs | |
resource.cfg |
GetMenuObjTypes( menuname ) | |
---|---|
Parameters: | |
Name | Type |
menuname | static or dynamic menu |
Explanation | |
Gets all the objtypes contained in the menu. | |
Notes: see CreateMenu(), AddMenuItem() | |
Return values | |
Array of objtypes contained in the given menu. | |
Errors | |
none (instead returns 0 on failure) | |
Related | |
Array |
GetObjProperty( object, propertyname ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject Reference |
propertyname | String |
Explanation | |
Retrieves custom data (a "cprop") associated with an object. propertyname is case-sensative | |
Return values | |
On success, the unpacked object that was saved with SetObjProperty. This could be a string, integer, real, array, struct, dictionary, etc. | |
Errors | |
"Property not found" | |
"Invalid parameter type" | |
Related | |
UObject |
GetObjPropertyNames( object ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject reference |
Explanation | |
Gets all the CProp names set on the object. Use GetObjProperty(object, returned_array[i]) to get the CProp value. | |
Return values | |
Array of strings or Error | |
Errors | |
"Invalid parameter type" | |
Related | |
UObject | |
Array |
GetObjtypeByName( name ) | |
---|---|
Parameters: | |
Name | Type |
name | string |
Explanation | |
Finds the matching Object Type number for the obejct named "name" Matches on the itemdesc.cfg property "Name". | |
Return values | |
Integer ObjType or Error | |
Errors | |
"No objtype by that name" | |
"Invalid parameter" | |
Related Configs | |
itemdesc.cfg |
GetRegionString( resource, x, y, propertyname ) | |
---|---|
Parameters: | |
Name | Type |
resource | string |
x | integer |
y | integer |
propertyname | string |
Explanation | |
Allows you to look up custom properties within a resource region entry. | |
"resource" is a string that matches a resource type in regions/resource.cfg, i.e. "ore". x,y is the coordinate to look up in the regions defined in resources/ore.cfg (or the filename matching the supplied resource). | |
"property_name" is the _custom_ property to match (i.e. UnitsPerArea, SecondsPerRegrow, Capacity, Range are NOT matched) in the found region. | |
Example: in regions/resource.cfg there exists a ResourceType "ore". In ore.cfg there exists a region: Region Outer Covetous { UnitsPerArea 15 SecondsPerRegrow 300 Capacity 20000 Range 2299 784 2635 967 Prop value_string -- this is a custom property not used by the core } GetRegionString("ore",2299,785,"Prop"); would return "value_string" | |
Return values | |
String value of "propertyname" on success | |
Errors | |
"Invalid parameter" | |
"No resource by that name" if "resource" not found in regions/resource.cfg | |
"No resource region at that location" if the given x,y is not defined inside any of the regions in regions/[resource string].cfg | |
"Property not found" if "propertyname" was not found in the matching region. | |
Related Configs | |
regions.cfg |
GetSpellDifficulty( spellid ) | |
---|---|
Parameters: | |
Name | Type |
spellid | Integer |
Explanation | |
Gets spell "difficulty" based on spell circle number (config/circles.cfg). | |
Notes: spells.cfg files define spells and spell ids. "Difficulty" values are used in the function CheckSkill() | |
Return values | |
Integer difficulty value | |
Errors | |
"Invalid parameter" | |
"No such spell" | |
"Spell ID out of range" | |
Related Configs | |
circles.cfg |
GetVital( character, vitalname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
vitalname | String (vital name) |
Explanation | |
Gets the current value of "vitalname" on "character". | |
Return values | |
Integer current value of the vital on success or Error | |
Errors | |
"Invalid parameter type" including if vitalname was not found as a vital | |
Related | |
Character | |
Related Configs | |
vitals.cfg |
GetVitalMaximumValue( character, vitalname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
vitalname | String (vital name) |
Explanation | |
Gets the maximum value of "vitalname" on "character" | |
Return values | |
Integer maximum value of the vital on success or Error | |
Errors | |
"Invalid parameter type" including if vitalname was not found as a vital | |
Related | |
Character | |
Related Configs | |
vitals.cfg |
GetVitalRegenRate( character, vitalname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
vitalname | String (vital name) |
Explanation | |
Returns the regeneration rate for "vitalname" on "character" | |
Return values | |
Integer regeneration rate of the vital on success | |
Errors | |
"Invalid parameter type" including if vitalname was not found as a vital | |
Related | |
Character | |
String | |
Related Configs | |
vitals.cfg |
GrantPrivilege( character, privilege ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
privilege | String |
Explanation | |
Grants a privilege to a character. | |
Notes: see some other doc for a list of privs and their functions | |
Return values | |
1 f the privilege was granted successfully | |
Errors | |
"Invalid parameter" | |
Related | |
Character |
HarvestResource( resource, x, y, b, n ) | |
---|---|
Parameters: | |
Name | Type |
resource | String |
x,y | Integer world coordinates |
b | Integer |
n | Integer |
Explanation | |
Attempts to harvest a resource from a location. | |
Notes: Harvests a*b resource units, where 0 is less than or equal to 'a' and 'a' is less than or equal to n. Thus you can request 0-40 units in groups of 5, etc. | |
Return values | |
Integer number of resource units harvested if resources were harvested, or 0 if no resources were available. | |
Errors | |
"Invalid parameter" | |
"No resource by that name" | |
"No resource region at that location" | |
Related Configs | |
resource.cfg |
HealDamage( Character, Hits ) | |
---|---|
Parameters: | |
Name | Type |
Character | Character Reference |
Hits | Integer (0..255) |
Explanation | |
Increases a character's hit points, up to the character's maximum. | |
Notes: Invokes Reputation system effects. | |
Return values | |
1 if some part of the damage could be healed. | |
Errors | |
"Invalid parameter" | |
Related | |
Character |
ListAccounts() | |
---|---|
Explanation | |
Gets a list of all account names. | |
Return values | |
Array of Strings of account names. | |
Related | |
Array | |
Account |
ListEquippedItems( who ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
Explanation | |
Returns a list of items current equipped on character referenced by "who" | |
Return values | |
Array of Item References equipped on "who" | |
Errors | |
"Invalid parameter" | |
Related | |
Character | |
Item | |
Array |
ListGhostsNearLocation( x, y, z, range ) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
range | Integer |
Explanation | |
Searches the world for ghosts within "range" squares of (x,y,z). | |
Notes: 19 is used for the z-range. Rectangular range is used - x-range and y-range are compared independently This call is equivalent to ListMobilesNearLocationEx( x,y,z, range, LISTEX_GHOST ). For this reason, this function is depreciated. | |
Return values | |
An array of Character References of ghosts found near the location on success | |
Errors | |
"Invalid parameter" | |
Related | |
Character |
ListGuilds() | |
---|---|
Explanation | |
Gets a list of all guilds. | |
Return values | |
An Array of Guild References. | |
Related | |
Guild | |
Array |
ListHostiles( character, range := 20, flags := 0 ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
range | integer (optional, default=20) |
flags | integer (optional, default=0) |
Explanation | |
Gets a list of Character References that are hostile (i.e. attacking) "character" | |
Notes: from uo.em constants: | |
const LH_FLAG_LOS := 1; // only include those in LOS const LH_FLAG_INCLUDE_HIDDEN := 2; // include hidden characters | |
Will NOT find "concealed" characters. | |
Return values | |
Array of Character References hostile to "character" | |
Errors | |
"Invalid parameter" | |
Related | |
Character | |
Array |
ListItemsAtLocation( x, y, z ) | |
---|---|
Parameters: | |
Name | Type |
x | integer |
y | integer |
z | integer |
Explanation | |
Returns a list of items at the specified x,y,z. test ret != 0 | |
Return values | |
<uninitialized object> if invalid parameters, or Array of Item References of items at that location | |
Errors | |
none | |
Related | |
Item | |
Array |
ListItemsNearLocation( x, y, z, range ) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
range | Integer |
Explanation | |
Searches the world for items within range squares of (x,y,z). | |
Notes: 10 is used for the z-range. Rectangular range is used - x-range and y-range are compared independently | |
Return values | |
An Array of Item References of items found near the location. | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
Item |
ListItemsNearLocationOfType( x, y, z, range, objtype ) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
range | Integer |
objtype | Integer |
Explanation | |
Searches the world for items within range squares of (x,y,z) of type objtype. | |
Notes: 19 is used for the z-range. Rectangular range is used: distance is the greater of x-distance and y-distance. | |
Return values | |
An Array of Item References of items matching "objtype" found near the location. | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
Item |
ListItemsNearLocationWithFlag(x,y,z,range,flags) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
range | Integer |
flags | Integer |
Explanation | |
Gets an array of itemrefs if its graphic matches any of the OR'd flags passed. "flags" here are tiledata.mul flags for the item's graphic. | |
Tiledata.mul flags: | |
const TILEDATA_FLAG_BACKGROUND := 0x00000001; //Background const TILEDATA_FLAG_WEAPON := 0x00000002; //Weapon const TILEDATA_FLAG_TRANSPARENT := 0x00000004; //Transparent const TILEDATA_FLAG_TRANSLUCENT := 0x00000008; //Translucent const TILEDATA_FLAG_WALL := 0x00000010; //Wall const TILEDATA_FLAG_DAMAGING := 0x00000020; //Damaging const TILEDATA_FLAG_IMPASSIBLE := 0x00000040; //Impassable const TILEDATA_FLAG_WET := 0x00000080; //Wet const TILEDATA_FLAG_UNK := 0x00000100; //Unknown const TILEDATA_FLAG_SURFACE := 0x00000200; //Surface const TILEDATA_FLAG_BRIDGE := 0x00000400; //Bridge const TILEDATA_FLAG_STACKABLE := 0x00000800; //Generic/Stackable const TILEDATA_FLAG_WINDOW := 0x00001000; //Window const TILEDATA_FLAG_NOSHOOT := 0x00002000; //No Shoot const TILEDATA_FLAG_PREFIX_A := 0x00004000; //Prefix A const TILEDATA_FLAG_PREFIX_AN := 0x00008000; //Prefix An const TILEDATA_FLAG_INTERNAL := 0x00010000; //Internal (things like hair, beards, etc) const TILEDATA_FLAG_FOILIAGE := 0x00020000; //Foliage const TILEDATA_FLAG_PARTIAL_HUE := 0x00040000; //Partial Hue const TILEDATA_FLAG_UNK1 := 0x00080000; //Unknown 1 const TILEDATA_FLAG_MAP := 0x00100000; //Map const TILEDATA_FLAG_CONTAINER := 0x00200000; //Container const TILEDATA_FLAG_WEARABLE := 0x00400000; //Wearable const TILEDATA_FLAG_LIGHTSOURCE := 0x00800000; //LightSource const TILEDATA_FLAG_ANIMATED := 0x01000000; //Animated const TILEDATA_FLAG_NODIAGONAL := 0x02000000; //No Diagonal const TILEDATA_FLAG_UNK2 := 0x04000000; //Unknown 2 const TILEDATA_FLAG_ARMOR := 0x08000000; //Armor const TILEDATA_FLAG_ROOF := 0x10000000; //Roof const TILEDATA_FLAG_DOOR := 0x20000000; //Door const TILEDATA_FLAG_STAIRBACK := 0x40000000; //StairBack const TILEDATA_FLAG_STAIRRIGHT := 0x80000000; //StairRight | |
Return values | |
Array of Itemrefs | |
Errors | |
"Invalid parameter" | |
Related | |
Item | |
Array |
ListMobilesInLineOfSight( object, range ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject Reference |
range | Integer |
Explanation | |
Gets list of mobiles in line of sight of "object", maximum "range" tiles away. | |
Notes: Finds living, non-hidden mobiles within range tiles of object, that have LOS with it. | |
Return values | |
An Array of Character References on success | |
Errors | |
"Invalid parameter" | |
Related | |
UObject |
ListMobilesNearLocation( x, y, z, range ) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
range | Integer |
Explanation | |
Searches the world for mobiles within range squares of (x,y,z). | |
Notes: Finds living, non-hidden mobiles found near the location. | |
19 is used for the z-range. Rectangular range is used - x-range and y-range are compared independently | |
Return values | |
An Array of Character References | |
Errors | |
"Invalid parameter" | |
Related | |
Character | |
Array |
ListMobilesNearLocationEx( x, y, z, range, flags ) | |
---|---|
Parameters: | |
Name | Type |
x,y,z | Integer world coordinates |
range | Integer |
flags | Integer |
Explanation | |
Searches the world for mobiles within range squares of (x,y,z). | |
Notes: uo.em constants for flags - include mobile types: | |
const LISTEX_FLAG_NORMAL := 0x01; const LISTEX_FLAG_HIDDEN := 0x02; const LISTEX_FLAG_GHOST := 0x04; | |
19 is used for the z-range. Rectangular range is used - x-range and y-range are compared independently | |
Return values | |
An Array of Character References of mobiles found matching the search criteria. | |
Errors | |
"Invalid parameter" | |
Related | |
Character | |
Array |
ListMultisInBox( x1,y1,z1, x2,y2,z2 ) | |
---|---|
Parameters: | |
Name | Type |
x1,y1,x1 | integer, for north west upper corner of box |
x2,y2,z2 | integer, for south east lower corner of box |
Explanation | |
Lists all multis inside an imaginary box (where a multi must have at least one 'static' piece inside the box) | |
Return values | |
Error or Array of all multis found inside the specified box. | |
Errors | |
"Invalid parameter" | |
Related | |
House | |
Boat | |
Array |
ListObjectsInBox( x1,y1,z1, x2,y2,z2 ) | |
---|---|
Parameters: | |
Name | Type |
x1,y1,x1 | integer, for north west upper corner of box |
x2,y2,z2 | integer, for south east lower corner of box |
Explanation | |
Lists all items & mobiles inside an imaginary box. Finds both characters (PCs & NPCs) and items | |
Return values | |
Error or Array of all characters and items found inside the specified box. | |
Errors | |
"Invalid parameter" | |
Related | |
Item | |
Character | |
Array |
MoveCharacterToLocation( character, x, y, z, flags := 0 ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
x,y,z | Integer world coordinates |
flags | Integer (optional) |
Explanation | |
Moves character to a location in the world. | |
Notes: The if MOVECHAR_FORCELOCATION is not passed with flags, z-coordinate passed is used as a hint. The character will be placed on the the ground, or on an item, or on a ship, just as if the character had tried to walk there. If it is set, the z location of the character is forced. | |
uo.em constant for flags: const MOVECHAR_FORCELOCATION := 0x40000000; | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
"Can't go there" | |
Related | |
Character |
MoveItemToContainer( item, container, x := -1, y := -1 ) | |
---|---|
Parameters: | |
Name | Type |
item | Item Reference |
container | Container Reference |
x,y | Integer coords inside container gump (optional) |
Explanation | |
Moves an item into a container. | |
Notes: If the default values for x and y are passed, or if x or y does not fall within the legal bounds for a container as found in ITEMDESC.CFG, then a random location within the container will be chosen. | |
Calls the item's unequiptest and unequip scripts, if any. | |
Calls the container's canInsert and onInsert scripts, if any. | |
Calls the item's original container's (if any) canRemove and onRemove scripts, if any. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"That is immobile" | |
"That item is being used." | |
"Non-container selected as target" | |
"Can't put a container into itself" | |
"Can't put a container into an item in itself" | |
"Container is too full to add that" | |
"Item cannot be unequipped" | |
Related | |
Item | |
Container |
MoveItemToLocation( item, x, y, z, flags ) | |
---|---|
Parameters: | |
Name | Type |
item | Item Reference |
x,y,z | Integer world coordinates |
flags | Integer |
Explanation | |
Moves an item to a location in the world. | |
Notes: If item is equipped, its unequiptest and unequip scripts are run, if any. | |
uo.em constants for flags: | |
const MOVEITEM_NORMAL := 0; const MOVEITEM_FORCELOCATION := 0x40000000; | |
If FORCELOCATION is not set, the z value is used as a hint, just as if the item was moved there by the cursor. The item will be placed on top of another item, multi, etc. If the flag is set, the z position is forced. | |
Calls the item's original container's canRemove and onRemove scripts, if any | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"Invalid location selected" | |
"Location specified is out of bounds" | |
"That item is being used." | |
"That is immobile" | |
Related | |
Item |
OpenPaperdoll( towhom, forwhom ) | |
---|---|
Parameters: | |
Name | Type |
towhom | Character Reference |
forwhom | Character Reference |
Explanation | |
Sends the paperdoll gump to a character. | |
Notes: "towhom" gets the paperdoll for character "forwhom" | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
Related | |
Character |
PerformAction( character, action ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
action | Integer |
Explanation | |
Causes character to perform an action, such as Bow or Salute. | |
Notes: see client.inc for valid action IDs | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
Related | |
Character |
PlayLightningBoltEffect( center_object ) | |
---|---|
Parameters: | |
Name | Type |
center_object | UObject Reference |
Explanation | |
Plays a lightning bolt effect centered on the object. | |
Return values | |
1 on success | |
Errors | |
none (returns 0 if invalid parameter). | |
Related | |
UObject |
PlayMovingEffect( source, target, effect, speed, loop := 0, explode := 0 ) | |
---|---|
Parameters: | |
Name | Type |
source | UObject Reference |
target | UObject Reference |
effect | Integer |
speed | Integer (0..255) |
loop | Integer (Optional, 0..255) |
explode | Integer (Optional, 0..255) |
Explanation | |
Causes a moving effect to be played, travelling from source to destination | |
Notes: effect = an item graphic number (the first in a series if an animation) speed = how fast the effect should travel. loop = 0/1 loop the animation? explode = 0/1 show an explosion at destination at the end of the effect? | |
Return values | |
1 on success | |
Errors | |
none (returns 0 if invalid parameter) | |
Related | |
UObject |
PlayObjectCenteredEffect( uobject, effect, speed, loop := 0) | |
---|---|
Parameters: | |
Name | Type |
uobject | UObject Reference |
effect | Integer |
speed | Integer (0..255) |
loop | Integer (Optional, 0..255) |
Explanation | |
Causes an effect to be played, centered on uobject, which follows uobject if it moves. | |
Notes: see PlayMovingEffect for effect, speed, loop description This is used for effects like flame strike and reactive armor. | |
Return values | |
1 on success | |
Errors | |
none (returns 0 on invalid parameter) | |
Related | |
UObject |
PlaySoundEffect( object, effect ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject Reference |
effect | Integer |
Explanation | |
Causes a sound effect to be played, centered on object. | |
Notes: see client.inc for sound effect constants | |
All clients within a range of 18 tiles are sent this command. Use PlaySoundEffectPrivate() for private sounds. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
Related | |
UObject |
PlaySoundEffectPrivate( object, effect, playfor ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject Reference |
effect | Integer |
playfor | Character Reference |
Explanation | |
Plays a sound effect only heard by "playfor", centered around "object" | |
Notes: see client.inc for sound IDs (or InsideUO) | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
Related | |
Character | |
UObject |
Polcore() | |
---|---|
Explanation | |
Returns a Polcore object. See object reference for object methods. | |
Return values | |
Polcore object reference | |
Related | |
Polcore |
PrintTextAbove( above_object, text, font := _DEFAULT_TEXT_FONT, color := _DEFAULT_TEXT_COLOR ) | |
---|---|
Parameters: | |
Name | Type |
above_object | UObject Reference |
text | String |
font | Integer (optional) |
color | Integer (optional) |
Explanation | |
Prints text above an object, as if spoken. | |
Notes: see client.inc for suitable values for font and color | |
Return values | |
0 if text was too long (>200 characters) | |
1 on success | |
Errors | |
"A parameter was invalid" | |
Related | |
UObject |
PrintTextAbovePrivate( above_object, text, character, font := _DEFAULT_TEXT_FONT, color := _DEFAULT_TEXT_COLOR ) | |
---|---|
Parameters: | |
Name | Type |
above_object | UObject Reference |
text | String |
character | Character Reference |
font | Integer (optional) |
color | Integer (optional) |
Explanation | |
Causes text to be displayed above "above_object", as if spoken. This text will only be seen by a single character referenced by "character" | |
Notes: see client.inc for suitable values for font and color | |
Return values | |
0 if text was too long (>200 characters) | |
1 on success | |
Errors | |
"A parameter was invalid" | |
Related | |
UObject | |
Character |
RecalcVitals( character ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
vitalname | String (vital name) |
Explanation | |
Recalculates regen rates and maximum values from the exported functions in vitals.cfg for all vitals on a mobile | |
Call this if you changed the regen rates or maximums for a vital, or the intrinsic modifier exported function for an attribute. | |
Return values | |
true | |
Errors | |
"Mobile must not be offline" | |
"Invalid parameter type" | |
Related | |
Character | |
Related Configs | |
vitals.cfg |
RegisterForSpeechEvents( at_object, range, flags := 0 ) | |
---|---|
Parameters: | |
Name | Type |
at_object | UObject Reference |
range | Integer |
flags | Integer (optional) |
Explanation | |
Player-character speech spoken within "range" tiles of "at_object" will generate speech events, which are sent to "at_object"'s control script (use wait_for_event() to retreive the event). | |
uo.em constants for flags: const LISTENPT_HEAR_GHOSTS := 0x01; | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"Already registered for speech events" | |
Related | |
UObject | |
Item | |
Character |
ReleaseItem( item ) | |
---|---|
Parameters: | |
Name | Type |
item | Item Reference |
Explanation | |
Releases an item previously reserved by ReserveItem(). | |
Return values | |
1 on success or Error | |
Errors | |
"That item is not reserved by this script." if item is not reserved (using ReserveItem()) | |
"That item is not reserved." if the item is not "in use" | |
"Invalid parameter" | |
Related | |
Item |
RequestInput(character, item, prompt ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
item | Item Reference |
prompt | String |
Explanation | |
Prompts a player for input, and waits for the player to type a line of text. | |
Notes: "item" is a placeholder - the client needs it, but it is not used internally. Typically some related item will be passed. | |
Return values | |
A String containing the next line of text from the client's keyboard on success. Returns 0 (int) if control characters were found in the string. | |
Errors | |
"Invalid parameter" | |
"No client attached" | |
"Another script has an active prompt" | |
Related | |
Character | |
Item |
ReserveItem( item ) | |
---|---|
Parameters: | |
Name | Type |
item | Item Reference |
Explanation | |
Reserves an item so no other script or client may manipulate it until ReleaseItem() is called. Use this function to prevent nasty exploits like this: | |
if(!ReserveItem(item)) SendSysMessage(who, "You cannot use that."); return; endif | |
Return values | |
1 if already reserved, 1 on success, or Error | |
Errors | |
"That item is already being used." | |
"Invalid parameter" | |
Related | |
Item |
RestartScript( npc ) | |
---|---|
Parameters: | |
Name | Type |
npc | Character Reference (must be an NPC) |
Explanation | |
Stops the current master script for an NPC, and starts a new one. | |
npc.script can be assigned before calling this, to change the master script for an NPC. | |
Return values | |
1 if the script was started | |
Errors | |
"Invalid parameter" | |
"RestartScript only operates on NPCs" | |
Related | |
NPC |
Resurrect( ghost, flags := 0 ) | |
---|---|
Parameters: | |
Name | Type |
ghost | Character Reference |
flags | integer flags |
Explanation | |
Resurrects a ghost. Checks to see if the location occupied by the ghost is valid for an alive character first unless flags == RESURRECT_FORCELOCATION. (Be very careful with this unless you like exploits) | |
flags: const RESURRECT_FORCELOCATION := 0x01; | |
Return values | |
1 if the ghost was resurrected successfully | |
Errors | |
"Invalid parameter type" | |
"That is not dead" | |
"That location is blocked" | |
Related | |
Character |
RevokePrivilege( character, privilege ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
privilage | String |
Explanation | |
Revokes a privilege from a character. | |
Return values | |
1 if the privilege was revoked, or if it was not previously granted. | |
Errors | |
"Invalid parameter" | |
Related | |
Character |
SaveWorldState() | |
---|---|
Explanation | |
Saves the current world state. | |
Return values | |
struct { CleanObjects, DirtyObjects, ElapsedMilliseconds } | |
Errors | |
"Exception during world save" | |
"pol.cfg has InhibitSaves=1" |
SelectColor( character, item ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
item | Item Reference |
Explanation | |
Sends a color chooser gump to character. | |
Notes: Function blocks until character cancels or selects a color from the chooser gump. No validation is done by the core. Might be useful to check if the color returned is >1001 (out of range for the chooser gump). | |
Return values | |
Integer of selected color. use item.color = return_value to set. | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
"Client is already selecting a color" | |
Related | |
Character | |
Item |
SelectMenuItem2( character, menuname ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
menuname | String name of the static menu in menus.cfg, or a dynamic menu reference |
Explanation | |
Displays an object menu on the character's client for the player to select from. | |
Notes: Can take a static or dynamic menu. | |
Return values | |
0 if the menu was cancelled, or the character's client disconnected. | |
A Structure on success: .objtype = Integer object type of the selection. .index = 1-based index within the menu of the selection. .graphic = Integer graphic of the object. .color = color of the object. | |
Errors | |
"Invalid parameter" | |
"Client is busy, or menu is empty" | |
"Menu too large" | |
Related | |
Character | |
Related Configs | |
menus.cfg |
SendBuyWindow( character, container, vendor, items ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference to player |
container | Container Reference ( vendor 'for sale items' container ) |
vendor | Character Reference to NPC vendor |
item | Container Reference (vendor 'player bought items' container) |
Explanation | |
Sends the "buy scroll" gump to a player to choose items to buy. | |
Notes: Pretty nasty function. Containers should be in storage areas. | |
Return values | |
1 on success | |
Errors | |
"A parameter was invalid" | |
"No client connected to character" | |
"Parameter 1 invalid" | |
"Parameter 2 invalid" | |
"Parameter 3 invalid" | |
"Too much crap in vendor's inventory!" (message exceeds 2000 byte buffer) | |
Related | |
Character | |
Container |
SendDialogGump( who, layout, textlines ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
layout | String Array |
textlines | String Array |
Explanation | |
Sends a generic gump window to "who" and waits for the user's input. | |
Notes: "layout" is an array of strings with each string a gump layout directive. "textlines" is an array of strings with text that is displayed on the gump. "Layout" references this array in a 0-based manner. Creating these arrays is difficult and hard to debug. See the "gumps" package for a more user- friendly interface to gumps. | |
Return values | |
the return value is a dictionary. return[0] contains the button ID the user used to close the gump. 0 is returned if the gump was cancelled. return.keys contains the IDs for the radio buttons, checkboxes, and textentries set when the gump was returned. Note control characters are stripped from the text input lines. | |
Errors | |
"Invalid parameter" | |
"No client attached" | |
"Buffer length exceeded" (32k byte) | |
Related | |
Character | |
Dictionary | |
Array |
SendEvent( npc, event ) | |
---|---|
Parameters: | |
Name | Type |
npc | Character Reference to an NPC |
event | integer |
Explanation | |
Sends the integer event (either a combination of system events, or one user-defined event) to the NPC's control script. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
"That mobile is not an NPC" | |
"That NPC doesn't have a control script" | |
Related | |
NPC |
SendInstaResDialog( character ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
Explanation | |
Character's screen fades to black, "You are Dead" appears, Character gets menu choice for Instares. | |
Notes: (Rac) Could not get menu dialog to appear, "Play as ghost" returned to server no matter what. "AssumePlayAsGhost" in uo.cfg made no difference. | |
Return values | |
Integer with choice. 1 = instares, 2 = ghost | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
"Client busy with another instares dialog" | |
Related | |
Character |
SendOpenBook( character, book ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
book | Item Reference (Book object only) |
Explanation | |
Sends a book gump to the character. | |
Notes: Need more info on book objects. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"No active client" | |
"book.GetNumLines() did not return an Integer" | |
"book.GetContents() must return an array" | |
"Buffer overflow" | |
Related | |
Character | |
Item | |
Array |
SendOpenSpecialContainer( character, container ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
container | Container Reference |
Explanation | |
Sends an open container gump to the character. | |
Notes: DANGEROUS FUNCTION. Normally only used to show "inaccessable" containers like bankboxes. If used on normal containers, it allows the character to both view and change the contents. See SendViewContainer(). | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
"That isn't a container" | |
Related | |
Character | |
Container |
SendPacket( to_whom, packet_hex_string ) | |
---|---|
Parameters: | |
Name | Type |
to_whom | Character Reference |
packet_hex_string | String |
Explanation | |
Sends the hex string to the character as a binary packet. | |
Notes: Development function, use at your own risk. The string is in a form like: SendPacket(who,"BC0401") would cause the season to change to "desolation" | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
Related | |
Character |
SendQuestArrow(to_whom, x := -1, y := -1) | |
---|---|
Parameters: | |
Name | Type |
to_whom | Character reference the arrow shows to |
x,y | Integer world coordinates |
Explanation | |
Sends a "quest arrow" to the player that points at x,y | |
Passing 'x' and 'y' within map bounds will set the Quest Arrow to point at that location. | |
Passing -1 as 'x' and 'y' (ie. by just called SendQuestArrow(to_whom)) will remove it. | |
Return values | |
1 on success | |
Errors | |
"No client attached" | |
"Invalid parameter" | |
Related | |
Character |
SendSellWindow( character, vendor, i1, i2, i3 ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
vendor | Character Reference |
i1 | Container Reference |
i2 | Container Reference |
i3 | Container Reference |
Explanation | |
Sends a sell scroll gump to "character" using "vendor" as the merchant. | |
Notes: i1 = vendor's "For sale" item containter i2 = vendor's "Bought from player" item container i3 = vendor's "Buyable" item container | |
Return values | |
1 on success | |
Errors | |
"A parameter was invalid" | |
"No client connected to character" | |
"Parameter 1 invalid" if !(vendor.isa(POLCLASS_NPC)) | |
"Parameter 2 must be a container" | |
"Character has no backpack" | |
Related | |
Character | |
Container |
SendSkillWindow( towhom, forwhom ) | |
---|---|
Parameters: | |
Name | Type |
towhom | Character Reference |
forwhom | Character Reference |
Explanation | |
Sends a skills scroll gump to "towhom" | |
Notes: The skills belong to "forwhom" and are sent to "towhom" | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
Related | |
Character |
SendStringAsTipWindow( character, text ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
text | String |
Explanation | |
Sends "text" to "character" in a tip-window gump. | |
Text needs to be in "MAC" format: CR at the end of each line. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
Related | |
Character |
SendSysMessage( character, text, font := _DEFAULT_TEXT_FONT, color := _DEFAULT_TEXT_COLOR ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
text | String |
font | Integer (optional) |
color | Integer (optional) |
Explanation | |
Displays a System Message in the lower-left corner of character's player's screen. | |
Notes: see client.inc for suitable values of font and color. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"Mobile has no active client" | |
Related | |
Character |
SendTextEntryGump( who, line1, cancel := TE_CANCEL_ENABLE, style := TE_STYLE_NORMAL, maximum := 40, line2 := "" ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
cancel | Integer (TE_CANCEL_DISABLE or TE_CANCEL_ENABLE) |
style | Integer (TE_STYLE_DISABLE or TE_STYLE_NORMAL or TE_STYLE_NUMERICAL) |
maximum | Integer |
line2 | String |
Explanation | |
Sends a text-entry gump to "who" with the specified option, style, and informational string. | |
Notes: uo.em constants for this function: | |
const TE_CANCEL_DISABLE := 0; const TE_CANCEL_ENABLE := 1; const TE_STYLE_DISABLE := 0; const TE_STYLE_NORMAL := 1; const TE_STYLE_NUMERICAL:= 2; | |
Return values | |
A String on success 0 if gump was cancelled. | |
Errors | |
"Invalid parameter" | |
"No client attached" | |
Related | |
Character |
SendViewContainer( character, container ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
container | Container Reference |
Explanation | |
Sends the container's open gump and contents to the character. | |
Notes: Use this for normal containers. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
"That isn't a container" | |
Related | |
Character | |
Container |
SetAttributeBaseValue( character, attrname, basevalue_tenths ); // obsoletes SetRawSkill | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
attrname | String (attribute name) |
basevalue_tenths | Integer (0..60000) |
Explanation | |
Sets the "base" value of "attrname" on "character" | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
Related | |
Character | |
Related Configs | |
attributes.cfg |
SetAttributeTemporaryMod( character, attrname, tempmod_tenths ); // obsoletes mob.strength_mod etc | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
attrname | String (attribute name) |
tempmod_tenths | Integer (-30000..30000) |
Explanation | |
Sets the "temporary modification" value of "attrname" on "character" | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" including if attrname was not found as an attribute | |
Related | |
Character | |
Related Configs | |
attributes.cfg |
SetName( object, name ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject Reference |
name | String |
Explanation | |
Sets name of item or mobile. | |
Return values | |
1 on success | |
Errors | |
none (returns 0 on failure) | |
Related | |
UObject |
SetObjProperty( object, propertyname, propertyvalue ) | |
---|---|
Parameters: | |
Name | Type |
object | UObject Reference |
propertyname | String |
propertyvalue | a script object (could be string, int, real, array, etc) |
Explanation | |
Sets a custom data property on an object. This data will be saved with the object, for later retrieval with GetObjProperty. propertyname is case-sensative | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
Related | |
UObject |
SetRegionLightLevel( regionname, lightlevel ) | |
---|---|
Parameters: | |
Name | Type |
regionname | String |
lightlevel | Integer (0..30) |
Explanation | |
Sets the light level of a region by name. | |
Notes: lightlevel must be a value between 0 and 30 where 0 is daylight and 30 is near-total darkness. regionname must match a region name from REGIONS\LIGHT.CFG. | |
Return values | |
1 if the light level was set successfully | |
Errors | |
"Invalid Parameter type" | |
"Light Level is out of range" | |
"Light region not found" | |
Related Configs | |
light.cfg |
SetRegionWeatherLevel( region, type, severity, aux := 0, lightoverride := -1) | |
---|---|
Parameters: | |
Name | Type |
region | string |
type | integer |
severity | integer |
aux | integer (optional, see above for default values) |
lightoverride | integer (optional, see above for default values) |
Explanation | |
Sets the weather effects for a given weather region. | |
Notes: Weather values by Tharaxis type: 0 - light rain ("It starts to rain") 1 - rain/thunder ("A fierce storm approaches") 2 - snow ("It begins to snow") 3 - brewing storm - ("A storm is brewing") 255 - None (Turns sound effects off) severity:is set on a 0-70 scale, 70=torrential rain, 0=light drizzle. aux: ??? lightoverride: light level amount overrides current level. -1 means no override. | |
Return values | |
1 on success | |
Errors | |
"Invalid Parameter type" | |
"Weather region not found" if "region" not found in regions/weather.cfg | |
Related Configs | |
weather.cfg |
SetScriptController( who ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
Explanation | |
Set the "controller" of the current script to "who". | |
Notes: This is used to know, for instance, who the fire field walk-on script belongs to so that the reputation/criminal system knows who to punish. | |
pass 0 to clear the script controller. | |
Return values | |
Character Reference of the "old" controller of the script. | |
Errors | |
none (instead returns 0 on failure) | |
Related | |
Character |
SetVital( character, vitalname, value ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
vitalname | String (vital name) |
value | Integer (in hundreths) |
Explanation | |
Sets the current value for "vitalname" on "character" in hundreths. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" including if vitalname was not found as a vital | |
Related | |
Character | |
Related Configs | |
vitals.cfg |
Shutdown() | |
---|---|
Explanation | |
Shuts down the server | |
Notes: Disconnects all clients and saves the world state. | |
Return values | |
1 always |
SpeakPowerWords( who, spellid ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
spellid | Integer |
Explanation | |
Forces character "who" to speak the spell power words as defined in spells.cfg. | |
Notes: spells.cfg files define spells and spell ids. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
"No such spell" | |
"Spell ID out of range" | |
Related | |
Character | |
Related Configs | |
spells.cfg |
StartSpellEffect( who, spellid ) | |
---|---|
Parameters: | |
Name | Type |
who | Character Reference |
spellid | Integer |
Explanation | |
Starts the spell script as defined in spells.cfg | |
Notes: spells.cfg files define spells and spell ids. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter" | |
"No such spell" | |
"Spell ID out of range" | |
Related | |
Character | |
Related Configs | |
spells.cfg |
SubtractAmount( item, amount ) | |
---|---|
Parameters: | |
Name | Type |
item | Item Reference |
amount | Integer |
Explanation | |
Decreases the stack size of an item. If nothing is left, deletes the item. | |
Return values | |
1 on success | |
Errors | |
"Invalid parameter type" | |
"That item is being used." | |
Related | |
Item |
Target( by_character, options := TGTOPT_CHECK_LOS+TGTOPT_NEUTRAL) | |
---|---|
Parameters: | |
Name | Type |
by_character | Character Reference |
options | Integer (Optional) |
Explanation | |
Sends a target cursor to "by_character"'s client, and waits for the player to target something. | |
Notes: Options control Line-of-sight checking. | |
0 is returned if the character does not have line-of-sight to the object. | |
uo.em constants for options, just add together non-mutually exclusive options. | |
const TGTOPT_CHECK_LOS := 0x0001; const TGTOPT_NOCHECK_LOS := 0x0000; // to be explicit const TGTOPT_HARMFUL := 0x0002; const TGTOPT_NEUTRAL := 0x0000; // to be explicit const TGTOPT_HELPFUL := 0x0004; | |
The first 2 options specify if Line-of-sight to the targetting obejct should be checked or not. The last 3 options are involved with the reputation system. Use TGTOPT_HARMFUL if the effect that uses the target is a hostile action (like casting fireball), use _HELPFUL for things like healing and use _NEUTRAL for reputation-neutral actions. | |
Return values | |
0 if user cancelled, or nothing targetted, or no LOS to target (if option is selected) | |
UObject Reference on success (item or character or multi) | |
Errors | |
"Invalid parameter type" | |
"No client connected" | |
"Client busy with another target cursor" | |
Related | |
UObject | |
Character |
TargetCoordinates( Character ) | |
---|---|
Parameters: | |
Name | Type |
Character | Character Reference |
Explanation | |
Sends a target cursor to a character's client, and waits for the player to target a ground tile. | |
Notes: Line-of-sight is not checked. | |
Return values | |
A Structure on success: members: structure.x,structure.y,structure.z - containing the location targetted. structure.objtype - containing the objtype of the static object targetted. Not always present members: structure.item contains an Item Reference to a dynamic item targetted. structure.mobile contains a Character Reference to a mobile targetted. | |
0 if the target cursor was cancelled or the client disconnected. | |
Errors | |
"Invalid parameter type" | |
"Mobile has no active client" | |
"Client has an active target cursor" | |
Related | |
Character |
TargetMultiPlacement( character, objtype, flags := 0 ) | |
---|---|
Parameters: | |
Name | Type |
character | Character Reference |
objtype | Integer |
flags | Integer (optional) |
Explanation | |
Sends character a "ghost" multi to select placement location in the world. | |
Notes: objtype must be from an itemdesc.cfg entry with a Boat or House type. | |
boats only constants for flags: | |
const CRMULTI_FACING_NORTH := 0x0000; const CRMULTI_FACING_EAST := 0x0100; const CRMULTI_FACING_SOUTH := 0x0200; const CRMULTI_FACING_WEST := 0x0300; | |
For House target placement, flags should == 0. | |
Return values | |
A Structure (x,y,z) containing the location targetted on success | |
Errors | |
"Invalid parameter type" | |
"No client attached" | |
"Client busy with another target cursor" | |
"Object Type is out of range for Multis" | |
Related | |
House | |
Boat | |
Character |
If you know if any information is incorrect on these pages, mail your corrections to racalac@polserver.com
Copyright ©2003-2011 David Carpman, all rights reserved. DO NOT REPRODUCE, MIRROR, ALTER, SPINDLE, MUTILATE, OR SIT ON.