Table of Contents

Enum ItemOperationType

Namespace
FishMMO.Shared
Assembly
FishMMO.Shared.dll

Identifies which item operation a ItemOperationFailedBroadcast refers to.

public enum ItemOperationType : byte

Fields

BankRemove = 5

Remove (destroy) an item from the character's bank.

BankSwap = 6

Move an item into, out of, or within the bank.

EquipmentEquip = 3

Equip an item from a container.

EquipmentUnequip = 4

Unequip an item into a container.

InventoryRemove = 1

Remove (destroy/drop) an item from the character's inventory.

InventorySwap = 2

Move an item into, out of, or within the inventory.

Unknown = 0

Unspecified or unrecognised operation.

Remarks

The values mirror the server's internal ingress operation codes, but this is a separate, wire-visible enum on purpose: the server's guard codes are an implementation detail and must be free to change without silently redefining a network contract.