mirror of
https://github.com/cmangos/mangos-tbc
synced 2026-08-14 04:26:10 -04:00
BRD Grim Guzzler rework part 1
Improve Private Rocknot event in Grim Guzzler: - bar patrons behavior is scripted (emotes, reaction to event) - Phalanx is scripted (only for this event for now) will now move to bar the door - Timing was slightly adjusted - More polish in Rocknot scripting (emotes, texts, spells) Many of the data are from retail (not all like Phalanx faction and WP) Visual aspect of this patch is similar to retail as seen in: https://www.youtube.com/watch?v=3mIkmIdpEW4 (backported from 5637705)
This commit is contained in:
parent
0bc5187e5d
commit
aba606a2aa
4 changed files with 317 additions and 29 deletions
|
|
@ -286,6 +286,7 @@ UPDATE creature_template SET ScriptName='boss_coren_direbrew' WHERE entry=23872;
|
|||
UPDATE creature_template SET ScriptName='npc_grimstone' WHERE entry=10096;
|
||||
UPDATE creature_template SET ScriptName='npc_theldren_trigger' WHERE entry=16079;
|
||||
UPDATE creature_template SET ScriptName='npc_kharan_mighthammer' WHERE entry=9021;
|
||||
UPDATE creature_template SET ScriptName='npc_phalanx' WHERE entry=9502;
|
||||
UPDATE creature_template SET ScriptName='npc_rocknot' WHERE entry=9503;
|
||||
UPDATE creature_template SET ScriptName='npc_marshal_windsor' WHERE entry=9023;
|
||||
UPDATE creature_template SET ScriptName='npc_dughal_stormwing' WHERE entry=9022;
|
||||
|
|
@ -2405,7 +2406,7 @@ INSERT INTO script_texts (entry,content_default,sound,type,language,emote,commen
|
|||
|
||||
-- -1 230 000 BLACKROCK DEPTHS
|
||||
INSERT INTO script_texts (entry,content_default,sound,type,language,emote,comment) VALUES
|
||||
(-1230000,'Ah, hits the spot!',0,0,0,0,'rocknot SAY_GOT_BEER'),
|
||||
(-1230000,'Ah, hits the spot!',0,0,5,0,'rocknot SAY_GOT_BEER'),
|
||||
(-1230001,'Come to aid the Throne!',0,1,0,0,'dagran SAY_AGGRO'),
|
||||
(-1230002,'Hail to the king, baby!',0,1,0,0,'dagran SAY_SLAY'),
|
||||
(-1230003,'You have challenged the Seven, and now you will die!',0,0,0,0,'doomrel SAY_DOOMREL_START_EVENT'),
|
||||
|
|
@ -2445,6 +2446,12 @@ INSERT INTO script_texts (entry,content_default,sound,type,language,emote,commen
|
|||
(-1230034,'You\'ll pay for this insult, $c!',0,0,0,15,'coren direbrew SAY_AGGRO'),
|
||||
|
||||
(-1230035,'%s cries out an alarm!',0,2,0,0,'general_angerforge EMOTE_ALARM'),
|
||||
|
||||
(-1230036,'I want more ale! Give me more ale!',0,0,0,0,'rocknot SAY_MORE_BEER'),
|
||||
(-1230037,'You\'ll pay for that!',0,0,0,0,'Grim Patron SAY_PISSED_PATRON_1'),
|
||||
(-1230038,'No!',0,0,0,0,'Grim Patron SAY_PISSED_PATRON_2'),
|
||||
(-1230039,'Oh! Now I\'m pissed!',0,0,0,0,'Grim Patron SAY_PISSED_PATRON_3'),
|
||||
(-1230040,'Violence! Property damage! None shall pass!!',0,1,0,0,'Phalanx YELL_PHALANX_AGGRO'),
|
||||
(-1230043,'You can\'t hide from us. Prepare to burn!',0,1,0,0,'anvilrage guardsman SAY_GUARD_AGGRO');
|
||||
|
||||
-- -1 249 000 ONYXIA'S LAIR
|
||||
|
|
@ -4901,6 +4908,11 @@ INSERT INTO script_waypoint VALUES
|
|||
(7807, 36, -4405.25, 2231.77, 5.94, 0, ''),
|
||||
(7807, 37, -4377.61, 2265.45, 06.71, 15000, 'complete quest SAY_END');
|
||||
|
||||
DELETE FROM script_waypoint WHERE entry=9502;
|
||||
INSERT INTO script_waypoint VALUES
|
||||
(9502, 0,847.848, -230.067, -43.614, 0, ''),
|
||||
(9502, 1,868.122, -223.884, -43.695, 0, 'YELL_PHALANX_AGGRO');
|
||||
|
||||
DELETE FROM script_waypoint WHERE entry=9503;
|
||||
INSERT INTO script_waypoint VALUES
|
||||
(9503, 0, 883.294861, -188.926300, -43.703655, 0,''),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue