mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[7399] Rewrited BattleGround starting code - moved it to battleground class.
Fixed message color for premature finish warnings. Fixed .debug bg command won't allow 1v0 arenas now, only battlegrounds 1v0. Added battleground announcer message removed in [7384]. Patch is tested, everything worked for me. You must execute attached sql file! Signed-off-by: Triply <triply@getmangos.com>
This commit is contained in:
parent
67f307d5f7
commit
1ee2320484
29 changed files with 469 additions and 425 deletions
|
|
@ -569,9 +569,11 @@ enum MangosStrings
|
|||
// Battleground
|
||||
LANG_BG_A_WINS = 600,
|
||||
LANG_BG_H_WINS = 601,
|
||||
LANG_BG_WS_ONE_MINUTE = 602,
|
||||
LANG_BG_WS_HALF_MINUTE = 603,
|
||||
LANG_BG_WS_BEGIN = 604,
|
||||
|
||||
LANG_BG_WS_START_TWO_MINUTES = 753,
|
||||
LANG_BG_WS_START_ONE_MINUTE = 602,
|
||||
LANG_BG_WS_START_HALF_MINUTE = 603,
|
||||
LANG_BG_WS_HAS_BEGUN = 604,
|
||||
|
||||
LANG_BG_WS_CAPTURED_HF = 605,
|
||||
LANG_BG_WS_CAPTURED_AF = 606,
|
||||
|
|
@ -585,9 +587,10 @@ enum MangosStrings
|
|||
LANG_BG_WS_ALLIANCE_FLAG_RESPAWNED = 614,
|
||||
LANG_BG_WS_HORDE_FLAG_RESPAWNED = 615,
|
||||
|
||||
LANG_BG_EY_ONE_MINUTE = 636,
|
||||
LANG_BG_EY_HALF_MINUTE = 637,
|
||||
LANG_BG_EY_BEGIN = 638,
|
||||
LANG_BG_EY_START_TWO_MINUTES = 755,
|
||||
LANG_BG_EY_START_ONE_MINUTE = 636,
|
||||
LANG_BG_EY_START_HALF_MINUTE = 637,
|
||||
LANG_BG_EY_HAS_BEGUN = 638,
|
||||
|
||||
LANG_BG_AB_ALLY = 650,
|
||||
LANG_BG_AB_HORDE = 651,
|
||||
|
|
@ -600,9 +603,11 @@ enum MangosStrings
|
|||
LANG_BG_AB_NODE_DEFENDED = 658,
|
||||
LANG_BG_AB_NODE_ASSAULTED = 659,
|
||||
LANG_BG_AB_NODE_CLAIMED = 660,
|
||||
LANG_BG_AB_ONEMINTOSTART = 661,
|
||||
LANG_BG_AB_HALFMINTOSTART = 662,
|
||||
LANG_BG_AB_STARTED = 663,
|
||||
|
||||
LANG_BG_AB_START_TWO_MINUTES = 754,
|
||||
LANG_BG_AB_START_ONE_MINUTE = 661,
|
||||
LANG_BG_AB_START_HALF_MINUTE = 662,
|
||||
LANG_BG_AB_HAS_BEGUN = 663,
|
||||
LANG_BG_AB_A_NEAR_VICTORY = 664,
|
||||
LANG_BG_AB_H_NEAR_VICTORY = 665,
|
||||
LANG_BG_MARK_BY_MAIL = 666,
|
||||
|
|
@ -633,7 +638,7 @@ enum MangosStrings
|
|||
LANG_ARENA_ONE_MINUTE = 701,
|
||||
LANG_ARENA_THIRTY_SECONDS = 702,
|
||||
LANG_ARENA_FIFTEEN_SECONDS = 703,
|
||||
LANG_ARENA_BEGUN = 704,
|
||||
LANG_ARENA_HAS_BEGUN = 704,
|
||||
|
||||
LANG_WAIT_BEFORE_SPEAKING = 705,
|
||||
LANG_NOT_EQUIPPED_ITEM = 706,
|
||||
|
|
@ -685,7 +690,11 @@ enum MangosStrings
|
|||
// = 749, not used
|
||||
LANG_BATTLEGROUND_PREMATURE_FINISH_WARNING = 750, // "Not enough players. This game will close in %u mins."
|
||||
LANG_BATTLEGROUND_PREMATURE_FINISH_WARNING_SECS = 751, // "Not enough players. This game will close in %u seconds."
|
||||
// Room for batleground/arena strings 752-799 not used
|
||||
// = 752, not used
|
||||
// LANG_BG_WS_START_TWO_MINUTES = 753,
|
||||
// LANG_BG_AB_START_TWO_MINUTES = 754,
|
||||
// LANG_BG_EY_START_TWO_MINUTES = 755,
|
||||
// Room for batleground/arena strings 756-799 not used
|
||||
|
||||
// in game strings
|
||||
// = 800, not used
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue