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
-- ----------------------------------- -- | |
-- Cristian Soto González -- | |
-- ----------------------------------- -- | |
/* Datos a utilizar */ | |
-- set @p_rut := '7654384-1'; | |
-- set @c_edf := 03; | |
-- set @c_lect01 := 01; | |
-- set @c_lect02 := 02; | |
-- 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
# 2 | |
alter table session | |
add constraint fk_session_evento | |
foreign key (cod_evento) references `evento`(cod_evento) | |
on delete restrict on update restrict; | |
alter table session | |
add constraint fk_session_periodo | |
foreign key (num_periodo) references `periodo`(num_periodo) | |
on delete restrict on update restrict; |
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
/* | |
* Boss para reemplazar Gunship Battle de icc | |
*@Autor: Vertex | |
*@Version: 24-10-2011 | |
*/ | |
#include "ScriptMgr.h" | |
#include "ScriptedCreature.h" | |
#include "MapManager.h" | |
#include "icecrown_citadel.h" | |
//#include "ScriptPCH.h" |
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
enum eQuest | |
{ | |
q10866 = 10866 | |
}; | |
/*######################################################## | |
# Unlocking Zuluhed's Chains | |
##########################################################*/ | |
class spell_zuluhed : public SpellScriptLoader | |
{ | |
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
UPDATE `quest_template` SET `ReqSpellCast1` = 0 WHERE entry = 10866; |