CourierState Enum
The CourierState enum defines the different states a courier can be in during.
Enum Values
| Name | Value | Description |
|---|---|---|
COURIER_STATE_INIT | -1 | Initial state, used during courier initialization. |
COURIER_STATE_IDLE | 0 | The courier is idle and not performing any actions. |
COURIER_STATE_AT_BASE | 1 | The courier is stationary at the fountain (base). |
COURIER_STATE_MOVING | 2 | The courier is moving but not currently delivering items. |
COURIER_STATE_DELIVERING_ITEMS | 3 | The courier is delivering items to a player. |
COURIER_STATE_RETURNING_TO_BASE | 4 | The courier is returning to the fountain (base). |
COURIER_STATE_DEAD | 5 | The courier has been killed and is unavailable until respawn. |
COURIER_NUM_STATES | 6 | Represents the total number of states, used for enumeration bounds. |