aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts
AgeCommit message (Collapse)Author
2022-01-06Scripts/Pet: Fixed Mirror Image trying attacking invalid targetsKeader
(cherry picked from commit 456aaf2cea40160ad8f8b2504a003a1991db741a)
2022-01-06Scripts/Trial Of The Crusader: Fixed Anub'arak Pursuing Spikes movement (#24715)Gildor
(cherry picked from commit 6c1a874e5702a2dbefd4b4685c41a9d6c51dd2bb)
2022-01-06Scripts/Ulduar: Fix Flame Leviathan movement (#24673)Gildor
(cherry picked from commit 3ab970aa4742dde354e1d903304da850f05d6e09)
2022-01-06DB/Quest: Convert & update support for 'Mark V is Alive!' to SAIoffl
Closes #24686 (cherry picked from commit e48c4151560049a876418f69cd25153a259f50eb)
2022-01-06DB/Quest: Convert & update support for 'When the Cows Come Home' to SAIoffl
Closes #24685 (cherry picked from commit 1316ca482d1d20d03bbdfa5aa338955d96dd03bb)
2022-01-06 DB/Quest: Convert & update support for 'Cuergo's Gold' to SAIoffl
Closes #24675 (cherry picked from commit 0e7cabd7f10eaa9ffad20f9fcd03fca8cb88fa68)
2022-01-06Scripts/RuinsOfAhnQiraj: Crystal handling (#24679)NoName
+ make crystal usable with animation and despawn after use; + small code update; + spell rearrange; + define some magic numbers; + update crystal coordinates from sniffed data (cherry picked from commit 89193c3548c4da307ca08884c53b593b56ab47d1)
2022-01-06Scripts/Icecrown Citadel: Fix Sindragosa movement when Wipe in fly phase ↵Gildor
(#24665) (cherry picked from commit dd3fbf426c7455558825777b02f630f1b0d702c9)
2022-01-06DB/Quest: Convert "HELP!" & "Corki's Gone Missing Again!" & "Cho'war the ↵Killyana
Pillager" to SAI Closes #24649 (cherry picked from commit fd66e291b5595635411116b5b0946b476719a2ab)
2022-01-06DB/Quest: Convert & update support for 'Prisoners of Wyrmskull' to SAIoffl
Closes #24650 (cherry picked from commit 2008cb7dd33411a381911c6b64e4ebf96fa8c39f)
2022-01-06DB/GameObject: Convert & update support for Shrine of the Eagle / Falcon / ↵offl
Hawk to SAI Closes #24647 (cherry picked from commit 0cfd63fd26312c8abb475cf36fcd164e65fc3eec)
2022-01-06DB/Creature: Convert Sayge to SAIoffl
Closes #24663 (cherry picked from commit 626aeb5817a42efc026e3623a65362eef355abb1)
2022-01-06Scripts/Misc: Fix issues reported by ASanjackpoz
(cherry picked from commit 013301088d862f634cd5b817cb3949c58454f924)
2022-01-06DB/GameObject: Convert & update support for Tablet of Madnessoffl
Closes #24670 (cherry picked from commit 9c1c34a79420b2513ee0009fcd84726c3ff95bfe)
2022-01-06DB/GameObject: Convert & update support for Jump-a-tron 4000 to DB scriptKillyana
Closes #24668 (cherry picked from commit 6b9a14ca940a2104a89cfadf07978a2759acb47a)
2022-01-06DB/Quest: Convert Escape from Umbrafen to SAIoffl
Closes #24648 (cherry picked from commit cfe6b651bc38239de58d6a3f95e8897bfb7d1869)
2022-01-06DB/GameObject: Convert & update support for Fel & Bash'ir crystalforgesoffl
Closes #24643 (cherry picked from commit c3e4420a2b8584f97e49d7ae9a5b2f3140d50984)
2022-01-06DB/Quest: Convert support for 'Strength of One' to SAIoffl
Closes #24641 (cherry picked from commit 44aba5dcdf403797de777586bd7f10e9d76eaf53)
2022-01-06Scripts/ICC: Fixed duplicated call of reputation spellKeader
(cherry picked from commit 99c457c2709fc021b0441d488dc1710b284ee587)
2022-01-06Scripts/ICC: Fixed Deathbringer/Valithria reputation handler + codestyle fixesKeader
* Added correct reputation spell for both bosses * Fixed debuffs remove when deathbringer dies (it also fix recount) * Changed all DoCast(me, xxx) -> DoCastSelf(xx) * Removed old reputation hack in DB * Fixed my OCD with spells enum :) (cherry picked from commit d1e1b8753c491022055e255fd8c8b4ffbdd87bc9)
2022-01-06Scripts/RazorfenDowns: quest "Extinguishing the Idol" (#24658)NoName
(cherry picked from commit 868748007da3b70e96f10b4689065bd0b3f876c5)
2022-01-06 DB/Quest: Convert & update support for 'Shizz Work' to SAIoffl
Closes #24638 (cherry picked from commit 049cba3ace198ec74a2014e233b33aafbf749a53)
2022-01-06DB/Quest: Convert & update support for 'Finding the Survivors' to SAIoffl
Closes #24636 (cherry picked from commit 2815db52a643bdfa397317b79d5b3f68995b343e)
2022-01-06DB/Creature: Convert & update support for Ashyen & Keleth to SAIoffl
Closes #24635 (cherry picked from commit a2068cade59a067f55d779735ba8bcf5c48f045f)
2022-01-04Core/Commands: Fixed .npc add overwriting existing spawns when used on ↵Shauren
transports (cherry picked from commit 75ab3619bdec058dcc848ad134c6d5e838e8f6fb)
2022-01-04Core/MMAPs: Adjust walkable climb and fix a lot of mmap raycast issues (#24539)Giacomo Pozzoni
* Core/MMAPs: Adjust walkable climb Adjust walkable climb as recast using walkableClimb also to find the poly from a position, giving priority to polys that are below the position but closer than walkableClimb. * Temporarily disable static collision (the whole check should be removed) * Core/Spells: removed deprecated mmap path check for TARGET_DEST_CASTER_FRONT_LEAP * Core/Objects: allow flying units to use the helper as well (flying units casting radius based spells) * Code refactor * Handle raycasts that end in a point with no height in the mmap mesh as PATHFIND_NOPATH * Walk back a bit from raycast hitpoints as sometime the 2D result point is outside of the polygons due to floating point errors. * Remove whitespace * Revert 4a197ba22af4eed01be632ea2dd7d103a963f043 as a raycast point path should have the Z retrieved with getPolyHeight(). Raycast will only return a 2-point path with Start and Hitpoint/End * Cleanup PathGenerator raycast case * Fix PathGenerator raycast broken if start and end are on same poly. Fix PathGenerator raycast broken if no wall is hit. Remove unused case of using raycast with an existing previous path (can be added back properly if needed). Remove forcing poly length to 2 when we actually have already the right number. * Use closestPointOnPolyBoundary on the second try of finding a point on poly for raycast. Note that in this case the mesh height is not used which might cause issues. The poly boundary height will be used instead. * Handle cases where getPolyHeight() fails because the point is on polygon border (and caused by floating point imprecision) * Add far from poly flags * Set PATHFIND_INCOMPLETE in raycast case if startFarFromPoly or endFarFromPoly * Fix blink close to walls with no valid polygon behind the wall * Require to re-extract mmaps Co-authored-by: Ovah <dreadkiller@gmx.de> (cherry picked from commit c0b75bf40da8b447a2f3533dabbfad9eba7c6ea1)
2022-01-04Scripts/Icecrown Citadel: Fixed Professor Putricide oozes not moving during ↵Shauren
their channel (cherry picked from commit 1d43003cfa29cee2c7921fdeaa5c1714d085c770)
2022-01-04Core/CreatureAI: Shambling Horror re-cast Enrage as soon as it is not stun ↵Metalaka
(#24618) (cherry picked from commit e2434e4f4726f9c99f9260607b78ece09b5df249)
2022-01-04DB/Spell: Arm Dead Damage KologarnJildor
Closes #24577 (cherry picked from commit 91705672181204b8d5f61a1f180b8efa36f57055)
2022-01-03Core/Spells: Added helper function to select random injured healing spell ↵Shauren
targets
2022-01-02Scripts/Pet: Lil' K.T (#24528)Sorikoff
* Lil' K.T. * Rename 9999_99_99_99_world_335.sql to 2020_05_10_00_world.sql Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com> (cherry picked from commit 34fecde022e6e2a228111ee79a0e9f5f8a7bed12)
2022-01-01DB/Quest: Becoming a Spellfire Tailoroffl
Closes #24522 (cherry picked from commit 9638f0ad0b70084f06bf3b6a9d9e49f00830772e)
2022-01-01Core/Player: add helper methods for PLAYER_FLAGS_DEVELOPER (#24511)ForesterDev
* Core/Player: add helper methods for PLAYER_FLAGS_DEVELOPER. Update .dev command to new command model * Rename _player -> player (cherry picked from commit 8128bb97dbf4b5ba7cb0b624ce7cf7428d7bdc63)
2022-01-01Scripts/IcecrownCitadel: Adding IsAlive check to avoid possible crash in ↵NoName
Event (#24514) (cherry picked from commit 22aaf32a79cd6ce8ebb4507cdfd677f073c35178)
2022-01-01Core/Spells: Crystallize should not use DIMINISHING (#24502)NoName
and also correcting spelling in script by Rushor and wotlk-enthusiast (cherry picked from commit 45993428f5c7e7e03d0d98529354e23cd8c7cf98)
2022-01-01Scripts/OnyxiasLair: Fix Onyxia Eruption spell (#24472)Gildor
(cherry picked from commit e4476fab6eb8e9b712a9fa25c8db7b78ab22ddb7)
2022-01-01Making travis happyKeader
(cherry picked from commit ee218a564239cf02c43df41f7b9597d71b018ed5)
2022-01-01Scripts/Black Temple: Fixed Reliquary of Souls after combat rewrite changes.Keader
Closes #23879 * Fixed combat start/evade issue * Fixed visual issue in Soul Release spell * Fixed some timers issue * Fixed some codestyle issues PS: Please, stop break my black temple babys. (cherry picked from commit d8e726de586070d24bec3c43a9ae795cf5482be0)
2022-01-01Scripts/BWL: Fix crash in Razorgore encounterjackpoz
(cherry picked from commit 7b8b02c32ebfb7c8c47ac1d1b94129c91346ad66)
2022-01-01Boss/Script: Vazruden_Fix (#24197)skipperheartbeat
* Add files via upload * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: offl <suffle.o@gmail.com> * Update src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp Co-Authored-By: Trond B. Krokli <38162891+illfated@users.noreply.github.com> * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp * Update boss_vazruden_the_herald.cpp Co-authored-by: Aokromes <Aokromes@users.noreply.github.com> Co-authored-by: Trond B. Krokli <38162891+illfated@users.noreply.github.com> Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com> Co-authored-by: offl <suffle.o@gmail.com> (cherry picked from commit 8ac83744293afe297bce2597107bc5da5445ccbb)
2022-01-01Add realm ID for actions based ip logging (#24453)zartech22
* Update SQL queries to insert realm id * Insert the realm id when logging actions based on IP * Adding the SQL update file * Update 9999_99_99_99_auth.sql * Update auth structure Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com> (cherry picked from commit 56f20d69a6ab23a9818f77fd4e2df541a7c30f0e)
2022-01-01Scripts/Naxxramas: Fix Heigan Eruption spell (#24470)Gildor
(cherry picked from commit 6c7c2c6cd279813333e0b1cc1f60b22a04f368dd)
2022-01-01Scripts/Ulduar: Little improvements in AuriayaKeader
* Removed DespawnAtEvade * Fix Feral Defender Damage (cherry picked from commit 77dd751499a92eb06b66eadd00bbc71da07e62be)
2022-01-01Scripts/Trial of Crusader: Fixed issue with Snobold Vassal and some achiev ↵Keader
criteria resets * Fixed snobold behavior when gormok dies * Fixed UPPER_BACK_PAIN Archiev reset * Fixed THREE_SIXTY_PAIN_SPIKE Archiev reset (cherry picked from commit 78dff46bf25a6e7e1f68c227278d7ff6f768cf9a)
2022-01-01Scripts/Quest: The Exorcism of Colonel Jules (#24459)Gildor
* Remove Anchorite Barada gossip when event start (cherry picked from commit 8a5b02be0a678ff4a9c589e3da05e96103f819fc)
2022-01-01Improvements to Pyroguard Emberseer (UBRS) script (#24405)Sven
* UBRS: Improve Pyroguard Emberseer script * Remove whitespaces * More whitespaces removed * Addressing change requests Removed cast from constructor Removing unused member field * That should be the last white spaces * Forgot to remove the declaration * Update boss_pyroguard_emberseer.cpp * Add break to For loop * War on white spaces Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com> (cherry picked from commit c3037c35639a547fca6be02ad1a0a2ed4c1c5fe9)
2022-01-01Scripts/Pets: Mojo (#24431)Sorikoff
* Mojo * Update * Rename 9999_99_99_99_world.sql to 2020_04_11_01_world.sql Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com> (cherry picked from commit 194691f7c3992fbea13227a190007f05451d742a)
2022-01-01Creature: Gorkun Ironskull & Martin Victus in The Pit of SaronKillyana
Still some events are missing in this instance (cherry picked from commit d0f9ace67970f51bd1e9fb153a0844555f2b1ca2)
2022-01-01Scripts/Eye of Eternity: Fixed The Focusing Iris not respawning on wipeShauren
Closes #22948 (cherry picked from commit f57b1e27d062286553b8dd3199ce118eb99ac270)
2022-01-01Core/Log: Log all character kicks to "network.kick" categoryjackpoz
(cherry picked from commit 31018c36527755166d8a297ac9e6c98a66f014ae)