aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/EasternKingdoms/BlackrockSpire
AgeCommit message (Collapse)Author
2013-08-07Scripting: Moved Lord Valthalak from EAI to CPP. Moved all Blackrock ↵Malcrom
Instances to Blackrock Mountain Dir.
2013-08-01Core/Misc: Fixed some issues found by Coverity ScanShauren
2013-07-08Scripted: Some cleanups + ninja changesVincent-Michael
2013-07-06Misc: Use override and final C++11 keywords in a few places (mostly scripts)Nay
OVERRIDE and FINAL are TC macros (expand to nothing if compiler does not support C++11)
2013-07-01Core/Scripting: More updates for BRS instance. Added missing scripts for ↵Malcrom
urok and gizrul.
2013-06-30Core/Scripting: Gyth event still not finished but completable.Malcrom
2013-06-30Core/Units: Removed most calls to SendMovementFlagUpdate for creaturesShauren
2013-06-30Core/Scripting: A few fixes for Blackrock Spire. Emberseer now setting ↵Malcrom
properly after wipe and Gyth/Rend event is getting closer to complete.
2013-06-26Core/Scripting: More BRS updates. Emberseer is still buggy if player resets. ↵Malcrom
Working on it.
2013-06-25Core: Fix warningsVincent-Michael
2013-06-25Core: Fix non pch buildVincent-Michael
2013-06-25Core/Scripting: More fixes and updates for BRS Instance.Malcrom
2013-06-25Core/Scripting: Gyth / Rend Event in progress. Pushing before Vincent ↵Malcrom
Micheal makes ninja changes.
2013-06-24Core/Scripting: Emberseer event will now check to see if all players in ↵Malcrom
instance are clicking altar.
2013-06-24Core: Fix non pch buildVincent-Michael
2013-06-24Core/Scripting: A few updates.Malcrom
2013-06-24Core/Scripting: Hopefully this calms tcbuid.Malcrom
2013-06-23Core/Scripting: I hate you tcbuild.Malcrom
2013-06-23Core/Scripting: tcbuild is being a bitch and SD2 had nothing to do with this ↵Malcrom
script.
2013-06-23Core/Scripting: Update to Boss Emberseer Script.Malcrom
2013-06-23Core/Scripting: UBRS Boss Pyroguard Emberseer now scripted.Malcrom
2013-06-23Core/Scripting: UBRS Boss Pyroguard Emberseer closer to being fully scripted.Malcrom
2013-06-23Core/Scripting: Fix warningMalcrom
2013-06-23Core/Scripting: Runes in UBRS Dragonspire Hall now activate and open door.Malcrom
Closes #4414
2013-06-23Core/Scripting: Some boss script fixes.Malcrom
2013-06-22Scripts: Convert DoCast(me->GetVictim(), SPELL_XXXXX); in ↵Vincent-Michael
DoCastVictim(SPELL_XXX);
2013-06-11Core: Some function renaming.Malcrom
2013-03-08First step of comment style refactoring to doxygen-style.Nefarion
2013-02-19Core/Scripts: Removed useless const modifier on method parameters accepting ↵Shauren
primitive types passed by value
2013-01-12Core/Script: Pyroguard emberseerGacko
Cleanup while working on #4586
2013-01-07Core/Scripting: Some cleanupMalcrom
2013-01-07Core/Scripting: Misc clean up and a warning fixMalcrom
2013-01-01Update copyright note for 2013.Vincent_Michael
Happy new year.
2012-11-20Core/Misc: Define some methods constSpp
2012-06-30Core: Minor code style correctionsShauren
2012-05-26Core: another update cause case matters!Malcrom
2012-05-26core: fix ubrs scriptMalcrom
2012-05-25Core/DB: Some updates for UBRS from sniffMalcrom
2012-05-16Core/Scripts: Scripting of Dragonspire Hall Runes "UBRS"Malcrom
Additional work to do.
2012-05-13Core/Scripts: And some Gameobject enums for future scripting of Blackrock Spire.Malcrom
2012-03-31Core/Script: Code style and some rewriting.Gyx
JustDied(Unit* Killer) -> JustDied(Unit* killer) JustDied(Unit* /*Killer*/) -> JustDied(Unit* /*killer*/) JustDied(Unit* /*unit*/) -> JustDied(Unit* /*killer*/) JustDied(Unit* /*slayer*/)) -> JustDied(Unit* /*killer*/) JustDied(Unit* /*victim*/) -> JustDied(Unit* /*killer*/) JustDied(Unit* victim) -> JustDied(Unit* killer) JustDied(Unit* /*who*/) -> JustDied(Unit* /*killer*/) JustDied(Unit* who) -> JustDied(Unit* killer) JustDied(Unit*) -> JustDied(Unit* /*killer*/) Signed-off-by: Gyx <2359980687@qq.com>
2012-02-27Core: Rename GetCreatureInfo to GetCreatureTemplate and minor cleanup here ↵Spp
and there
2012-02-03Core/Misc: Rename UNIT_STAT_* enums to UNIT_STATE_*Shocker
2012-01-01Update headers for 2012. HAPPY NEW YEAR!!!kiper
2011-10-10Scripts/EasternKingdom: Cleanup AV,BRD,BRSBootz
* Fixed codestyle "*c" -> "*creature" * Removed SD2 Hieroglyphics * Removed some hungarian notations * Adjusted Some Alignments (cosmetic) * Added spaces for "*"->" * " where needed (cosmetic) * Fixed couple variableNames DevNote: im sure VN's can be picked at and more found, but this was just a clean-up nothing more. ToDo: Alterac Valley - Core/db: needs spawns in side the final bosses dens fixed and agro ranges corrected.. not blizzlike. BRD - Tomb of seven - Learning Smelt Dark Iron if tribute quest rewarded. Missing event. blackrock_depths.cpp - Need to rewrite the Jail Break support Need to remove: npc_dughal_stormwing/npc_marshal_windsor/npc_marshal_reginald_windsor/npc_tobias_seecher if they are handled elsewhere, or get tehm fixed to uncomment them ;)
2011-09-29Cosmetic: Multiple cosmetic changesSpp
- Added missing space to 'if', 'for', 'while' and 'switch' when it's followed by '(' - Added missing space after a comma and remove space before comma (with some exceptions) - Remove trailing spaces - Convert tab to spaces Note: Only affects files with extension "cpp" and "h" under /src/server
2011-07-02Core: Cleaning up hungarian notation - Phase3: pTarget -> targetclick
2011-06-30Scripts: Reorder file names in Commands/CMakeList file and cosmetic changes ↵Spp-
in all scripts
2011-06-11Core: Codestyle cleanupclick
2011-04-29Add spaces after commasleak