Skip to content

DungeonRookieEvent

DungeonRookieEvent.xml defines time-limited rookie promotional dungeon events: rookie conditions, parcel rewards, sample event schedules, and event dialogs.

VersionStatus
v92Full
v90-
v86-

Section: dungeonRookieEvent Operations: config File organization: SingleFile — DungeonRookieEvent.xml Sync: Server-only — no client DataCenter folder exists.


spec:
version: "1.0"
schema: v92
dungeonRookieEvent:
config:
clearCount: 5
parcel:
sender: "@DungeonRookieEvent:sender"
title: "@DungeonRookieEvent:title"
msg: "@DungeonRookieEvent:msg"
sampleEvents:
- dungeonId: 3001
startTime: "2025-01-01T00:00:00"
endTime: "2025-03-01T00:00:00"
rewardItems:
- templateId: 80001
amount: 5
- templateId: 80002
amount: 10
eventDialogs:
- name: "welcome"
dialogId: 90001
- name: "complete"
dialogId: 90002

AttributeTypeSinceDescription
clearCountintv92Clear count threshold for rookie condition
parcelParcelv92Reward parcel mail configuration
sampleEventslist[SampleEvent]v92Sample dungeon event schedules
eventDialogslist[EventDialog]v92Event dialog definitions

AttributeTypeSinceRequiredDescription
senderstringv92YesMail sender name (string table reference)
titlestringv92YesMail title (string table reference)
msgstringv92YesMail body message (string table reference)
AttributeTypeSinceRequiredDescription
dungeonIdintv92YesTarget dungeon identifier
startTimestringv92YesEvent start time (ISO 8601 format)
endTimestringv92YesEvent end time (ISO 8601 format)
rewardItemslist[RewardItem]v92NoReward items for this event
AttributeTypeSinceRequiredDescription
templateIdintv92YesItem template ID
amountintv92YesItem count
AttributeTypeSinceRequiredDescription
namestringv92YesDialog name identifier
dialogIdintv92YesDialog template ID

DungeonRookieEvent.xml
└── DungeonRookieEvent
@clearCount
├── Parcel (0..1)
│ @sender @title @msg
├── SampleEvent (0..∞)
│ @dungeonId @startTime @endTime
│ └── RewardItem (0..∞)
│ @templateId @amount
└── EventDialog (0..∞)
@name @dialogId

  • Config-only entity: DungeonRookieEvent has no keyed entries. All modifications use the config: operation to set root-level attributes and nested elements.
  • Clear-and-replace: Sample events, reward items, and event dialogs all use clear-and-replace semantics. Providing any of these lists replaces the entire set.
  • Server-only: This file has no client DataCenter equivalent. It is used exclusively by the server.