EventMatching: Configuration
Part of EventMatching. This page covers the configuration and UI sections: achievements, timeline, root settings, filters, default images, content banners, and play guide.
Achievements
Section titled “Achievements”Section: eventMatchingAchievements
Operations: create, update, delete, upsert
Achievement entries displayed in the event matching mission list.
| Property | Type | Since | Description |
|---|---|---|---|
id | int | v92 | Achievement ID |
minLevel | int | v92 | Minimum player level |
maxLevel | int | v92 | Maximum player level |
image | string | v92 | Achievement image asset |
recommend | bool | v92 | Show in recommended list |
completeAchievement | int | v92 | Prerequisite achievement ID |
Examples
Section titled “Examples”eventMatchingAchievements: create: - id: 9008 minLevel: 65 maxLevel: 70 image: "Image_Orders.5108" recommend: true completeAchievement: 9007 update: - id: 9007 changes: maxLevel: 65 delete: - id: 9000Timeline
Section titled “Timeline”Section: eventMatchingTimeline
Operations: create, delete
Schedule when events are available. Entries are grouped by day with time windows.
EnableTime
Section titled “EnableTime”| Property | Type | Since | Description |
|---|---|---|---|
day | string | v92 | Day of week or all |
eventId | int | v92 | Event ID to schedule |
openTime | int | v92 | Opening time (HHMM format, e.g., 1200) |
closeTime | int | v92 | Closing time (HHMM format, e.g., 2400) |
Examples
Section titled “Examples”eventMatchingTimeline: create: - day: all eventId: 800021 openTime: 1200 closeTime: 2400 delete: - day: all eventId: 7005 openTime: 1700Settings
Section titled “Settings”Section: eventMatchingSettings
Operations: update
Root configuration and singleton settings. All subsections are optional — only specify what you want to change.
| Property | Type | Since | Description |
|---|---|---|---|
beginLevel | int | v92 | Minimum level to access event matching |
compensationReceivedCountResetTime | string | v92 | Daily reset time (HHMM format) |
Equipment guide
Section titled “Equipment guide”| Property | Type | Since | Description |
|---|---|---|---|
targetItemLevel | int | v92 | Target item level for equipment guide |
Reputation store teleport
Section titled “Reputation store teleport”| Property | Type | Since | Description |
|---|---|---|---|
minLevel | int | v92 | Minimum level to show teleport |
teleportContinentId | int | v92 | Teleport destination continent |
teleportPos | decimal[] | v92 | Teleport coordinates [x, y, z] |
Play guide quest notice
Section titled “Play guide quest notice”| Property | Type | Since | Description |
|---|---|---|---|
minLevel | int | v92 | Minimum level |
maxLevel | int | v92 | Maximum level |
dungeon | bool | v92 | Show dungeon quest notices |
battleField | bool | v92 | Show battlefield quest notices |
Example
Section titled “Example”eventMatchingSettings: root: beginLevel: 10 compensationReceivedCountResetTime: "0500" equipmentGuide: targetItemLevel: 412 reputationStoreTeleport: minLevel: 55 teleportContinentId: 8002 teleportPos: [50000, 20000, 3000] playGuideQuestNotice: minLevel: 65 maxLevel: 70 dungeon: true battleField: trueFilters
Section titled “Filters”Section: eventMatchingFilters
Operations: create, delete
UI filter entries for the event matching interface.
| Property | Type | Since | Description |
|---|---|---|---|
type | string | v92 | Filter type category |
index | int | v92 | Filter index (used as key) |
string | string | v92 | Filter display string |
Examples
Section titled “Examples”eventMatchingFilters: create: - type: complete index: 5 string: "@EventMatching:9006" delete: - index: 2Default images
Section titled “Default images”Section: eventMatchingDefaultImages
Operations: update
Default images displayed for event types when no specific image is set.
| Property | Type | Since | Description |
|---|---|---|---|
type | string | v92 | Event type (e.g., dungeon, battleField) |
image | string | v92 | Image asset path |
Example
Section titled “Example”eventMatchingDefaultImages: update: - type: dungeon image: "Image_Orders.4010"Content banner
Section titled “Content banner”Section: eventMatchingContentBanner
Operations: create, config
Banner event lists displayed in the content recommendation area, plus configuration for rotation timing.
EventList (create)
Section titled “EventList (create)”| Property | Type | Since | Description |
|---|---|---|---|
minLevel | int | v92 | Minimum player level |
maxLevel | int | v92 | Maximum player level |
requiredItemLevel | int | v92 | Required item level |
events | list | v92 | Banner event entries |
Banner event
Section titled “Banner event”| Property | Type | Since | Description |
|---|---|---|---|
id | int | v92 | Banner event ID |
name | string | v92 | Display name string |
subCopy | string | v92 | Subtitle text string |
type | string | v92 | Action type (e.g., teleport) |
value | string | v92 | Action value (e.g., continentId:x,y,z) |
image | string | v92 | Banner image asset |
Config
Section titled “Config”| Property | Type | Since | Description |
|---|---|---|---|
switchTime | int | v92 | Banner rotation interval in seconds |
Example
Section titled “Example”eventMatchingContentBanner: config: switchTime: 5 create: - minLevel: 65 maxLevel: 70 requiredItemLevel: 446 events: - id: 1 name: "@EventMatching:4011" subCopy: "@EventMatching:4012" type: teleport value: "7031:21374,4837,6193" image: "img://__Icon_System.PlayGuide_Banner_5"Play guide
Section titled “Play guide”Section: eventMatchingPlayGuide
Operations: create (tips), update (links), delete (tips)
Play guide UI configuration including navigation links and tutorial tips.
Link (update)
Section titled “Link (update)”Links are matched by uiName (unique key).
| Property | Type | Since | Description |
|---|---|---|---|
uiName | string | v92 | UI element name (key) |
enable | bool | v92 | Show/hide the link |
string | string | v92 | Display string |
image | string | v92 | Link image asset |
tooltip | string | v92 | Tooltip string |
Tip (create/delete)
Section titled “Tip (create/delete)”Tips are matched by tutorialId (unique key).
| Property | Type | Since | Description |
|---|---|---|---|
tutorialId | int | v92 | Tutorial ID |
Example
Section titled “Example”eventMatchingPlayGuide: links: update: - uiName: EquipmentGuide enable: false tips: create: - tutorialId: 120 delete: - tutorialId: 117