Events
There are currently multiple places that events fire from.
Inventory Slot
Inventory
Item
The idea behind this is so that it is granular enough for developers to add in functions based on certain criteria.
E.g. certain items may have different effects when used - you would put this at the Item level. Or you may have certain effects when any weapon is equipped in the inventory - you would put this at inventory level.
On each of these, there are the following events:
OnItemDropped
Fires when the item is dropped from the Inventory
OnItemUsed
Fires when the item is used in the inventory
OnItemEquipped
Fires when the item is equipped from the inventory
OnItemUnequipped
Fires when the item is unequipped
OnItemRemoved
Fires when the item is forcibly removed from the inventory
Be warned - think about your approach prior to using the events as they all invoke at the same time. E.g. You may end up with multiple effects if you use the same function on multiple events.
Last updated