-
Notifications
You must be signed in to change notification settings - Fork 31
DBC routes
Here are listed all routes providing information from the sqlite database of the Discover-'s SAI Editor /storage/database/sqlite_database.db file.
Majority of following routes are available for 6.x too, you need just to pass an additional parameter version
having value 6
to use 6.x DBC, example:
/dbc/achievements/9928?version=6
Available routes:
- Achievements
- Areas and Zones
- Areatriggers
- Emotes
- Factions
- Languages
- Maps
- Player Titles
- Skills
- Sound Entries
- Spells
- Taxi Nodes
Given the numeric {id} of an achievement, retrieve the couple (id, name) of the achievement:
/dbc/achievements/{id}
Given the numeric {id} of an area or zone, retrieve the row (id, m_ParentAreaID, m_AreaName_lang) of the area or zone:
/dbc/areas_and_zones/{id}
Given the numeric {id} of an areatrigger, retrieve the row (m_id, m_mapId, m_posX, m_posY, m_posZ) of the areatrigger:
/dbc/areatriggers/{id}
Given the numeric {id} of an emote, retrieve the couple (id, emote):
/dbc/emotes/{id}
Given the numeric {id} of a faction, retrieve the couple (m_ID, m_name_lang_1) of the faction:
/dbc/factions/{id}
Given the numeric {id} of a language, retrieve the couple (id, name) of the language:
/dbc/languages/{id}
Given the numeric {id} of a map, retrieve the couple (id, map) of the map:
/dbc/maps/{id}
Given the numeric {id} of a player title, retrieve the couple (id, title) of the player title:
/dbc/player_titles/{id}
Given the numeric {id} of a skill, retrieve the couple (id, name) of the skill:
/dbc/skills/{id}
Given the numeric {id} of a sound entry, retrieve the couple (id, name) of the sound entry:
/dbc/sound_entries/{id}
Given the numeric {id} of a spell, retrieve the couple (ID, spellName) of the spell:
/dbc/spells/{id}
Given the numeric {id} of a taxi node, retrieve the couple (ID, taxiName) of the taxi node:
/dbc/taxi_nodes/{id}