mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
event - id of the game event
bgflag - bitmask, used to set which battleground(s) give extra honor/reputation when the event is active. To add extra honor on a battleground, use 2 ^ bgTypeId as mask. Multiple battlegrounds can be set by logical 'or' ('|') operation.
You will need database data for the table, please check trinitydatabase.org.
--HG--
branch : trunk
5 lines
202 B
SQL
5 lines
202 B
SQL
CREATE TABLE `game_event_battleground_holiday` (
|
|
`event` int(10) unsigned NOT NULL,
|
|
`bgflag` int(10) unsigned NOT NULL default '0',
|
|
PRIMARY KEY (`event`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |