aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts
AgeCommit message (Collapse)Author
2011-08-20Scripts/Naxxramas: Fixed reseting of Just Can't Get Enough achievement. ↵Lopin
Thanks to Shauren for notice
2011-08-20Scripts/Naxxramas: Fixed achievement Just Can't Get EnoughLopin
2011-08-20Core/Spells: move Cannibalize and Carrion Feeder cast checks to SpellScripts.QAston
2011-08-19Scripts/Blackrock Depths: Fixed reseting of Moira after Emperor Dagran is ↵Lopin
dead. Closes #2658
2011-08-19Core/Logs: Added some useful informations to certain logs, part #1. ↵Lopin
Requested by Aokromes
2011-08-19Scripts/Ulduar: Steelbreaker will add another stack of Electrical Charge ↵Lopin
when player dies because of Meltdown
2011-08-19Core/Spells: Fixed Magic Eater Food. Closes #2619Lopin
2011-08-19Core/GameObjects: Unrevealed GO_FLAG_UNK1. Now GO_FLAG_NOT_SELECTABLE makes ↵Lopin
gameobjects to be unselectable even in GM mode
2011-08-18Script/Spells: Fix spell 64414 / Load into catapultMachiavelli
Also fix SQL file naming from this morning.
2011-08-18Scripts/Storm Peaks: Fix some (embarassing) errors in ↵Machiavelli
npc_hyldsmeet_protodrake (script is working now) and correct seat ID in vehicle_template_accessory.
2011-08-16Core/Spells: update the core to the changes from ↵QAston
1fb1988d46055c63ac29d63ae7b051f328525ee9 . To make your custom code work with those changes simply lookup the value of Targets enum value from prev rev, and update the name in your code.
2011-08-16Core/Spells: Remove OriginalVictim parameter from Unit::CastSpell(x,y,z) - ↵QAston
setting unit target was enough for all spells which used it, there's never a need to cast with both unit and dest target on retail (in such cases unit target + DEST_TARGET target types are used).
2011-08-16Scripts/Pit of Saron: Removed unneccessary lineShauren
2011-08-15Script/Ulduar: Small cosmetic changes and magic numbers in Hodir's script. ↵Lopin
Be prepared for Thorim soon!
2011-08-14Scripts/Storm Peaks: Typo in 0cb688, thanks to simltMachiavelli
2011-08-13Scripts/Storm Peaks: Make Hyldsmeet Drakerider properly respawn.Machiavelli
2011-08-13Scripts/Spells: Fix a typo in spell_hun_masters_callMachiavelli
2011-08-13Core/Commands: Console should be able to add/remove rights in any caseleak
2011-08-12Scripts/Malygos: - Applied TC code style.Manuel Carrasco
- Every Hover Disk will correctly change the faction once the creature passenger dies. - Player's mount will be despawned when the passenger leaves it.
2011-08-11Merge pull request #2537 from Kapoeira/masterMachiavelli
[Scripts/Commands] Killing more engrish and cleanin' up.
2011-08-09Scripts/Commands: Forgotten change & fix a mistake.Cron
2011-08-09Scripts/Commands: Killed some more engrish in debug CommandScripts.Cron
2011-08-08Merge pull request #2527 from Kapoeira/masterMachiavelli
[Scripts/Commands] Killing some engrish.
2011-08-08Scripts/Commandes: Kill some engrish.Cron
2011-08-07Core/Spells: Fix Shaman talent Nature's Guardian and rewrite fix for ↵Machiavelli
fc52f08. Fixes some spells not triggering.
2011-08-07Core/Spells: Hunter ability Master's Call should not process effects when ↵Machiavelli
pet is dead.
2011-08-06Core/Spells: Add GetTriggeringSpell() method to SpellScript and use it to ↵Machiavelli
properly filter server side spell 18350's script.
2011-08-06Scripts/AQ20: Crash fixLihO
2011-08-04Scripts/Icecrown Citadel: Blood-Queen Lana'thel will now target every player ↵Shauren
only once during air phase Closes #764
2011-08-03Core/Vehicles: Remove Vehicle.h dependency from other header filesSpp
2011-08-03Core: Fix compile without PCH and fix some warningsSpp
2011-08-01Core/Spells: Fix Soul Preserver trinketMachiavelli
2011-08-01Core: Typo fix introduced in previous commit (:S)Spp-
2011-08-01Core: Some more missing changes from previous commit (Pass by const ↵Spp-
reference for simple objects replaced with pass by value). Also fix unintended change
2011-08-01Core: Pass by const reference for simple objects replaced with pass by valueSpp-
2011-08-01Core: Fix annoying compile warning and some other minor changes here and thereSpp-
2011-08-01Scripts/Icecrown Citadel: Added emote warning for Mutated Infection at RotfaceShauren
2011-07-31Fix gcc build and remove redundant check from 0afc3cMachiavelli
2011-07-31Core/ChatLog: Properly filter out addon messages in whisper, party, raid and ↵Machiavelli
battleground. Original patch by tassader1000
2011-07-29Scripts/Icecrown Citadel: Fixed orientation of Ice Bomb trigger spawns, ↵Shauren
spell should now work as intended
2011-07-29Scripts/Icecrown Citadel: Sindragosa will no longer attempt to enter both ↵Shauren
last phase and air phase
2011-07-29Core: Append single character to stream as character, not as a stringSpp-
2011-07-29Scripts/Ulduar: Fixed disappearing of Hodir's Rare ChestLopin
2011-07-29Core/Misc: cleanup npc_professions script (shouldn't the whole script go to ↵Azazel
DB?). Fix some warnings.
2011-07-27Core/Scripts: ScriptRegistry is no longer the part of ScriptMgr public ↵Spp-
interface, it is not required by caller side. Also remove extra function call to GetScriptId in scripts
2011-07-27Core/Movement: Implemented methods to animate creatures landing and takeoff ↵Shauren
and use them in Sindragosa script
2011-07-27Core/ObjectMgr: Remove GetPlayer function (Remove double use of singletons)Spp-
2011-07-27Fix some warnings here and thereSpp-
2011-07-26Core: Use new SpellInfo class in core. Sadly, this commit is not compatibile ↵QAston
with some of the custom code. To make your code work again you may need to change: *SpellEntry is now SpellInfo *GetSpellProto is now GetSpellInfo *SpellEntry::Effect*[effIndex] is now avalible under SpellInfo.Effects[effIndex].* *sSpellStore.LookupEntry is no longer valid, use sSpellMgr->GetSpellInfo() *SpellFunctions from SpellMgr.h like DoSpellStuff(spellId) are now: spellInfo->DoStuff() *SpellMgr::CalculateEffectValue and similar functions are now avalible in SpellEffectInfo class. *GET_SPELL macro is removed, code which used it is moved to SpellMgr::LoadDbcDataCorrections *code which affected dbc data in SpellMgr::LoadSpellCustomAttr is now moved to LoadDbcDataCorrections
2011-07-27Core/Achievements: Fix Didn't Stand a ChanceShocker