forked from classicdb/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.txt
1468 lines (1372 loc) · 87.7 KB
/
CHANGELOG.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---------------------------------------------------------------------
VERSION 1.5.0
---------------------------------------------------------------------
This release mainly focuses on resources nodes and pools with thousands of fixes. Hundred of wrong nodes were removed: no more thorium in Elwynn Forest or peacebloom in Eastern Plaguelands or other herbs/ores that should not be where they were. Many nodes were also adjusted. All zones now use the pool system: Felwood, Un'Goro Crater, Tanaris and some other areas no longer have dozen on resource nodes every yards. A new cell system has been introduced that will now prevent all resource nodes in a zone to spawn at the same place, leaving the full zone empty except for this spot: resources nodes are now evenly set across each zone. Also, average values of nodes in a zone have been updated: no more empty zones like Mulgore that previously had 8 total herbs in the whole zone, or Westfall with hundreds of spawns on the map.
These new settings may vary from zone to zone depending on how many nodes were originally sniffed and how many kinds of resources are available in a zone. Some zones are still more populated than others, some areas (usually few visited ones) are more empty but overall the gathering experience for players should be more enjoyable. The settings have been adjusted for a middle populated server. Many thanks for all the testers for their feedback.
Many gossips, quests, items, NPCs, events, dungeons and raids were also fixed.
---------------------------------------------------------------------
VERSION 1.4.2
---------------------------------------------------------------------
-------------
RAIDS
-------------
BLACKWING LAIR
Fixed faction of traps in Suppression Room of Blackwing Lair
MOLTEN CORE
The movement path of all 15 Ancient Core Hounds in Molten Core was reworked. Additionally, they were moved to their correct spawn location.
Fixed gossip menu of creature 13278 (Duke Hydraxis) in Azshara. Now players will be able to get the required items to summon Majordomo Executus in Molten Core
NAXXRAMAS
Fixed areatrigger prerequist
Spawned missing NPCs in Naxxramas Construct Wing
You should now be able to summon (and use) a portal to the area of Karazhan with Atiesh, Greatstaff of the Guardian
TEMPLE OF AHN'QIRAJ
Add missing script targets for Viscidus and Fankriss
Add missing spell target positions for Viscidus
Fixed respawn time of creature 15963 (The Master's Eye) which was respawning too fast (should not respawn for the instance duration).
Complete script for Viscidus - AQ40
-------------
DUNGEONS INSTANCES
-------------
BLACKROCK SPIRE
Added support for SD2 script of opening the UBRS door
Fixed stats of NPC 9196 (Highlord Omorokk) in Blackrock Spire
Fixed NPC 9198 (Spirestone Mystics) who were skinnable though being humanoids
BLACKROCK DEPTHS
Thunderbrew Lager Kegs are now spawned correctly
DEADMINES
The minimum level to enter the Deadmines is 10, the old value, 15, is just a recommendation
DIRE MAUL
Fixed GO 177219 (Gordok Courtyard Door) in Dire Maul North
Fixed size of GO 179516 (Fengus Chest) in Dire Maul North
Removed creature 14351 (Gordok Bushwacker) in Dire Maul North as this NPC is spawned by script
Fixed quests 7481 & 7482 (Elven Legends - Alliance / Horde) by adding missing gossip_menu_options and missing DBscripts on gossip
Fixed spawn time of NPC 11489 (Tendris Warpwood) in Dire Maul
Guard Slip'Kik is now constatly moving through the Halls of Destruction and no longer easy to skip on your Tribute Run
Cho'Rush the Observer was moved and will now assist the Ogre King.
Guard Fengus will now move constantly around.
The Broken Trap's size was increased.
The Tribute and Fengus's Chest were moved.
Lots of ogres and other creatures in the northern wing of Dire Maul had their faction changed
Both, the Gordok Courtyard Key and the Gordok Inner Door Key are now bound to Diremaul and will be destroyed if their holders make it out of the dungeon alive.
The Gordok Inner Door will now require the use of the Gordok Inner Door Key in order to be opened.
Lots of doors in the western and northern wing of Diremaul had their size and opening animation fixed.
Treasure of the Shen'dralar should only be usable if you are on certain quests (position fixed)
Wandering Eyes of Kilrogg should remember their name, no one ever called them Idling Eyes of Kilrogg
Mizzle the Crafty used to be way shorter
Ogres and other creatures located in Dire Maul: North had their attackspeed updated
Fixed equipment of many creatures in Dire Maul North
- Gordok Brute
- Stomper Kreeg
- Guard Mol'dar
- Guard Fengus
- Guard Slip'kik
- Captain Kromcrush
- Cho'Rush the Observer
Fixed equipment of creatures 11450 (Gordok Reaver) and 14351 (Gordok Bushwacker) in Dire Maul North
Removed quest: 1318 that was probably replaced by quest 7703 (Unfinished Gordok Business)
Felvine Shards are not available until you kill Alzzin and were slighty off position.
Fixed Traps is now of the same size as Broken Traps
Dire Maul: North was finally populated by Gordok Reavers
Dire Maul: North - Carrion Swarmer were correctly added in Dire Maul
GNOMEREGAN
Fixed missing gossip_menu_option in Gnomeragan for engineers. Now Schematic: Discombobulator Ray will be available for Players with the right engineering level and the right access card
MARAUDON
Spirit of Veng is no longer a stationary unit
SCARLET MONASTERY
The Secret Door and the High Inquisitor's Door should not be targetable by common players
STRATHOLME
Added missing GO 175966 (Enchanted Scarlet Thread) in Stratholme
Fixed respawntime of GO 177287 in Stratholme
Hearthsinger Forresten will now spawn at different locations in Stratholme
SUNKEN TEMPLE
Despawns GO 148937 (Atal'ai Light BIG (DND)) and GO 148883 (Atal'ai Light SMALL (DND)) in Sunken Temple : they are spawned by script (SD2)
Fixed faction of NPC 8440 (Shade of Hakkar) in Sunken Temple
ULDAMAN
Fixed end quest of Uldaman instance (The Platinum Discs) for both Alliance and Horde
Spawned missing NPC 7172 (Lore Keeper of Norgannon) at quest start
Fixed quest requirements
WAILING CAVERNS
Fixed drop chance of item 5339 (Serpent Bloom) in Wailing Caverns. Though a quest objective, it should be lootable by everyone and should have a 100% drop chance.
ZUL'FARRAK
Fixed a few issues in Zul'Farrak
Added missing loot entry for creature 8876 (Sandfury Acolyte)
Fixed quest Divino-matic rod
Added waypoint movement to creature 7795 (Hydromancer Velratha) in Zul'Farrak. She will now move around the sacred pool.
Fixed walk speed for creature 7273 (Gahz'rilla) in Zul'Farrak because it was moving way to quickly
Fixed addon for creature 5648 (Sandfury Shadowcaster) because they were using an aura addon and an EventAI script to add the same spell 20798 (Demon Skin) resulting in the spell being self canceled
Fixed loot table of bosses in Zul'Farrak
Added missing rare spawns in Zul'Farrak
Fixed faction of NPC 10080 (Sandarr Dunereaver) and 10081 (Dustwraith) in Zul'Farrak. They were previously friendly
Fixed equipment of NPC 10081 & 10082
-------------
GAMEOBJECTS
-------------
Doors in the Stonewrought Pass can be opened with nearby levers.
Added missing GO 12653 (cat figurine)
Removed duplicate mailboxes in world (same entry, same coordinates)
Added missing spawns of gameobject 175928 (Incendia Agave)
Uniformised respawn time for all GO (10 min)
Put them all into a pool
Fixed Z position of GO 30856 (Atal'ai Artifact) in Swamp of Sorrows
-------------
ITEMS
-------------
Fixed drop chance of items 7809 and 6834 previously removed from creature loot table and now moved to proper gameobject loot table
Fixed proc rate of item 10803 (Blade of the Wretched)
Fixed creaturetype of a few totems which where wrongly set as 'unspecified' they should now behave like totems instead of mindless and harmless melee creatures
Fixed proc rate of two weapons that were procing on every hit
- Ebon Hilt of Marduk
- Skullforge Reaver
Item: Encrusted Tail Fin should only drop from Murlcos located in the Vile Reef
Fixed drop chance of item 4892 (Durotar Tiger Fur) which was too low
Added missing recipes/plans loots in item 20469 (Decoded True Believer
Clippings)
Fixed drop chance of item 20378 (Twilight Tablet Fragment) in Silithus
-------------
QUESTS
-------------
Removed no longer used completion script for quest 994 (Escape Through Force)
Added completion script for quests 112 (Collecting Kelp) and 114 (The Escape)
Improved end script of quest 2520 (Sathrah's Sacrifice)
Trial of the Sea Lion
Objects:
Strange Lockbox - corrected
Bubbly Fissure - both missing added
Fixed quest 2518 (Tears of the Moon) which was having another quest as prerequist while it does not have one
Fixed quest 2954 (The Stone Watcher): the quest giver will now display its gossip menu
The repeatable step for Stranglethorn Fever should not grant experience
Fixed quest 8447 (Waking Legends) by adding end script
Trek to Ashenvale (q.990) is now available: 'Sentinel Selarin' should appear after compl. q.994 or q.995
Improved end script for quest 5541 'Ammo for Rumbleshot'
Added missing script for quest 1126 (Hive in the Tower) Now, two NPCs 13301 (Hive'Ashi Ambusher) will spawn when looting the Hive'Ashi Pod
Improved quest 308 (Distracting Jarven): now the unguarded barrel will spawn in the same place as the guarded one
Fixed quest / gameobjects relation in Darkshore for the washed ashore quest line (Alliance only)
Fixed quest text for quest 4727 (Beached Sea Turtle) which was using text from a similar quest instead
Improved start script for quest 1064 (Forsaken Aid) : Added missing spell visual
Alliance Cloth Quartermaster in Darnassus wasn't offering the elvish version of 'A Donation of Wool' and 'A Donation of Silk' because they weren't existing
You had to complete the lower tiers of cloth donations to be allowed to donate runecloth for Capital Cities - Cloth Quartermasters
Removed quest 9180 - not available in classic
Improved completion script of quest 6661 (Deeprun round rat)
Fixed quest 2882 (Cuergo's Gold) by adding script on GO use for GO 142189 (Inconspicuous Landmark)
Improved script for quest 656 (Summoning the Princess) in Arathi Highlands. Now Myzrael has a speech and will engage players on spawn
Fixed quest text of quest 348 (Stranglethorn Fever) because it was obviously manually added and wrong
Badlands - Quest: Disharmony of Fire should not be available if you didn't complete 'Disharmony of Flame'.
-------------
NPCS
-------------
Removed aura from addon for NPC 1200 (Morbent Fel) in Duskwood because its aura is now handled in ACID script
Fixed faction of creature 13017 (Enthralled Deeprun Rat)
Fixed spawntime and movement of creature 14471 Setis in Silithus
Twilight Prophets will not follow a certain path.
Two Twilight Avengers will guard each Twilight Prophet.
The re-spawn timer of Twilight Prophets was increased to 30 minutes, up from 10
Fixed stats of creature 8208 (Murderous Blisterpaw) in Tanaris
Fixed level range of creature 2070 (Monnstalker Runt) in Darshore
Fixed stats of NPC 1511, 1514 and 1516 summoned in quest 349 (stranglethorn fever). They were previously overpowered even for a four men group of right level.
Removed spawns of creature 3939 (Razormane Wolf) because this is a summoned NPC
Put creature 10559 (Lady Vespia) into a pool because this is a rare and unique NPC
Added missing targets for spell 5628 (Gnarlpine Vengeance) that was previously targeting players instead of nearby NPCs friendly to the spell caster
Removed equipment of creatures 2177 & 2176 Writhing Highborne / Cursed Highbourne in Darkshore. Both of these creatures are weilding daggers, when they shouldn't.
Added waypoint movement to creature 2417 (Grel'borg the Miser)
Added waypoint movement for the only Ironforge Guard that was missing it.
Nikova Raskol & Jenn Langston will now follow a circular path in Stormwind's Old Town.
Added missing equipment for creature 14221 (Gravis Slipknot)
Fixed position of NPC 3880 (Sentinel Frostshadow) and 3901 (Illiyana) in Ashenvale because they were located in Forest Song and were located elsewhere back in Classic
Susan will not follow move on a circular path in Undercity's Rogue Quarter.
Cedric Stumpel's obviously truncated path was corrected in Undercity
Hepzibah Sedgewick will now move on a circular path in Undercity
Apothecary Katrina will not move on a circular path in Undercity
Fixed Apothecary Lycanus' truncated path in Undercity
Apothecary Vallia's path has been corrected in Undercity
Morley Bates will now move on a circular path in Undercity
Tawny Grisette's path has been adjusted in Undercity
Harbinger Balthazad's path was corrected in Undercity
Helena Atwood will now shoot constantly at a Practice Target rather than walking around in Undercity
Jezelle, a Warlock in Undercity, will now give lessons in summoning some minions. The event will start every 245 seconds
Seekers Cromwell, Nahr & Thompson will now patrol through Undercity
Roetten Stonehammer will now move around in Ironforge
Curator Thorius will now move on an improved path and will perform additional emote in Ironforge
High Priest Rohan will now move around inside the Hall of Mysteries
Bimble Longberry will now move on an updated path in the Mystic Ward
John Turner will now move on an updated path in Ironforge and reminds nearby players of the orphans of Stormwind
Golorn Frostbeard will now move around in Ironforge
Sognar Cliffbeard's path was updated in Ironforge
Protector Dorana in Westfall wasn't moving at all until now
In Westfall a new path was assigned to Protector Korelor
Fixed stats of creature 4196 (Silithid Swarm). This NPCs is summoned by various silithid NPCs and its stats change depending on how it is summoned
Fixed stats of creature 7769 (Hazzali Parasite). This NPCs is summoned by various silithid NPCs at death and previously had too much HP
Fixed gossip of creature 3691 Raene Wolfrunner
Fixed faction of creature 12423 (Guards Roberts) so that he is not killed by wolwes
Sand Sharks added: Mitch Buchannon will no longer recommend swimming at the beach of Tirisfal and Durotar. There might be sharks!
Added missing NPC 12797 (Grunt Korf) and 12798 (Grunt Bek'rah) in Orgrimmar
Added missing equipment to NPC 5124 (Sognar Cliffbeard) in Ironforge
Fixed equipment of NPC 5669 (Helena Atwood ) in Undercity
Fixed sheathed equipment for NPC 844 (Antonio Perrelli)
Improved movement of NPCs in Ironforge:
- Thief Catchers Farmountain, Shadowdelve & Thunderbrew
- Sraaz
- Ironforge Guards
Most of the guards close to the North Point Tower in Dustwallow Marshes were standing still. This was corrected.
Most of the guards close to Sentry Point in Dustwallow Marshes were standing still. This was corrected
Myra Tyrngaarde's movement path was updated in Ironforge
Updated armor and health of the three Homing Robots. They previously had low life and 0 armor, making the quests more difficult to complete
Removed duplicate addon for creature 5109 (Myra Tyrngaarde) in Ironforge preventing her from holding its bread, showing players how tasteful it is
Improved Stitches script used at end of quest 252 (Translation to
Ello) to make it closer to what it was on retail:
- Stitches is now neutral at spawn and will no longer kill Abercrombrie
- Stitches turns hostile when reaching the road
- Stitches now attacks the Night Watch guards on its way to Darkshire
- Town Crier (creature 468) now has several yells to inform players of
Stitches progress toward Darkshire
- Prevented Stitches to spawn twice
Removed wrong equipment for creature 5154 (Poranna Snowbraid) in Ironforge as she should wear none
Improved gossip of NPC 9047 in Darnassus Jenal <Ditch Digger>
Fixed rank of creature 8217 (Mith'rethis the Enchanter) in the Hinterlands because this NPC is rare and elite and added waypoint movement
Added random movement to creature 1493 (Mok'Rash) near Booty Bay and set respawn time to 2h
Linked NPCs 15542 (Twilight Marauder) and NPC 15541 (Twilight Marauder Morna): they will now engage with their master and respawn with her
Set Run speed for creatures 15542 and 15541
Adjust spawn time (4 minutes for master, followers are linked)
Fixed model of NPC 15542 which had wrong alternate model similar to NPC 15541
-------------
EVENTS
-------------
Removing Noblegarden items from creature loot
- 6833 White Tuxedo Shirt
- 6834 Black Tuxedo Shirt
- 6835 Black Tuxedo Pants
- 7806 Lollipop
- 7807 Candy Bar
- 7808 Chocolate Square
- 7809 Easter Dress
- 19028 Elegant Dress
Remove script for Sylvanas Windrunner
Removed spawns of NPC's that are spawned during the event Elemental Invasion
Removed duplicate Midsummer bonefires in Ironforge. Also fixed the model used
Added missing spawn of NPC 15197 (Darkcaller Yanka) and 15199 (Sergeant Hartman) during Hallow's End
-------------
MISCELLANEOUS
-------------
Add Shaman/Warrior flurry spell chains
Fixed some Alliance graveyards in Horde territories
Lots of conditions for mounts vendors were updated. Races that were introduced in TBC were removed, they were accidentally breaking stuff
---------------------------------------------------------------------
VERSION 1.4.1
---------------------------------------------------------------------
-------------
RAIDS
-------------
MOLTEN CORE
Firelords, Lava Spawns, Firewalkers, Flameguards, Sons of Flame and Baron Geddon do fire instead of physical melee damage.
Small fix of unitflags and ranks in MC
Ancient Core Hounds do fire melee damage as well
Updated health and armor values that did not match the Bestiary
Updated damage output that did not match the Bestiary (-> trash does more, bosses less melee damage)
Updated missing resistances (-> some mobs are resistant to fire, and vulnerable to frost damage)
Updated a few MovementTypes (having no effect ingame)
Updated the minimum level of Lava Spawns and Sons of Flame
Updated a few spawn timers, matching the guides back from 2005 now
Deleted the loot_table of following creatures in MC - Flame Imp, Core Hound, Lava Spawn, Firesworn, Core Rager, Son of Flame
Fixed wrong equipment assigned to bosses and bosses adds in Molten Core
Added fire immunity to creature 11668 (Firelord)
All immunity masks were updated
Added movement waypoint to creature 12264 (Shazzrah) in Molten Core
Improved movement waypoints of creature 12056 (Baron Geddon)
Firelord: The timer of Soul Burn was significantly reduced.
Firelord: The timer of Incinerate was removed, it is now applied on melee attacks.
Firelord: The timer of Summon Lava Spawn was slightly edited.
Lava Spawn: Will now be immune to fire damage.
Lava Spawn: Will now do a text-emote on split.
Lava Spawn: The timer of Split was edited, both Splits will be casted.
Gameobject 178188, a flame circle that covers Geddon's rune, was missing, both, as a template and spawn.
12 Lava Surgers will now patrol in Molten Core, they will spawn and move like they do on the official servers
RUINS OF AHN'QIRAJ
Locked the Scarab Coffer in AQ20, you should use a Scarab Coffer Key to open these.
Updated the respawn timers at the front courtyard (matching retail now)
Moved Kurinnaxx + added random movement (matching retail now)
Updated health, mana, damage and amor of each creature type in AQ (matching Bestiary now)
Updated healthmultiplier and manamultiplier (matching Bestiary and retail now)
Fixed some minor mistakes (rank, etc.)
Hive'Zara Larva are now non-elite and always level 60
Updated missed out creature Hive'Zara Swarmer
Added 1000 arcane resistance to Ossirian (matching Bestiary now)
Moved Buru and added random movement (matching retail now)
Reduced Canal Frenzy's respawn timer to 30 seconds (should be something between 30s and 1m) down from 1 hour
Added 30 Canal Frenzy, 6 groups of 5 fishes
Added more Scarab Coffers to AQ20 (now there are 10)
Reduced the ridiculous drop chance of the Idols in AQ20 (prev. 10% for all of them),
Added missing creatures (e.g. General Rajaxx' Lieutenants)
Removed creatures that are not present in AQ20 or could also be somewhere else (e.g. Obsidian Eradicator, Qiraji Warrior)
Reduced the ridiculous drop chance of the Scarabs in AQ20 and 40 (prev. 80% for all of them, although quest-dependant), should be matching retail now
Added missing creatures
Removed some entries (e.g. Qiraji Warrior, etc.)
Edited missing template for Anubisath Warriors and Swarmguards, Health, Damage and Armor.
Deleted the loot_table of following creatures in AQ20 - Canal Frenzy, Qiraji Warrior, Swarmguard Needler, Anubisath Swarmguard, Anubisath Warrior
Fixed respawn time of three bosses in Ruins of Ahn'Qiraj
- Moam
- General Rajaxx
- Ossirian the Unscarred
Shrieker Scarabs, Spitting Scarabs, Obsidian Destroyer and Flesh Hunter will respawn after 6 hours, up from 1.
Buru Eggs' positions do now match the official servers.
TEMPLE OF AHN'QIRAJ
Changed the drop chance of the Idols in AQ40
Added missing creatures
Removed some entries (e.g. Qiraji Swarmguard etc. (AQ20)
11 Large Scarab Coffers are now spawned in AQ40
ZUL'GURUB
3 description of quests from Rin'wosho have been updated. Previously, the RequestItemsText was missing and therefore, the player was never informed which items would be needed to hand in.
-------------
DUNGEONS INSTANCES
-------------
BLACKROCK DEPTHS
Deleted a weird looking door just behind Ambassador Flamelash, there is no reason for this one to be here.
Fixed equipment item for creature 8890 (Anvilrage Warden)
The Core Fragment in BRD will no longer despawn
The Behemost, a rare creature, will now patrol through the quarry.
Overmaster Pyron had its waypoints reworked
A few changed to Pyron's and Behemoth's template
Chest of the Seven Incorrect position was corrected
Panzor the Invincible, a rare elite in BRD will now spawn.
Panzor the Invincible and the alternative War Golem had their waypoints reworked.
DIRE MAUL
Fixed NPC 11488 (Illyanna Ravenoak) who is spawned twice
The creature 11501 (King Gordok guid 138183) in Dire Maul should not have any movements
ULDAMAN
The respawn timer of 'Staunevault Rockchewer' was changed to 2 hours up from 10 minutes (just the ones inside the dungeon), to match their nearby friends.
'The Shaft of Tsol' no longer required the quest 'The hidden Chamber' to be taken or completed.
Set respawn time of quest chest before Uldaman entrance to zero as the object should not despawn when used
-------------
GAMEOBJECTS
-------------
Removed wrong objective gameobject 186419 (Wrecked Row Boat) in Feralas.
Fixed spawn time of gameobject 179487
Lowered to 10 min the spawntime of gameobject 176785 (Ammo Crate) used in quest Ammo for Rumbleshot
Several Solid Chests and Large Solid Chests were re-spawning way too fast, within 3 minutes (gold exploit). Their respawn was changed to 2 hours. I am sure there are even more out there.
-------------
ITEMS
-------------
Prevented item 5075 (Blood Shard) from dropping outside the Barrens
-------------
QUESTS
-------------
Corrected entries in creature_questrelation of all 3 Assisting Arch
Druid Staghelm quests, they were messed up. (2, SW and DA, starting in
IF ... etc.)
The quest-chain 'Crown of the Earth' was updated by Blizzard back in 2006.
Quest 934 was replaced by 7383. (You should not get both)
The quest 'The Captain's Chest' was updated by Blizzard somewhen during
Vanilla. Quest 614 was replaced by 8551. (Made the new quest accessible to
both factions.
Updated a few level-requirements and rewards that have been forgotten
Fixed movement of creature 1373 (Jarven Thunderbrew) in quest 308 (Distracting Jarven)
Added missing gossip menu option to creature 6566 (Estelle Gendry) to fix quest 1999 (Tools of the Trade) The NPC will now give item 5060 (Thieves Tool) to player on the quest
Corrected name tag in Progress Text for quest 263
Improved scripted event 452 for quests 735 & 736 (The Star, the Hand and the Heart, Alliance / Horde) Now the NPC 2937 (Dagun) will spawn in the water and march toward players instead of spawning on top of them
Added missing spawn of creature 12900 (Somnus) in Swamp of Sorrow Now Horde players will be able to complete that part of the Onyxia quest chain
Fixed quest 4362 (The Fate of the Kingdom), set PrevQuestId to 4361
fixed quest 9211 (The Ice Guard) + 9213 (The Shadow Guard) : made them repeatable
Assigned each quest only one faction
Fixed textes for quest 3115 (Tainted Memorandum) which were refering to actual player name
The quest 'Avenging the Fallen' should not be repeatable
Quest: Betrayed 1/4 - 4/4: fixed minimum level and XP
Fix more requirements for various quests in Orgrimmar which have been forgotten in https://github.com/classicdb/database/commit/ac0beca
Added missing emote on completion script of quests 166 (The Defias Brotherhood) and 283 (A Dark Threat Looms)
Made quests 9227 & 9228 not repeatable
Fixed drop of quest items for quest 5064 (Grimtotem Spying) Players no longer have to find the three quest items in a specific order
Improved movement of creature 1271 (Old Icebeard) in Dun Morogh for quest 312 (Tundra MacGrann's Stolen Stash): Added wait time and run ON/OFF
Fixed creature 2149 (Dark Iron Raider) which was wrongly using a mount
Fixed quest requirements for quest 214 (Red Silk Bandanas)
-------------
NPCS
-------------
Added the option to repair for Orgrimmar's NPC Kaja
Added missing equipment to creature 2937 (Dagun the Ravenous)
Fixed a few texts for NPC 3518 (Thomas Miller) in Stormwind
Made weapon unsheath for creature 14363 (Thief Catcher Shadowdelve), 14365 (Thief Catcher Farmountain) and creature 14367 (Thief Catcher Thunderbrew) in Ironforge.
Fixed patrolling Ironforge Guard having his weapon sheathed
Added missing waypoints to several creatures 5595 (Ironforge Guard).
Fixed equipment item for creature 10996 (Fallen Hero)
Set proper unitclasses for summoned Warlock pets
Prior to patch 3.3, Kobold Laborer, located in the Northshire, Valley were hostile.
Fixed loot table of creature 1119 (Hammerspine)
Fixed creature 8666 (Lil Timmy):
- removed the bottle he was holding. Time are tough in Stormwind, but not enough to let little boys drink
- added its creature companion 7386 (White Kitten) and made it follow Lil Timmy
Added missing spawn of creature 1179 (Mo'grosh Enforcer) and creature 1181 (Mo'grosh Shaman) in Loch Modan
Removed wrong AI scripts from various creatures and fixed random aggro text for others. They were previously claiming to be part of the Defias Brotherhood on aggro though obviously were not (kobolds, skeletal mages and such)
Removed creatures spawned on TBC map
-------------
EVENTS
-------------
Added missing NPC and gameobjects for Warsong Gluch weekly battleground event
Fixed quest level of the starting quests of the Festival of Fire as they should be available at all level
Made patrolling guards (creature 68 - Stormwind City Guard and creature 1976 - Stormwind City Patroller) in Stormwind swap their equipment at nightfall. They will now wield a lantern instead of their sword.
Removed creature addon as they were strictly equal to creature template addon
Made creature 1976 (Stormwind City Patroller) use sword+shield equipment by default they were previously using lantern+shield
Fixed current and added missing equipment data to make creature 1976 (Stormwind City Patroller) and wandering creatures 68 (Stormwind City Guard) use lanterns during the Night event. Static creatures 68 (Stormwind City Guard) still wield their sword
Reworked Pyrewood Village event
---------------------------------------------------------------------
VERSION 1.4
---------------------------------------------------------------------
-------------
RAIDS
-------------
MOLTEN CORE
Changes to Firelord / Lava Annihilator
- added missing spawns
- pooled previously added and existing creatures
- fixed movement behaviour
Corrected path for Lucifron & adds so adds follow closely
Fixed speed of creature 12056 (Baron Geddon)
Fixed spell used by creature 11669 (Flame Imp) and decreased spawn time to 7 min
Fixed spawn time of trash mobs in Molten Core:
- Ancient Core Hound
- Lava Surger
- Molten Giant
- Molten Destroyer
- Firelord
- Lava Annihilator
- Core Hound
- Firewalker
- Flameguard
- Lava Reaver
- Lava Elemental
Added various crowd control immunities to Gehennas adds (Flamewaker)
Added various crowd control immunities to Lucifron adds (Flamewaker Protector)
Added various crowd control immunities to Sulfuron adds (Flamewaker Priest)
Added various crowd control immunities to Majordomo Executus adds (Flamewaker Elite)
Added various crowd control immunities to Majordomo Executus adds (Flamewaker Healer)
Added banish immunity to Firelords and their spawns
Added banish immunity to Firewalker and Flameguard
RUINS OF AHN'QIRAJ
Added missing graveyard for all players when dying in Ruins of Ahn'Qiraj. They will now respawn in the graveyard near the Gates of Ahn'Qiraj instead of respawning where they died
Removed duplicate entries of creature 15324 (Qiraji Gladiator) in Ruins of Ahn'Qiraj
Changes to Qiraji Swarmguard
- Position
- Movement (running)
- Size, walk and run speed
- Linking to Kurinnaxx
Ruins of Ahn'Qiraj - Changes to Obsidian Destroyer
- Added correct amount of spawns (9)
- Added movement
- Linked to Moam
Changes to Anubisath Guardian
- Added correct amout of spawn (8)
- Added movement
- Linked to Ossirian
- Removed permanent minions (Anubisath Warrior & Swarmguard, will be summoned infight)
Changes to Hive'Zara Stinger
- Fixed amount (10) and positioning
- Added movement
- Linked to Kurinnaxx
Changes to Flesh Hunter
- Added correct number (5)
- Repositioned
- Added movement
- Linked to Moam and Buru
Changes to Hive'Zara Wasp
- Added correct numbers of groups
- Changed position
- Linked to Hive'Zara Stingers
- Removed Hive'Zara Hornets as a permanent spawn (Ayamiss encounter)
Changes to Hive'Zara Stinger / Wasp
- Added correct number of groups (4)
- Added linking
- Added movement
- Pooled certain creatures
Set rank of a few bosses to "raid bosses": Ossirian the Unscarred (15339), Moam (15340), General Rajaxx (15341), Doctor Weavil (15552)
Changed min- & maxlevel of Qiraji Gladiator, Warrior, Swarmguard Needler, Captain Qeez and Major Yeggeth (source: Bestiary, wowhead, wowwiki ...)
Changed scale, faction and movementtype of Vile Scarabs (source: retail)
Linked Qiraji Gladiator
Changes to Shrieker & Spitting Scarabs
- added needed creatures - overall 50 creatures in 5 groups
- linked them to their groups and to boss Moam
- changed their movementtype to random
- fixed scale
Changes to Hive'Zara Packs
- added 3 packs (2 drone, 2 collectors, 2 tail lasher)
- added linking
Changes to Silicate Feeder
- Removed spwawn Hive'Zara Larva
- added 40 spawns Silicate Feeder
- updated template - should be neutral
Added missing equipment for creature 15471 (Lieutenant General Andorov) and 15473 (Kaldorei Elite) in Ruins of Ahn'Qiraj and updated their flag to make them healable
Fixed size of creature 15471 (Lieutenant General Andorov) who was too big
Fixed visual effect of GO 180647 (Sand Trap) in Ruins of Ahn'Qiraj
Fixed all epic quest idols in Ruins of Ahn'Qiraj which were only dropping for people with the quest while they should drop for everyone
TEMPLE OF AHN'QIRAJ
Corrections to Prophet Skeram's area
- removed Small Obsidian Chunks
- added a third Obsidian Eradicator
- moved the three dragon NPCs
- corrected the scale of Andorgos
- added requirements for the quests dragon NPCs are giving
Made creatures 15355 (Anubisath Guardian), 15338 (Obsidian Destroyer), 15264 (Anubisath Sentinel) spawn small obsidian chunk on death
Made creatures 15340 (Moam), 15338 (Obsidian Destroyer), 15277 (Anubisath Defender) spawn large obsidian chunk on death
Removed all spawns of creatures 15962 (Vekniss Hatchling) and 15630 (Spawn of Fankriss) because they are spawned during the encounter with Fankriss
Fixed spawn time of creature 15229 (Vekniss Soldier) and 15300 (Vekniss Drone) In Temple of Ahn'Qiraj as they should respawn in 20 secs and not in minutes or hours
Added patrol movement to creature 15509 (Princess Huhuran)
Updated position of creature 15378 (Merithra of Dream), 15379 (Caelestrasz) and 15380 (Arygos) in Temple of Ahn'Qiraj to place them in the middle of the 3 gameobjects after C'Thun encounter
Changes to Obsidian Eradicator
- Added movement
- Updated reputation reward
- Stats & Respawn
- Linking
Changes to Anubisath Sentinel
- Position
- Reputation
- Stats, Level & Respawn
- Linking
Changes to The Prophet Skeram
- Position
- Stats & Respawn
Changes to Anubisath Warder
- Position
- Reputation
- Stats & Spawn
Changes to Obsidian Nullifier
- Position
- Reputation
- Stats & Respawn
- Linking
Changes to Qiraji Champion
- Position
- Reputation
- Movement
- Stats & Respawn
Changes to Bug Trio
- Position
- Movement
- Stats, scale, Runspeed & Respawn
- Linking
Changes to Battleguard Sartura
- Position
- Movement
- Stats, speed & respawn
- Linking
Updated health and stats of creatures in Temple of Ahn'Qiraj
- Obsidian Eradicator
- Anubisath Sentinel
- The Prophet Skeram
- Anubisath Warder
- Obisdian Nullifier
- Qiraji Champion
- Bug Trio
- Battleguard Sartura and Guards
Changes to Anubisath Defender
- Position
- Movement
- Respawn
- Linking
Changes to Qiraji Slayer / Mindslayer
- Position (formation)
- Reputation
- Stats, Respawn
- Linking
- Pooling
Changes to Vekniss Soldier
- Position
- Reputation
- Stats, runspeed, respawn
- Linking
- Movement
Changed orientation, flags and loots of GOs in Temple of Ahn'Qiraj
- locked the large scarab coffers
- idols in coffers are now lootable without being on a certain quest
- corrected the rotation of doors and coffers
Changes to Vekniss Drone
- Positioning
- Amount
- Stats
- Respawn
- Linking
- Movement
Fixed various model and scale in C'Thun encounter
Changes to Vekniss Wasp-Packs
- Added correct number of packs (6)
- Changed reputation
- Added movement
- Linked to Huhuran
- Pooled certain creatures
Added missing gossip menu and gossip menu options to creature 15502 (Andorgos) in Temple of Ahn'Qiraj. This allows player to be teleported to Twins Emperors' lair or Final Chamber near C'Thun, depending on which boss is defeated
Fixed reputation awarded by the class epic set quests in Temple of Ahn'Qiraj. Those quests now grant 250 Brood of Nozdormu reputation.
Fixed reputation awarded by many creatures
Fixed faction for creatures 15316 (Qiraji Scorpion) and 15347 (Qiraji Scarab) in Temple of Ahn'Qiraj
Added missing spawn of creatures 15316 (Qiraji Scorpion) and 15317 (Qiraji Scarab) in Temple of Ahn'Qiraj
Added missing equipment to creatures 15502 (Andorgos), 15503 (Kandrostrasz) & 15504 (Vethsera) in Temple of Ahn'Qiraj
-------------
DUNGEONS INSTANCES
-------------
BLACKROCK DEPTHS
Fixed spawn for the Spectral Chalice, but initially despawned. Talking to Gloom'rel with a 230+ miner that doesn't know "Dark Iron Smelting" should spawn the object.
BLACKROCK SPIRE
Added support for event in Blackrock Spire of Scarshield Infiltrator morphing into Vaelan
DEADMINES
Fixed spawn of creature 3586 (Miner Johnson) in Deadmines as it should not spawn 100% of the time.
DIRE MAUL
Makes creature 14566 (Ancient Equine Spirit) spawns after creature 11489 (Tendris Warpwood) is defeated in Dire Maul
Added aggro link between creature 11459 (Ironbark Protector) and creature 11489 (Tendris Warpwood). Now players must clean every Ironbark Protector before engaging Tendris unless they want some 'company' during the fight as all Ironbark Protectors will now attack when Tendris Warpwood is engaged.
Updated faction for creature 14364 (Shen'Dralar Spirit), 14358 (Shen'Dralar Ancient), 14361 (Shen'Dralar Wisp), 14371 (Shen'Dralar Provisioner), 14383 (Lorekeeper Kildrath, 14382 (Lorekeeper Mykos), 14381 (Lorekeeper Javon), 14368 (Lorekeeper Lydros) and 16032 (Falrin Treeshaper). They all should have the Shen'Dralar faction instead of the Wolf/Undercity/Creature they currently have.
Fixed type of gameobject 179544 (Skeletal Remains of Kariel Winthalus) as it should be 2 because it is related to a quest 7482 (Eleven Legends).
Fixed size of gameobject 177217 (Gordok Inner Door) as it is currently to small and don't stop players as intented
Major revamp of Dire Maul East
- Added patrols and random movement
- Fixed spawns
- Improved linking
- Pool many creatures to make the experience different from one run to another
- And much, much more...
RAZORFEN DOWNS
Fixed stats for creature 8516 (Belnistrasz) in Razorfen Downs because he was too weak preventing the players to defend him successfully in the quest "Extinguishing the Idol"
SCHOLOMANCE
Fixed mechanics of Alexei Barov encounter in Scholomance by adding missing linking to creature 10504 (Lord Alexei Barov) and its two guards 10489 (Risen Guard). They will also respawn when Alexei evades (like after a wipe).
Updated loot table of bosses in Scholomance. Added missing items, updated drop rate, added reference tables.
- Lord Alexei Barov (10504): added missing entries, increased chance to drop rare item (blue item) to 100%
- Lady Illucia Barov (10502): added missing entries (some generic and some specific like dark rune)
- Jandice Barov (10503) : added missing entries, especially item 14543 (Darkshade Gloves)
- Ras Frostwhisper (10508): updated reference table as some element in it shouldn't be in (like Alanna's Embrace) added missing entries (mostly generic entries)
- Rattlegore (11622) : added missing item and reference table, updated drop chance of scourge stone to 100%
- Doctor Theolen Krastinov (11261) : added missing items and reference table
- Darkmaster Gandling (1853) : added/moved missing items and reference table and especially items 13937 (Headmaster's Charge) and 21525 (Winter Veil hat)
- Blood Stewart of Kirtonos (14861) : added missing items, reference table and increased drop chance of scourge stone to 100%
- Kirtonos the Herald (10506) : added missing items
- The Ravenian (10507) : added missing items and reference table
- Instructor Malicia (10505) : added missing items and reference table
- Lorekeeper Polkelt (10901) : added missing items and reference table and increased drop chance of scourge stone to 100%
Linked creature 10432 (Vectus), 10433 (Marduk Blackpool) and 10475 (Scholomance Student) in Scholomance. Now, students will attack when Marduk is engaged and everyone will attack when Vectus is engaged.
STRATHOLME
Changes to Patchwork Horror
- Fixed position
- Fixed minlevel
- Fixed movement speed
- Added movement
Changes to Plague Ghouls & Skul (living side)
- Added movement
- Fixed movement speed
- Removed not needed spawns (static spawns are untouched)
Changes to Eye of Naxxramas
- Added 3 spawns
- Added movement
- Updated walking speed
Added missing equipment for creature 10812 (Grand Crusader Dathrohan), 10811 (Archivist Galford), 11032 (Malor the Zealous) & 10997 (Cannon Master Willey) in Stratholme
Changes to the Crimson Faction
- updated a few min and maxlevel based on the Bestiary (and other sources)
- updated the faction of every member to faction 67 (Scarlet Crusade)
Removed spawns of creature 8477 (Skeletal Servant) as this is a summoned creature
Baron Rivendare (10440): fixed min level, health, mana rare rank
Rockwing Gargoyle / Rockwing Screecher
- added movement to (7 pats)
- pooled spawns (50/50 -> gargoyle / screecher)
- added creatures and movement for rare spawn Stonespine
ULDAMAN
Updated drop conditions of item 7741 (The Shaft of Tsol) in Uldaman as the item was previously undroppable: its drop condition was having completed a quest the item is used for in order to complete so the condition could never be true
Added missing areatrigger relation for quest 2240 (The Hidden Chamber) in Uldaman. The quest is now completable
Fixed rank and loot of creature 7057 (Digmaster Shovelphlange) in Uldaman as it is a rare creature. Removed from reference table one loot (9382) specific to him
Added missing loot item 9382 (Tromping Miner's Boots) to creature 7057 loot table
Fixed respawn time of creatures in outer part of Uldaman
Fixed quest giver and quest completionner of quests 2201 (Find the Gems) and 2204 (Restoring the Necklace) in Uldaman as it was wrongly set to NPC 6826 in Ironforge instead of GO 112877 (Talvash's Scrying Bowl)
Fixed quest 3375 (Replacement Phial) which should not be available without losing the prerequired item of quest 2201
Fixed spawn time of item 126260 (Ancient Chest) near Uldaman as it should not despawn when looted
-------------
GAMEOBJECTS
-------------
Players can now loot Lost Supplies (begins quest) from Scattered Crate (Swamp of Sorrow)
Players can now loot Ensorcelled Parchment (starts quest) from Worn Wooden Chest (Alterac Mountains)
Added missing gameobjects related to weekly battleground events as the various faction banners of Arathi Bassin and Alterac Valley were hanging into thin air.
-------------
ITEMS
-------------
Removing random items from loot table of Small Barnacled Clam
Setting Clam Meat (ID:5503) to drop 100%, instead of 99.8%
Removed Bolts of Cloth from creature loot tables
Added items 19054 & 19055 for iCoke chinese event
Pattern: Runic Leather Headband was added to vendor Jase Farlane
Scourge Warder had too high drop chance for Essence of Undeath
Removed quest item called 'Shipment of Boots' from Stormwind City Guard
Duration of High Potency Radioactive Fallout is now 2 hours
Everlook and Gadgetzan Transporters schematics are now be removed from goblin Buzzek Bracketswing (Gadgetzan)
Removed quest item 7866 (Empty Thaumaturgy Vessel) from pickpocket loots
Added equipment for creature 5399 (Veyzhak the Cannibal)
Added equipment for creature 5400 (Zekkis)
Added equipment for creature 9718 (Ghok Bashguud)
Added missing "Dreamscale" (item 20381) skinning loot from four worldboss Dragons
Fixed generic green dragon skinning template providing only 1 green scale while it should provide more
Fixed too low drop chances, should be 100%: Lost Soul (Tirisfal Glades) - Wispy Cloak 20%, Tormented Spirit - Ghostly Bracers 15%
Corrected loot of Stranglethorn Vale rare mobs
- Scale Belly (1552)
Iridescent Scale Leggings (4478) 80% (Delete From Reference)
Chromatic Sword (1604) 20% (Delete From Reference)
- Lord Sakrasis (2541)
Lord Sakrasis' Scepter (5028) 50% (Delete From Reference)
Talisman of the Naga Lord (5029) 50% (Delete From Reference)
- For the following NPCs only having a few reference loot templates and no unique loots:
Gluggle 14487
Roloch 14488
Rippa 14490
Kurmokk 14491
Verifonix 14492
Mosh'Ogg Butcher 723
-------------
QUESTS
-------------
Made quest 4973 (Counting Time Part 2) repeatable
Fixed minlevel, repeatability and reputation reward of the various Craftman's Writ quests. They all should be available at level 55, be repeatable and reward 20 Argent Dawn reputation
Fixed Argent Dawn Commission and Scourgestones quests: Horde and Alliance versions were mixed or missing, Argent Dawn Commission could be obtained without having completed the quest
Fix XP, min. level and quest level for quests in Eastern Kingdoms:
- Tirisfal Glades
- Deathknell
- Undercity
- Scarlet Monastery
- Western Plaguelands
- Scholomance
- Eastern Plaguelands
- Stratholme
- Silverpine Forest
- Shadowfang Keep
- Hillsbrad Foothills
- Alterac Mountains
- Arathi Highlands
- The Hinterlands
- Wetlands
- Loch Modan
- Dun Morogh
- Ironforge
- Gnomeregan
- Coldridge Valley
- Badlands
- Uldaman
- Searing Gorge
- Blackrock Mountain
- Blackrock Deeps
- Blackrock Spire
- Molten Core
- Blackwing Lair
- Burning Steppes
- Redridge Mountains
- Elwynn Forest
- Northshire
- Stormwind
- Westfall
- Deadmines
- Duskwood
- Swamp of Sorrows
- Blasted Lands
- Stranglethorn Vale
- Zul'Gurub
Corrected drops of Pristine Yeti Hide (Alliance) and Perfect Yeti Hide (Horde) to 2.5%
Fixed Glyph Chasing Quest: added missing gossips, options and scripts
Corrected the Second Rebellion Quest Chain
- 203 The Second Rebellion
- 204 Bad Medicine
- 574 Special Forces
- 202 Colonel Kurzen
Corrected quest chain in Booty Bay, Levels and Type:
- 606 L41 R30 Scaring Shaky
- 607 L41 R30 Return to MacKinley
- 609 L44 R30 Voodoo Dues
- 613 L44 R31 Cracking Maury's Foot (GROUP)
Added missing spell target for spell 12938 (Fel Curse) in quest Uniting the Shattered Amulet in Blasted Lands
Fixed quest chain sequencing of the Dreadsteed epic quest lines for warlocks: some quests where not available when needed or where missing their requirements
Implemented script support for quest 3367
Changes to quest_template
- updated gained experience of certain quests
- updated minimum level of certain quests
- updated a few questlevel
Fixed quest 2118 (Plagued Lands) which had outdated required objectives (no longer in sync with SD2 script)
Brood of Nozdormu - Changes to Quests - Rings / Qiraji Insigna
- added quests for rings to exclusive groups, you are only allowed to chose one
- added corrected descriptions
- fixed reputation and descriptions for qiraji insigna quests
Fixed drop rate of items for quest 485 and 2766
Added script for quest 434
Fix missing fishing loot for quest 1580, "Electropellers".
"The Monogrammed Sash" quest had wrong 'repeatable' flag
Fixed drop rate of items related to "The Lost Fragments" quest (Badlands)
Fixed quest 5096 (Scarlet Diversions) by adding missing gameobject entry for spell focus 'Scarlet Crusade Forward Camp'
Fixed Captain Smotts (Booty Bay) having duplicate obsolete quest entry
Fixed quest 6481 goggeroc
Fixed auto completion of quest 660 (Hint of a New Plague?) which is now scripted in SD2
Fixed a quest text using real player name instead of $N string in quest 716 (Stone is Better than Cloth)
Fixed auto completion of quest 219 (Missing in Action) in Redrige Mountains
Fixed drop rate of quest item 4612 (Black Drake's Heart) which was erroneously set to 100% instead of the awfully low drop rate it should have
Fixed the number of items provided in quest 2203 (Badlands Reagent Run II)
Fixed min level of quest 3788 (jonespyre's request) in Feathermoon Fortress
Fixed NPC Sprogger (Booty Bay) having duplicate entry for quest "Facing Negolash"
-------------
NPCS
-------------
Removed items 13444 (Major Mana potion) and 13446 (Major Healing potion) from creature 10856 (Argent Quartermaster Hasana)
Many rare creatures were not flagged as rare. This is fixed.
Correcting dialogue of creature 3520 "Ol' Emma"
Change rank of creatures 1837 (Scarlet Judge) and 1885 (Scarlet Smith) to rare elite as they are in Hearthglen with their elite siblings.
Added waypoint movement to creature (7978) Bimble Longberry in Ironforge, Mystic Yard.
Added waypoint movement to creature (9099) Sraaz in Ironforge, Great Forge.
Fixed typo in creature 9099 gossip
Fixed position of two creatures in the Barrens as they were stuck inside a cannon.
Updated NPC Flag on Rivern Frostwind to make him able to display its gossip.
Correcting loot of Rare Mobs in multiple zones
- Elwynn Forest
- Westfall
- Redridge Mountains
- Duskwood
Fixed rank of creatures 4475 (Blighted Zombie), 1794 (Soulless Ghoul) & 1795 (Searing Ghoul) because they were wrongly stated as elite while they are normal
Fixed conditions of gossip of creature 15498 (Windcaller Yessendra) in Cenarion Hold. Previously her gossip options allowed player to get back the epic quest rewards she provides without having complete the quests first
Made creature 2474 (Kurdros) and 2473 (Granistad) in Hillsbrad Foothills roam to keep more efficiently the entrance of the Hinterlands
Lord Falconcrest and Otto (Stromgarde) had wrong 'Monster' faction
War Master Voone (LBRS) did not drop 100-175 Flightblade Throwing Axes
Defias Enchanter had wrong Elite rank
Fire Roc (Tanaris) ca now cast Flamespit due to their new mana pool
Fixed some water+ground creatures that cannot be enagaged into combat because of wrong InhabitType: Skittering/Snapping/Barbed Crustacean (BFD), Deepstrider Giant/Searcher (Desolace), Deep Dweller (Tanaris)
Allowed Servants of Azora (Elwynn Forest) to be also female
Fixed gossip of Thamarian (Auberdine) who was misdirecting players to Stormwind and Exodar due to WotLK gossip text
Fixed creatures using visual blue/white box placeholder instead of their equipment when using throwing weapons
Added Missing "Unseen" L49-51 creatures in Duskwood
Added specific invisible aura to creature 3049 (Unseen)
Fixed modelid of creature 16119 (Bone Minion)
Increased roaming of creature 573 (Foe Reaper 4000) in Westfall
Updated spawn distance of a few creature in Lordamere Internment Camp
Added Ruul Onestone's missing weapon
Added Deathsworn Captain's missing weapon
Added missing weapon to Gordok Captain
Added missing weapon to King Gordok
Added missing teleport spell for creature 4968 (Jaina Proudmoore), used when fighting her
Added waypoint movement to creature 2754 (Anathemus) in the Badlands
Fixed missing gossip text for creature 3936 (Shandris Feathermoon) in Feralas
Fixed rank of creature 14445 (Captain Wyrmak) in Swamp of Sorrows as this creature is rare elite
Added waypoint movement to creature 8215 (Grimungous) in the Hinterlands and fixed its rank to rare elite
Added missing spawn of rare creatures 5400 (Zekkis) and 5399 (Veyzhak the Cannibal), Trigore the Lasher, Oozeworm, Lord Angler and Ghok Bashguud
Fixed many rare creatures faction. Most of them are no longer neutral to player, as it was intended
Added missing spawn, equipment and movement to creature 723 (Mosh'Ogg Butcher)
Added missing waypoint movement of Azurous (elite Blue Drake, Winterspring)
-------------
EVENTS
-------------
Fixed missing gossip menu options for some of the Elders in Lunar Festival game event
Improved start date of Lunar Festival event. Start date in 2006 was 01/27/2006 and not 02/12/2006.
Added missing NPC & GO in Darnassus for Lunar Festival holiday event
Fixed quest level of Lunar Festival quests because they should be
available to any player while they are currently flagged as lvl 70 or
with minlevel = 68, making them 100% unavailable in Classic
Fixed gossip of creature 15895 (Lunar Festival Harbinger) to make it
offer Lunar Festival Invitation
Added script to create Lunar Festival Invitation
Fixed spells, NPCs and gameobjects for quest "Lunar Fireworks" :
Fixed some of the spell focus objects not working
Fixed holiday teleports of Lunar Festival not working:
- Fixed class and spell charge of item 21711 (Lunar Invitation) which was previously a consumable while it is in fact an holiday item that should not disappear when used
- Fixed Lunar Invitation teleport not working (to Moonglade and back to
majors cities)
- Added missing spell focuses GO for spell 26373 (Lunar Invitation)
- Added target position to each teleport spell in Lunar Festival
- Added script to cast teleport spell on players
- Added script target for Lunar Invitation spell to trigger teleport script
Removed duplicate spawns of some of the creatures 16781 (Midsummer Celebrant) in Midsummer Festival game event as they were spawned at the same place of another.
Added missing Stormpike/Frostwolf Emissary for Alterac Weekly Battleground event
Fixed HP of creature 15467 (Omen) in Lunar Festival
-------------
MISCELLANEOUS
-------------
Fix spell 6346 (Fear Ward)
Removed quests, NPCs and gameobjects removed from Alterac Valley in Patch 1.10
Fixed graveyard for Alliance players in Orgrimmar. They will now be ported to Durotar (Razor Hill) instead of Ashenvale
Made Paladin's talent Benediction reduces mana cost of Seal of Crusader and Seal of Command
Fixed respawn time of most of the raid bosses
Fixed reqskillvalue for Leatherworking: Rugged Leather, Cured Rugged Hide, Rugged Armor Kit
Fixed combat distance of many raid encounters. Tank were previously forced to tank those bosses by being "inside" them: Onyxia, Azuregos, Vaelastrasz, Nefarian, Taerar, Lethon, Emeriss, Ysondre, C'Thun, Eye of C'Thun, Sapphiron
Removed some 'null' gossip option for Paladin/Shaman/Mage/Rogue trainers
---------------------------------------------------------------------
VERSION 1.3 (INCLUDES CHANGES FROM v1.2.1)
---------------------------------------------------------------------
-------------
RAIDS
-------------
AZUREGOS
Added waypoints for creature 6109 (Azuregos)
Added waypoints for creature 15481 (Spirit of Azuregos)
Added gossip menus for creatures 6109 (Azuregos) and 15481 (Spirit of Azuregos). Including gossip menu options for quest 8575 (Azuregos's Magical Ledger) for the Scepter of the Shifting Sands quest line (AQ Gates opening)
LORD KAZZAK
Added missing world drops from loot table of creature 12397 (Lord Kazzak)
Moved waypoints for creature 12397 (Lord Kazzak) from creature_movement to creature_movement_template as this creature is unique
NAXXRAMAS
Updated scale of creature 16030 (Maggot) as they were way too big
Added waypoint movement and paths for 3 patrols in Naxxramas Military Quarter:
- Waypoints for the Deathknight Captains in first room
- Waypoints for Shade of Naxxramas and the two Necro Knights in the first room
- Waypoints for Deathknight Captain and the two Death Touched Warriors in the second room
Removed Mana Points from Poisonous Skitterer
Added gossip menu gossip script to creature 16381 (Archmage Tarsis) in Naxxramas, made it lie on the ground
Change weapon of creature 16156 (Dark Touched Warrior) from axe to bucket.
Fixed creature 16024 (Embalming Slime) in Naxxramas Construction Wing: Added random movement, fixed size
Fixed texts for quest 9238 (Glacial Wrists) as they were wrong (different from the 13 others). New texts copied from other similar quest in same quest chain
Fixed quests available only after 9233 Omarions Handbook
Added cloud disease ability to creature 16017 (Patchwork Golem) in Naxxramas
Added cloud disease ability to creature 16029 (Sludge Belcher) in Naxxramas
Updated Naxxramas Military Sub-Boss Trigger level from 80 to 60
Fixed rank of creatures involved in Gothic Fight because they were missing their Elite rank
Removed the whitespace in "Death Knight" for creatures 16125 & 16148 as it was introduced in WotLK
Fixed respawn time of creature 16861 (Death Lord) in Naxxramas
Improved waypoint movement of creature 15931 (Grobbulus) in Naxxramas to make it spawn three creatures 16375 (Sewage Slime) instead of one.
Make the creature 16375 (Sewage Slime) moves randomly and fixes its size
Removed wrong spawns of creature 16375 (Sewage Slime): they are summoned by the script above
Fixed creature 16146 (Deathknight) in Naxxramas not wielding its shield
Removed spawns of creature 16290 (Fallout Slime) as they are spawned during the Grobbulus encounter
Removed creatures of the left of the sewage room in Construct Quarter because there were none in Classic version
Removed duplicate Sludge Belcher in embalming room in Construct Quarter
Added missing patrolling Bile Retcher along the slime in Patchwerk room instead
Changed first Bile Retcher patrolling in Patchwerk room to Sludge Belcher
Linked the first group of Patchwork Golems
Linked the abominations in right side of sewage room
Linked the second group of Patchwork Golems (back of sewage room)
Added waypoint movement and patrol to creatures in Naxxramas Construct Wing