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
-- Fix Shadowmeld. | |
DELETE FROM spell_script_names WHERE spell_id = 58984; | |
INSERT INTO spell_script_names VALUES (58984, 'spell_gen_shadowmeld'); | |
-- Fix Sylvanas Music Box | |
DELETE FROM spell_script_names WHERE spell_id = 73331; | |
INSERT INTO spell_script_names VALUES ('73331', 'spell_item_sylvanas_music_box'); | |
-- Fix Glyph of Succubus. | |
DELETE FROM `spell_script_names` WHERE `spell_id`=6358; |
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
// 6358 - Seduction (Glyph of Succubus) | |
class spell_warl_seduction : public SpellScriptLoader | |
{ | |
public: | |
spell_warl_seduction() : SpellScriptLoader("spell_warl_seduction") { } | |
class spell_warl_seduction_SpellScript : public SpellScript | |
{ | |
PrepareSpellScript(spell_warl_seduction_SpellScript); |
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
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_rotface_slime_spray'; | |
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES | |
(69507, 'spell_rotface_slime_spray'), | |
(71213, 'spell_rotface_slime_spray'), | |
(73189, 'spell_rotface_slime_spray'), | |
(73190, 'spell_rotface_slime_spray'); | |
DELETE FROM `spell_proc_event` WHERE `entry` = 69762; | |
INSERT INTO `spell_proc_event` (entry, SchoolMask, SpellFamilyName, SpellFamilyMask0, SpellFamilyMask1, SpellFamilyMask2, procFlags, procEx, ppmRate, CustomChance, Cooldown) VALUES | |
(69762, 0, 0, 0, 0, 0, 81920, 0, 0, 0, 1); |
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
-- Move NPCs to proper locations | |
UPDATE `creature` SET `position_x` = '-558.109253', `position_y` = '2205.420654', `position_z` = 199.969559, `orientation` = 3.004918 WHERE `guid` = 200988; -- VINDICATOR | |
UPDATE `creature` SET `position_x` = '-531.942566', `position_y` = '2124.377930', `position_z` = 199.969681, `orientation` = 2.438634 WHERE `guid` = 201041; -- Horde DEFENDER | |
UPDATE `creature` SET `position_x` = '-540.092224', `position_y` = '2129.904785', `position_z` = 199.970352, `orientation` = 2.438634 WHERE `guid` = 201076; -- Ally NPC, | |
UPDATE `creature` SET `position_x` = '-562.132874', `position_y` = '2195.537354', `position_z` = 199.969757, `orientation` = 1.466264 WHERE `guid` = 201020; -- Ally sorcerer | |
DELETE FROM `creature` WHERE `guid` = 200896; | |
DELETE FROM `creature` WHERE `guid` = 200917; | |
DELETE FROM `creature` WHERE `guid` = 201176; | |
-- Texts |
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
// -30108 - Unstable Affliction | |
class spell_warl_unstable_affliction : public SpellScriptLoader | |
{ | |
public: | |
spell_warl_unstable_affliction() : SpellScriptLoader("spell_warl_unstable_affliction") { } | |
class spell_warl_unstable_affliction_AuraScript : public AuraScript | |
{ | |
PrepareAuraScript(spell_warl_unstable_affliction_AuraScript); |
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 error by SymbolixDEV | |
#pragma once | |
#include "ScriptPCH.h" | |
#include "Language.h" | |
class skill_npc : public CreatureScript | |
{ | |
public: |
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 SymbolixDEV | |
//Fixed Error : Elflock | |
#include "ScriptPCH.h" | |
#include "Channel.h" | |
#include "Player.h" | |
#include <sstream> | |
class channel_factions : public PlayerScript | |
{ | |
public: |
NewerOlder