This file contains hidden or 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
From 17f4d78f7c212918b58cde747e5e0e9fc09d2d21 Mon Sep 17 00:00:00 2001 | |
From: irancore <[email protected]> | |
Date: Thu, 9 Aug 2018 17:00:06 +0430 | |
Subject: [PATCH] CCDelay last rev | |
--- | |
src/server/game/Spells/Spell.cpp | 202 ++++++++++++++++++++++++++++++++++++++- | |
src/server/game/Spells/Spell.h | 2 + | |
2 files changed, 202 insertions(+), 2 deletions(-) |
This file contains hidden or 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
.../PitOfSaron/boss_scourgelord_tyrannus.cpp | 59 ++++++++++++++++++++++ | |
1 file changed, 59 insertions(+) | |
diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp | |
index 833c376..caaf06b 100644 | |
--- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp | |
+++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp | |
@@ -69,6 +69,10 @@ enum Spells | |
SPELL_EJECT_ALL_PASSENGERS = 50630, |
This file contains hidden or 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
REPLACE INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction_A`, `faction_H`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `mindmg`, `maxdmg`, `dmgschool`, `attackpower`, `dmg_multiplier`, `baseattacktime`, `rangeattacktime`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `trainer_type`, `trainer_spell`, `trainer_class`, `trainer_race`, `minrangedmg`, `maxrangedmg`, `rangedattackpower`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `InhabitType`, `HoverHeight`, `Health_mod`, `Mana_mod`, `Armor_mod`, `Racial |
This file contains hidden or 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
src/server/scripts/Spells/spell_hunter.cpp | 34 ++++++++++++++++++++++++++++++ | |
1 file changed, 34 insertions(+) | |
diff --git a/src/server/scripts/Spells/spell_hunter.cpp b/src/server/scripts/Spells/spell_hunter.cpp | |
index 2f8a5da..dea4532 100644 | |
--- a/src/server/scripts/Spells/spell_hunter.cpp | |
+++ b/src/server/scripts/Spells/spell_hunter.cpp | |
@@ -421,6 +421,39 @@ class spell_hun_masters_call : public SpellScriptLoader | |
return true; | |
} |
This file contains hidden or 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
ee60facee932117435260ff2d4a1e05c65d65b4b | |
.../scripts/Northrend/IcecrownCitadel/boss_festergut.cpp | 13 +++++++++++++ | |
.../scripts/Northrend/IcecrownCitadel/boss_rotface.cpp | 13 +++++++++++++ | |
2 files changed, 26 insertions(+) | |
diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp | |
index 884baaf..5d02f62 100644 | |
--- a/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp | |
+++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp | |
@@ -132,6 +132,19 @@ class boss_festergut : public CreatureScript |
This file contains hidden or 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
/* | |
* Copyright (C) 2008-2013 TrinityCore <http://www.trinitycore.org/> | |
* | |
* This program is free software; you can redistribute it and/or modify it | |
* under the terms of the GNU General Public License as published by the | |
* Free Software Foundation; either version 2 of the License, or (at your | |
* option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, but WITHOUT | |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
NewerOlder