Difference between revisions of "FormList"
Jump to navigation
Jump to search
added some common uses
imported>DewiMorgan (→See Also: +addformtoformlist) |
imported>Omzy (added some common uses) |
||
Line 1: | Line 1: | ||
The '''FormList''' object is a list of other forms (base objects). Other objects can use these lists for a variety of purposes. The | ==Description== | ||
The '''FormList''' object is a list of other forms (base objects). Other objects can use these lists for a variety of purposes. | |||
==Common Uses in the GECK== | |||
*The list of food or drink items that belong in a consumable category (e.g. alcoholic drinks). | |||
*The list of [[ArmorAddons]] for a suit of armor. | |||
*The list of ingredients in custom weapon recipes. | |||
*The list of weapons that belong in a weapons category (e.g. hand-to-hand weapons). | |||
*The list of residents of a township or territory. | |||
*The list of objects that can be used to repair an object. | |||
=='''FormList Dialog'''== | =='''FormList Dialog'''== | ||
Line 10: | Line 19: | ||
== Notes == | == Notes == | ||
* Form lists can also be used in place of [[Ammo]] entries for [[Weapons|Weapon]] items. | * Form lists can also be used in place of [[Ammo]] entries for [[Weapons|Weapon]] items. | ||
* If using a form list in a condition that runs continuously (such as on an Ability Game Effect), it may be useful to optimize the list, by sorting the most frequently check items to the top of the list. If the list has 60 forms in it, and the forms usually checked for are at the bottom of the list, the game has to check every entry above those forms every time the condition runs. In most cases, though, this effect will be minimal. | * If using a form list in a condition that runs continuously (such as on an Ability Game Effect), it may be useful to optimize the list, by sorting the most frequently check items to the top of the list. If the list has 60 forms in it, and the forms usually checked for are at the bottom of the list, the game has to check every entry above those forms every time the condition runs. In most cases, though, this effect will be minimal. |