diff options
author | Blaymoira <none@none> | 2008-12-13 22:56:07 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2008-12-13 22:56:07 +0100 |
commit | cba1d33b4a082817ff7033c0e7892ceb6208181e (patch) | |
tree | 2b4f25fab658977a09b3483bbd601b0644625493 | |
parent | ff9ad842fefef6102795e8cfd84baec0238863d4 (diff) |
*Changed Checktimer in Lady Vashj patch provided by streetrat
*Changed Beams by Hydross patch provided by streetrat
*Fixed a mistake in instance_steam_vault thx for pointing Aokromes
*Missed comment in lurker script
*Removed `world`. from 285_world.sql
--HG--
branch : trunk
5 files changed, 7 insertions, 7 deletions
diff --git a/sql/updates/285_world.sql b/sql/updates/285_world.sql index 146947f5973..ec0fcc989bf 100644 --- a/sql/updates/285_world.sql +++ b/sql/updates/285_world.sql @@ -1,4 +1,4 @@ --- general stuff +-- general stuff REPLACE INTO gameobject_template VALUES (178364,1,5773,"Horde Banner","",84,0,1,0,1479,196608,180101,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""); REPLACE INTO gameobject_template VALUES (178365,1,5771,"Alliance Banner","",83,0,1,0,1479,196608,180100,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""); @@ -18,7 +18,7 @@ REPLACE INTO gameobject_template VALUES (180423,6,266,"Neutral Banner Aura, Larg REPLACE INTO gameobject_template VALUES (180424,0,3751,"Alterac Valley Gate","",100,0,3.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,""); -- following is the player loot.. it takes the id 1 - be sure that i don't delete anything -REPLACE INTO `world`.`creature_loot_template` (`entry` ,`item` ,`ChanceOrQuestChance` ,`groupid` ,`mincountOrRef` ,`maxcount` ,`lootcondition` ,`condition_value1` ,`condition_value2`) +REPLACE INTO `creature_loot_template` (`entry` ,`item` ,`ChanceOrQuestChance` ,`groupid` ,`mincountOrRef` ,`maxcount` ,`lootcondition` ,`condition_value1` ,`condition_value2`) VALUES ('1', '17306', '33', '0', '5', '15', '6', '67', '0'), ('1', '17422', '100', '0', '20', '40', '0', '0', '0'), ('1', '17423', '33', '0', '5', '15', '6', '469', '0'), diff --git a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp index 07adcf4b225..fba07fd8f2a 100644 --- a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp +++ b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp @@ -56,7 +56,7 @@ EndScriptData */ #define SPELL_ENRAGE 27680 //this spell need verification #define SPELL_SUMMON_WATER_ELEMENT 36459 //not in use yet(in use ever?) #define SPELL_ELEMENTAL_SPAWNIN 25035 -#define SPELL_BLUE_BEAM /*40227*/38015 //channeled Hydross Beam Helper (not in use yet) +#define SPELL_BLUE_BEAM /*40227*/40227 //channeled Hydross Beam Helper (not in use yet) #define ENTRY_PURE_SPAWN 22035 #define ENTRY_TAINTED_SPAWN 22036 diff --git a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp index ff6669b35a4..58bdc505fbf 100644 --- a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp +++ b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp @@ -170,7 +170,7 @@ struct TRINITY_DLL_DECL boss_lady_vashjAI : public ScriptedAI Entangle_Timer = 30000; StaticCharge_Timer = 10000+rand()%15000; ForkedLightning_Timer = 2000; - Check_Timer = 1000; + Check_Timer = 15000; EnchantedElemental_Timer = 5000; TaintedElemental_Timer = 50000; CoilfangElite_Timer = 45000+rand()%5000; @@ -468,7 +468,7 @@ struct TRINITY_DLL_DECL boss_lady_vashjAI : public ScriptedAI if(!InMeleeRange) CastShootOrMultishot(); - Check_Timer = 1000; + Check_Timer = 5000; }else Check_Timer -= diff; } //Phase 2 diff --git a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lurker_below.cpp b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lurker_below.cpp index b2bcadffff0..8be276954c0 100644 --- a/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lurker_below.cpp +++ b/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lurker_below.cpp @@ -17,7 +17,7 @@ /* ScriptData SDName: boss_the_lurker_below SD%Complete: 80 -SDComment: +SDComment: Scalding Water other things. SDCategory: The Lurker Below EndScriptData */ diff --git a/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp b/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp index b6884e56538..c635f4c6ad5 100644 --- a/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp +++ b/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp @@ -1,4 +1,4 @@ -tet/* Copyright (C) 2006 - 2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> +/* Copyright (C) 2006 - 2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * 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 |