Battlemaster entry 548

From Project Skyfire
Revision as of 20:06, 8 August 2021 by Admin (talk | contribs) (Add content and update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Back to world database list of tables.


The `battlemaster_entry` table

Holds information on which NPC can start what battleground or arena.


Structure

Field Type Attributes Key Null Default Extra Comment
entry mediumint(8) unsigned PRI NO 0 Entry of a creature
bg_template mediumint(8) unsigned NO 0 Batleground template id


DB Structure

CREATE TABLE `battlemaster_entry` (
	`entry` MEDIUMINT NOT NULL DEFAULT '0' COMMENT 'Entry of a creature',
	`bg_template` MEDIUMINT NOT NULL DEFAULT '0' COMMENT 'Battleground template id',
	PRIMARY KEY (`entry`) USING BTREE
)
COLLATE='utf8_general_ci'
ENGINE=MyISAM
;

Description of the fields

entry

The ID of the creature. See creature_template.entry

bg_template

The battleground_template.id.