Functions Documentation |
|
Name |
itmIsEnhanced |
Syntax |
(itmIsEnhanced item) -> Nil or mods |
Argument List |
item: The itemStruct of the item you want to get the enhancement status of. |
Returns |
The enhancement flag if it is enhanced, Nil otherwise. |
Category |
item, enhancement
|
Description |
Gets the enhancement flag for the item and returns it. For a list of enhancement flags, see
http://wiki.neurohack.com/transcendence/wiki/functionlegend#enhancements |
Example |
(block (testArm)
(setq testArm (itmCreate 0x4001 1))
(itmSetEnhanced testArm 0x0105)
(itmIsEnhanced testArm)
)
Returns 261. |
Comment |
Basic get function for items. |