-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ACID][Instance] The Botanica - rework part 2 (#1203)
* Start reworking groups behind first boss They have random spawned entrys (Sunseeker Researcher or Sunseeker Chemist) need more research about how much of each can be up per group * Add all static groups * typos and add patrols * Rework Sunseeker Geomancer RP and add this group to spawn_group * Add last group before 2nd Boss to spawn_group add correct sunseeker researcher waypoints and dbscript * Add correct waypoints and db script for boss high botanist freywinn * Add all trash npcs between first and 2nd boss to spell_list update timers and use correct % for healers (tested on wotlk classic) * Add back 2 rp scripts using guid based scripts * correct some more positions to sniff points * Final Cleanup
- Loading branch information
Showing
5 changed files
with
366 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
-- DELETE unused dbscripts_on_creature_movement from botanica | ||
DELETE FROM dbscripts_on_creature_movement WHERE id IN (1797602, 1797603, 1797604, 1799305); | ||
DELETE FROM dbscripts_on_creature_movement WHERE id IN (1797602, 1797603, 1797604, 1799305, 1842005, 1842006, 1842201, 1842202, 1842203); | ||
|
||
-- Text should be TextEmote | ||
UPDATE broadcast_text SET ChatTypeID = '2' WHERE Id = '16944'; | ||
|
||
-- add correct spell_script target for heroic version of Rejuvenate Plant | ||
DELETE FROM spell_script_target WHERE entry IN(39126); | ||
INSERT INTO spell_script_target(entry, type, targetEntry, inverseEffectMask) VALUES | ||
(39126,1,21555,0), -- 19557 normal entry | ||
(39126,1,21554,0), -- 19608 normal entry | ||
(39126,1,21579,0), -- 19920 normal entry | ||
(39126,1,21583,0), -- 19958 normal entry | ||
(39126,1,21550,0), -- 19962 normal entry | ||
(39126,1,21566,0), -- 19964 normal entry | ||
(39126,1,21557,0); -- 19969 normal entry |
Oops, something went wrong.