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
Thanks: Saqirmdev @ Tibbi | |
Shared by: SymbolixDEV | |
Fixed by SymbolixDEV | |
Subject: [PATCH] Implentement Arena-Spectate for Trinity core 3.3.5a last rev | |
--- | |
src/server/game/Battlegrounds/Battleground.cpp | 30 +- | |
src/server/game/Battlegrounds/Battleground.h | 10 + | |
src/server/game/Battlegrounds/BattlegroundMgr.h | 6 +- | |
src/server/game/Battlegrounds/SpectatorAddon.cpp | 217 +++++++++ |
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 8d9b630c95b655607cd8d9e4d9d6c09f66ba44da Mon Sep 17 00:00:00 2001 | |
From: ddark <[email protected]> | |
Date: Wed, 6 Jun 2012 13:28:43 +0400 | |
Subject: [PATCH] Revert "Revert "Hack fix of Entrapment and Lock and Load"" | |
This reverts commit 05275b49931317c9910d9f8cd6a4050ecb7df336. | |
--- | |
sql/custom/world/spell_script_names.sql | 14 +++ | |
src/server/scripts/Spells/spell_hunter.cpp | 136 ++++++++++++++++++++++++++++ | |
2 files changed, 150 insertions(+), 0 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
diff --git a/sql/updates/world/2012_06_14_09_world_spell_script_names.sql b/sql/updates/world/2012_06_14_09_world_spell_script_names.sql | |
new file mode 100644 | |
index 0000000..f14e44e | |
--- /dev/null | |
+++ b/sql/updates/world/2012_06_14_09_world_spell_script_names.sql | |
@@ -0,0 +1,3 @@ | |
+DELETE FROM `spell_script_names` WHERE `spell_id`=-603; | |
+INSERT INTO `spell_script_names` (`spell_id` ,`ScriptName`) VALUES | |
+(-603,'spell_warl_curse_of_doom'); | |
diff --git a/src/server/game/Spells/Auras/SpellAuras.cpp b/src/server/game/Spells/Auras/SpellAuras.cpp |
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
diff --git a/sql/updates/world/2012_06_14_09_world_spell_script_names.sql b/sql/updates/world/2012_06_14_09_world_spell_script_names.sql | |
new file mode 100644 | |
index 0000000..f14e44e | |
--- /dev/null | |
+++ b/sql/updates/world/2012_06_14_09_world_spell_script_names.sql | |
@@ -0,0 +1,3 @@ | |
+DELETE FROM `spell_script_names` WHERE `spell_id`=-603; | |
+INSERT INTO `spell_script_names` (`spell_id` ,`ScriptName`) VALUES | |
+(-603,'spell_warl_curse_of_doom'); | |
diff --git a/src/server/game/Spells/Auras/SpellAuras.cpp b/src/server/game/Spells/Auras/SpellAuras.cpp |
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
Thanks: Saqirmdev @ Tibbi for Re-coded to new version | |
Shared by: SymbolixDEV | |
rev. https://github.com/TrinityCore/TrinityCore/commit/57145ada8162b89aeaba79f981068b93f1afb0eb | |
SaqiRev: https://github.com/saqirmdev/TrinityCore/commit/9fb1c18cfbda51023eb54d9932c94b4e13a86525 | |
=================================================================================================== | |
From 9fb1c18cfbda51023eb54d9932c94b4e13a86525 Mon Sep 17 00:00:00 2001 | |
From: Saqirmdev <[email protected]> | |
Date: Wed, 31 Oct 2012 22:56:35 +0100 |
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
diff --git a/sql/transmogrification/characters_transmogrification.sql b/sql/transmogrification/characters_transmogrification.sql | |
new file mode 100644 | |
index 0000000..8a73e1b | |
--- /dev/null | |
+++ b/sql/transmogrification/characters_transmogrification.sql | |
@@ -0,0 +1,6 @@ | |
+-- BlizzLikeCore Transmogrification | |
+CREATE TABLE IF NOT EXISTS `custom_transmogrification` ( | |
+ `GUID` int(10) unsigned NOT NULL DEFAULT '0', | |
+ `FakeEntry` int(10) unsigned NOT NULL DEFAULT '0', |
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
//Fixed by Ac-Web Community | |
//Modified by Marcus | |
//original script created by ?? | |
#include "ScriptPCH.h" | |
#include "Language.h" | |
#include "Pet.h" | |
#define GOSSIP_ITEM_STABLE "Stable" | |
#define GOSSIP_ITEM_NEWPET "New Pet" |
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
//by Dawnbringers | |
//Fixed error by Dawnbringers | |
#include "ScriptPCH.h" | |
#include "Chat.h" | |
/* Colors */ | |
#define MSG_COLOR_WHITE "|cffffffff" | |
#define MSG_COLOR_LIGHTBLUE "|cffADD8E6" | |
class anticheatcommand : public CommandScript |
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
/* | |
- Made by mthsena - | |
- Edited by Jameyboor - | |
- Fixed by Dawnbringers - | |
*/ | |
/* | |
SQL = |
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
// Created by AlexeWarr (ak47sigh) | |
//Special thankies to: Rochet2 & LittleCarl | |
#include "Chat.h" | |
#include "ScriptMgr.h" | |
//!Commands Info (Using .help <cmd>) | |
#define cinfo_player "Give warn to player." | |
#define cinfo_list_all "Show all available warnings" | |
#define cinfo_list_name "Show available warnings for player name." |