# Events

List of all dungeon events available to use in scripts:

  • DUNGEON_TICK - Fires when dungeon "ticks" - every second when dungeon is started (not in lobby).
  • LEVEL_STARTED - Fires when dungeon level is changed. Only new level will handle this event. Current (previous) dungeon level will not.
  • MOB_ELIMINATED - Fires when dungeon mob is removed (not killed!) from the dungeon. 🦖 Mob involved
  • MOB_KILLED - Fires when dungeon mob was killed by a player or any other source. 🦖 Mob involved Player involved
  • MOB_SPAWNED - Fires when dungeon mob was spawned. 🦖 Mob involved
  • PLAYER_DEATH - Fires when player died in the dungeon. Player involved
  • SPOT_CHANGED - Fires when spot's state is changed.
  • STAGE_FINISHED - Fires when all stage tasks are completed.
  • STAGE_STARTED - Fires when dungeon stage is changed. Only new stage will handle this event. Current (previous) dungeon stage will not.
  • TASK_CREATED - Fires when a new task is added to the current stage. Task involved
  • TASK_FINISHED - Fires when a stage task is completed. Task involved

Events are only used to run specific dungeon scripts, so you can't gather specific event data, such as mob name, task id, etc.

However there is a bunch of useful Conditions to check in scripts for specific mobs, tasks, spot states, etc.