mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Merge branch 'master' into 4.x
Conflicts: src/server/authserver/Server/AuthSocket.cpp src/server/game/Entities/Object/Object.cpp src/server/game/Entities/Player/Player.cpp src/server/game/Entities/Unit/Unit.cpp src/server/game/Handlers/AuctionHouseHandler.cpp src/server/game/Handlers/CharacterHandler.cpp src/server/game/Handlers/MovementHandler.cpp src/server/game/Miscellaneous/SharedDefines.h src/server/game/Spells/Spell.cpp src/server/game/Spells/SpellEffects.cpp
This commit is contained in:
1
sql/old/3.3.5a/2011_11_24_00_world_version.sql
Normal file
1
sql/old/3.3.5a/2011_11_24_00_world_version.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE `version` SET `db_version`='TDB 335.11.44' LIMIT 1;
|
||||
38
sql/old/3.3.5a/2011_11_25_00_world_quest_template.sql
Normal file
38
sql/old/3.3.5a/2011_11_25_00_world_quest_template.sql
Normal file
@@ -0,0 +1,38 @@
|
||||
ALTER TABLE `quest_template` ADD COLUMN `RequiredClasses` smallint(5) unsigned NOT NULL default '0' AFTER `Type`;
|
||||
|
||||
UPDATE `quest_template`
|
||||
SET `RequiredClasses` = `RequiredClasses`|
|
||||
CASE `SkillOrClassMask`
|
||||
WHEN -1 THEN 1 -- warrior
|
||||
WHEN -2 THEN 2 -- paladin
|
||||
WHEN -3 THEN 4 -- hunter
|
||||
WHEN -4 THEN 8 -- rogue
|
||||
WHEN -5 THEN 16 -- priest
|
||||
WHEN -6 THEN 32 -- dk
|
||||
WHEN -7 THEN 64 -- shaman
|
||||
WHEN -8 THEN 128 -- mage
|
||||
WHEN -9 THEN 256 -- warlock
|
||||
WHEN -11 THEN 1024 -- druid
|
||||
ELSE 0
|
||||
END
|
||||
WHERE `SkillOrClassMask` < 0;
|
||||
|
||||
UPDATE `quest_template`
|
||||
SET `RequiredClasses` = `RequiredClasses`|
|
||||
CASE `ZoneOrSort`
|
||||
WHEN -81 THEN 1 -- warrior
|
||||
WHEN -141 THEN 2 -- paladin
|
||||
WHEN -261 THEN 4 -- hunter
|
||||
WHEN -162 THEN 8 -- rogue
|
||||
WHEN -262 THEN 16 -- priest
|
||||
WHEN -372 THEN 32 -- dk
|
||||
WHEN -82 THEN 64 -- shaman
|
||||
WHEN -161 THEN 128 -- mage
|
||||
WHEN -61 THEN 256 -- warlock
|
||||
WHEN -263 THEN 1024 -- druid
|
||||
ELSE 0
|
||||
END
|
||||
WHERE `ZoneOrSort` < 0;
|
||||
|
||||
UPDATE `quest_template` SET `SkillOrClassMask`=0 WHERE `SkillOrClassMask`<0;
|
||||
ALTER TABLE `quest_template` CHANGE COLUMN `SkillOrClassMask` `RequiredSkill` smallint(5) unsigned NOT NULL default '0' AFTER `RequiredRaces`;
|
||||
1
sql/old/3.3.5a/2011_11_25_01_world_quest_template.sql
Normal file
1
sql/old/3.3.5a/2011_11_25_01_world_quest_template.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE `quest_template` SET `RequiredClasses`=0 WHERE `entry`=8249; -- Junkboxes Needed
|
||||
4
sql/old/3.3.5a/2011_11_25_02_world_creature.sql
Normal file
4
sql/old/3.3.5a/2011_11_25_02_world_creature.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
-- re-guid
|
||||
DELETE FROM `creature` WHERE `guid`=1022681 OR (`guid`=48191 AND `id`=18069);
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES
|
||||
(48191, 18069, 530, 1, 1, 0, 0, -714.823, 7931.65, 58.8672, 4.3693, 300, 0, 0, 60720, 29330, 0, 0, 0, 0);
|
||||
177
sql/old/3.3.5a/2011_11_26_00_world_quest_template.sql
Normal file
177
sql/old/3.3.5a/2011_11_26_00_world_quest_template.sql
Normal file
@@ -0,0 +1,177 @@
|
||||
-- Naming
|
||||
ALTER TABLE `quest_template`
|
||||
CHANGE `entry` `Id` mediumint(8) UNSIGNED NOT NULL default '0',
|
||||
CHANGE `QuestLevel` `Level` smallint(3) NOT NULL DEFAULT '1',
|
||||
CHANGE `RequiredSkill` `RequiredSkillId` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
|
||||
CHANGE `RequiredSkillValue` `RequiredSkillPoints` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
|
||||
CHANGE `RepObjectiveFaction` `RequiredFactionId1` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
|
||||
CHANGE `RepObjectiveFaction2` `RequiredFactionId2` smallint(5) UNSIGNED NOT NULL DEFAULT '0',
|
||||
CHANGE `RepObjectiveValue` `RequiredFactionValue1` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `RepObjectiveValue2` `RequiredFactionValue2` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `QuestFlags` `Flags` int(10) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `SpecialFlags` `SpecialFlags` tinyint(3) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `CharTitleId` `RewardTitleId` tinyint(3) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `PlayersSlain` `RequiredPlayerKills` tinyint(3) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `BonusTalents` `RewardTalents` tinyint(3) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewardArenaPoints` `RewardArenaPoints` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `NextQuestInChain` `NextQuestIdChain` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewXPId` `RewardXPId` tinyint(2) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `SrcItemId` `SourceItemId` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `SrcItemCount` `SourceItemCount` tinyint(3) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `SrcSpell` `SourceSpellId` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemId1` `RequiredItemId1` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemId2` `RequiredItemId2` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemId3` `RequiredItemId3` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemId4` `RequiredItemId4` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemId5` `RequiredItemId5` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemId6` `RequiredItemId6` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemCount1` `RequiredItemCount1` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemCount2` `RequiredItemCount2` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemCount3` `RequiredItemCount3` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemCount4` `RequiredItemCount4` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemCount5` `RequiredItemCount5` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqItemCount6` `RequiredItemCount6` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceId1` `RequiredSourceItemId1` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceId2` `RequiredSourceItemId2` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceId3` `RequiredSourceItemId3` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceId4` `RequiredSourceItemId4` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceCount1` `RequiredSourceItemCount1` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceCount2` `RequiredSourceItemCount2` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceCount3` `RequiredSourceItemCount3` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSourceCount4` `RequiredSourceItemCount4` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOId1` `RequiredNpcOrGo1` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOId2` `RequiredNpcOrGo2` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOId3` `RequiredNpcOrGo3` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOId4` `RequiredNpcOrGo4` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOCount1` `RequiredNpcOrGoCount1` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOCount2` `RequiredNpcOrGoCount2` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOCount3` `RequiredNpcOrGoCount3` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqCreatureOrGOCount4` `RequiredNpcOrGoCount4` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSpellCast1` `RequiredSpellCast1` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSpellCast2` `RequiredSpellCast2` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSpellCast3` `RequiredSpellCast3` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `ReqSpellCast4` `RequiredSpellCast4` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemId1` `RewardChoiceItemId1` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemId2` `RewardChoiceItemId2` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemId3` `RewardChoiceItemId3` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemId4` `RewardChoiceItemId4` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemId5` `RewardChoiceItemId5` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemId6` `RewardChoiceItemId6` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemCount1` `RewardChoiceItemCount1` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemCount2` `RewardChoiceItemCount2` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemCount3` `RewardChoiceItemCount3` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemCount4` `RewardChoiceItemCount4` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemCount5` `RewardChoiceItemCount5` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewChoiceItemCount6` `RewardChoiceItemCount6` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemId1` `RewardItemId1` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemId2` `RewardItemId2` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemId3` `RewardItemId3` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemId4` `RewardItemId4` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemCount1` `RewardItemCount1` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemCount2` `RewardItemCount2` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemCount3` `RewardItemCount3` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewItemCount4` `RewardItemCount4` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewRepFaction1` `RewardFactionId1` smallint(5) UNSIGNED default '0' NOT NULL comment 'faction id from Faction.dbc in this case',
|
||||
CHANGE `RewRepFaction2` `RewardFactionId2` smallint(5) UNSIGNED default '0' NOT NULL comment 'faction id from Faction.dbc in this case',
|
||||
CHANGE `RewRepFaction3` `RewardFactionId3` smallint(5) UNSIGNED default '0' NOT NULL comment 'faction id from Faction.dbc in this case',
|
||||
CHANGE `RewRepFaction4` `RewardFactionId4` smallint(5) UNSIGNED default '0' NOT NULL comment 'faction id from Faction.dbc in this case',
|
||||
CHANGE `RewRepFaction5` `RewardFactionId5` smallint(5) UNSIGNED default '0' NOT NULL comment 'faction id from Faction.dbc in this case',
|
||||
CHANGE `RewRepValueId1` `RewardFactionValueId1` mediumint(6) default '0' NOT NULL,
|
||||
CHANGE `RewRepValueId2` `RewardFactionValueId2` mediumint(6) default '0' NOT NULL,
|
||||
CHANGE `RewRepValueId3` `RewardFactionValueId3` mediumint(6) default '0' NOT NULL,
|
||||
CHANGE `RewRepValueId4` `RewardFactionValueId4` mediumint(6) default '0' NOT NULL,
|
||||
CHANGE `RewRepValueId5` `RewardFactionValueId5` mediumint(6) default '0' NOT NULL,
|
||||
CHANGE `RewRepValue1` `RewardFactionValueIdOverride1` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `RewRepValue2` `RewardFactionValueIdOverride2` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `RewRepValue3` `RewardFactionValueIdOverride3` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `RewRepValue4` `RewardFactionValueIdOverride4` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `RewRepValue5` `RewardFactionValueIdOverride5` mediumint(9) default '0' NOT NULL,
|
||||
CHANGE `RewHonorAddition` `RewardHonor` int(10) default '0' NOT NULL,
|
||||
CHANGE `RewHonorMultiplier` `RewardHonorMultiplier` float default '1' NOT NULL,
|
||||
CHANGE `RewOrReqMoney` `RewardOrRequiredMoney` int(11) default '0' NOT NULL,
|
||||
CHANGE `RewMoneyMaxLevel` `RewardMoneyMaxLevel` int(10) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewSpell` `RewardSpell` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewSpellCast` `RewardSpellCast` int(11) default '0' NOT NULL,
|
||||
CHANGE `RewMailTemplateId` `RewardMailTemplateId` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `RewMailDelaySecs` `RewardMailDelay` int(11) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `PointOpt` `PointOption` mediumint(8) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `DetailsEmote1` `DetailsEmote1` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `IncompleteEmote` `EmoteOnIncomplete` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `CompleteEmote` `EmoteOnComplete` smallint(5) UNSIGNED default '0' NOT NULL,
|
||||
CHANGE `unk0` `Unknown0` TINYINT(2) UNSIGNED NOT NULL DEFAULT '0';
|
||||
|
||||
-- Order
|
||||
ALTER TABLE `quest_template` CHANGE COLUMN `Level` `Level` SMALLINT(3) NOT NULL DEFAULT '1' AFTER `Method`,
|
||||
CHANGE COLUMN `ZoneOrSort` `ZoneOrSort` SMALLINT(6) NOT NULL DEFAULT '0' AFTER `MaxLevel`,
|
||||
CHANGE COLUMN `SuggestedPlayers` `SuggestedPlayers` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `Type`,
|
||||
CHANGE COLUMN `LimitTime` `LimitTime` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `SuggestedPlayers`,
|
||||
CHANGE COLUMN `RequiredFactionId2` `RequiredFactionId2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredFactionId1`,
|
||||
CHANGE COLUMN `RequiredMaxRepFaction` `RequiredMaxRepFaction` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredMinRepFaction`,
|
||||
CHANGE COLUMN `RewardOrRequiredMoney` `RewardOrRequiredMoney` INT(11) NOT NULL DEFAULT '0' AFTER `RewardXPId`,
|
||||
CHANGE COLUMN `RewardMoneyMaxLevel` `RewardMoneyMaxLevel` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardOrRequiredMoney`,
|
||||
CHANGE COLUMN `RewardSpell` `RewardSpell` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardMoneyMaxLevel`,
|
||||
CHANGE COLUMN `RewardSpellCast` `RewardSpellCast` INT(11) NOT NULL DEFAULT '0' AFTER `RewardSpell`,
|
||||
CHANGE COLUMN `RewardHonor` `RewardHonor` INT(10) NOT NULL DEFAULT '0' AFTER `RewardSpellCast`,
|
||||
CHANGE COLUMN `RewardHonorMultiplier` `RewardHonorMultiplier` FLOAT NOT NULL DEFAULT '1' AFTER `RewardHonor`,
|
||||
CHANGE COLUMN `RewardMailTemplateId` `RewardMailTemplateId` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardHonorMultiplier`,
|
||||
CHANGE COLUMN `RewardMailDelay` `RewardMailDelay` INT(11) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardMailTemplateId`,
|
||||
CHANGE COLUMN `Flags` `Flags` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `SourceSpellId`,
|
||||
CHANGE COLUMN `SpecialFlags` `SpecialFlags` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `Flags`,
|
||||
CHANGE COLUMN `RewardTitleId` `RewardTitleId` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `SpecialFlags`,
|
||||
CHANGE COLUMN `RequiredPlayerKills` `RequiredPlayerKills` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardTitleId`,
|
||||
CHANGE COLUMN `RewardTalents` `RewardTalents` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredPlayerKills`,
|
||||
CHANGE COLUMN `RewardArenaPoints` `RewardArenaPoints` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardTalents`,
|
||||
CHANGE COLUMN `RewardItemId1` `RewardItemId1` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardArenaPoints`,
|
||||
CHANGE COLUMN `RewardItemId2` `RewardItemId2` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardItemId1`,
|
||||
CHANGE COLUMN `RewardItemId3` `RewardItemId3` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardItemId2`,
|
||||
CHANGE COLUMN `RewardItemId4` `RewardItemId4` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardItemId3`,
|
||||
CHANGE COLUMN `RewardItemCount1` `RewardItemCount1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardItemId4`,
|
||||
CHANGE COLUMN `RewardItemCount2` `RewardItemCount2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardItemCount1`,
|
||||
CHANGE COLUMN `RewardItemCount3` `RewardItemCount3` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardItemCount2`,
|
||||
CHANGE COLUMN `RewardItemCount4` `RewardItemCount4` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardItemCount3`,
|
||||
CHANGE COLUMN `Title` `Title` TEXT NULL DEFAULT NULL AFTER `PointOption`,
|
||||
CHANGE COLUMN `Objectives` `Objectives` TEXT NULL DEFAULT NULL AFTER `Title`,
|
||||
CHANGE COLUMN `Details` `Details` TEXT NULL DEFAULT NULL AFTER `Objectives`,
|
||||
CHANGE COLUMN `EndText` `EndText` TEXT NULL DEFAULT NULL AFTER `Details`,
|
||||
CHANGE COLUMN `OfferRewardText` `OfferRewardText` TEXT NULL DEFAULT NULL AFTER `EndText`,
|
||||
CHANGE COLUMN `RequestItemsText` `RequestItemsText` TEXT NULL DEFAULT NULL AFTER `OfferRewardText`,
|
||||
CHANGE COLUMN `CompletedText` `CompletedText` TEXT NULL DEFAULT NULL AFTER `RequestItemsText`,
|
||||
CHANGE COLUMN `RequiredNpcOrGo1` `RequiredNpcOrGo1` MEDIUMINT(9) NOT NULL DEFAULT '0' AFTER `CompletedText`,
|
||||
CHANGE COLUMN `RequiredNpcOrGo2` `RequiredNpcOrGo2` MEDIUMINT(9) NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGo1`,
|
||||
CHANGE COLUMN `RequiredNpcOrGo3` `RequiredNpcOrGo3` MEDIUMINT(9) NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGo2`,
|
||||
CHANGE COLUMN `RequiredNpcOrGo4` `RequiredNpcOrGo4` MEDIUMINT(9) NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGo3`,
|
||||
CHANGE COLUMN `RequiredNpcOrGoCount1` `RequiredNpcOrGoCount1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGo4`,
|
||||
CHANGE COLUMN `RequiredNpcOrGoCount2` `RequiredNpcOrGoCount2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGoCount1`,
|
||||
CHANGE COLUMN `RequiredNpcOrGoCount3` `RequiredNpcOrGoCount3` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGoCount2`,
|
||||
CHANGE COLUMN `RequiredNpcOrGoCount4` `RequiredNpcOrGoCount4` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGoCount3`,
|
||||
CHANGE COLUMN `RequiredSourceItemId1` `RequiredSourceItemId1` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredNpcOrGoCount4`,
|
||||
CHANGE COLUMN `RequiredSourceItemId2` `RequiredSourceItemId2` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemId1`,
|
||||
CHANGE COLUMN `RequiredSourceItemId3` `RequiredSourceItemId3` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemId2`,
|
||||
CHANGE COLUMN `RequiredSourceItemId4` `RequiredSourceItemId4` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemId3`,
|
||||
CHANGE COLUMN `RequiredSourceItemCount1` `RequiredSourceItemCount1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemId4`,
|
||||
CHANGE COLUMN `RequiredSourceItemCount2` `RequiredSourceItemCount2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemCount1`,
|
||||
CHANGE COLUMN `RequiredSourceItemCount3` `RequiredSourceItemCount3` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemCount2`,
|
||||
CHANGE COLUMN `RequiredSourceItemCount4` `RequiredSourceItemCount4` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemCount3`,
|
||||
CHANGE COLUMN `RequiredItemId1` `RequiredItemId1` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSourceItemCount4`,
|
||||
CHANGE COLUMN `RequiredItemId2` `RequiredItemId2` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemId1`,
|
||||
CHANGE COLUMN `RequiredItemId3` `RequiredItemId3` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemId2`,
|
||||
CHANGE COLUMN `RequiredItemId4` `RequiredItemId4` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemId3`,
|
||||
CHANGE COLUMN `RequiredItemId5` `RequiredItemId5` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemId4`,
|
||||
CHANGE COLUMN `RequiredItemId6` `RequiredItemId6` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemId5`,
|
||||
CHANGE COLUMN `RequiredItemCount1` `RequiredItemCount1` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemId6`,
|
||||
CHANGE COLUMN `RequiredItemCount2` `RequiredItemCount2` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemCount1`,
|
||||
CHANGE COLUMN `RequiredItemCount3` `RequiredItemCount3` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemCount2`,
|
||||
CHANGE COLUMN `RequiredItemCount4` `RequiredItemCount4` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemCount3`,
|
||||
CHANGE COLUMN `RequiredItemCount5` `RequiredItemCount5` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemCount4`,
|
||||
CHANGE COLUMN `RequiredItemCount6` `RequiredItemCount6` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemCount5`,
|
||||
CHANGE COLUMN `RequiredSpellCast1` `RequiredSpellCast1` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredItemCount6`,
|
||||
CHANGE COLUMN `RequiredSpellCast2` `RequiredSpellCast2` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSpellCast1`,
|
||||
CHANGE COLUMN `RequiredSpellCast3` `RequiredSpellCast3` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSpellCast2`,
|
||||
CHANGE COLUMN `RequiredSpellCast4` `RequiredSpellCast4` MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSpellCast3`,
|
||||
CHANGE COLUMN `Unknown0` `Unknown0` TINYINT(2) UNSIGNED NOT NULL DEFAULT '0' AFTER `RequiredSpellCast4`,
|
||||
CHANGE COLUMN `ObjectiveText1` `ObjectiveText1` TEXT NULL DEFAULT NULL AFTER `Unknown0`,
|
||||
CHANGE COLUMN `ObjectiveText2` `ObjectiveText2` TEXT NULL DEFAULT NULL AFTER `ObjectiveText1`,
|
||||
CHANGE COLUMN `ObjectiveText3` `ObjectiveText3` TEXT NULL DEFAULT NULL AFTER `ObjectiveText2`,
|
||||
CHANGE COLUMN `ObjectiveText4` `ObjectiveText4` TEXT NULL DEFAULT NULL AFTER `ObjectiveText3`;
|
||||
|
||||
-- Note: These two ALTER could have been merged into one
|
||||
1
sql/old/3.3.5a/2011_11_26_01_world_quest_template.sql
Normal file
1
sql/old/3.3.5a/2011_11_26_01_world_quest_template.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE `quest_template` SET `RequiredRaces`=0 WHERE `Id`=14171;
|
||||
7
sql/old/3.3.5a/2011_11_26_02_world_spell_group.sql
Normal file
7
sql/old/3.3.5a/2011_11_26_02_world_spell_group.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
-- Blessing of Sanctuary + Grace
|
||||
DELETE FROM `spell_group` WHERE `id`>=1091 AND `id`<=1093 LIMIT 4;
|
||||
DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1093 LIMIT 1;
|
||||
|
||||
-- Ebon Plague + Curse of Elements + Earth and Moon
|
||||
DELETE FROM `spell_group` WHERE `id`>=1040 AND `id`<=1043 LIMIT 6;
|
||||
DELETE FROM `spell_group_stack_rules` WHERE `group_id`=1043 LIMIT 1;
|
||||
2
sql/old/3.3.5a/2011_11_26_03_world_spell_proc_event.sql
Normal file
2
sql/old/3.3.5a/2011_11_26_03_world_spell_proc_event.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Misery
|
||||
UPDATE `spell_proc_event` SET `SpellFamilyMask2` = `SpellFamilyMask2` | 64 WHERE `entry` = 33193;
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `achievement_criteria_data` WHERE `type` = 11 AND `criteria_id` = 7363;
|
||||
INSERT INTO `achievement_criteria_data` VALUES
|
||||
(7363, 11, 0, 0, 'achievement_snakes_whyd_it_have_to_be_snakes');
|
||||
1
sql/old/3.3.5a/2011_11_26_04_world_disables.sql
Normal file
1
sql/old/3.3.5a/2011_11_26_04_world_disables.sql
Normal file
@@ -0,0 +1 @@
|
||||
DELETE FROM `disables` WHERE entry = 7363 AND sourceType = 4;
|
||||
2
sql/old/3.3.5a/2011_11_26_05_world_ulduar_gameobject.sql
Normal file
2
sql/old/3.3.5a/2011_11_26_05_world_ulduar_gameobject.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Set all gameobjects in Ulduar (excluding chests, including veins and herbs) spawned in 10 and 25 man difficult.
|
||||
UPDATE `gameobject` SET `spawnMask` = 3 WHERE `id` IN (194555, 194232, 194675, 194560, 194569, 194370, 194371, 194630, 194631, 194375, 194377, 194634, 194635, 194636, 194637, 194904, 194905, 194907, 194398, 194399, 194400, 194401, 194402, 194914, 194403, 194915, 194404, 194405, 194406, 194407, 194663, 194408, 194664, 194665, 194409, 194666, 194410, 194411, 194412, 194413, 194414, 194415, 194416, 194437, 194441, 194442, 194704, 194705, 194706, 194707, 194481, 194484, 194235, 194236, 194750, 194506, 194255, 194773, 194261, 194262, 194264, 194553, 194554, 194556, 194557, 194558, 194559, 194565, 194912, 194913, 194739, 194740, 194741, 194742, 194743, 194744, 194745, 194746, 194747, 194748, 194749, 194774, 194775, 194776) AND `map` = 603;
|
||||
18
sql/old/3.3.5a/2011_11_26_06_world_sai.sql
Normal file
18
sql/old/3.3.5a/2011_11_26_06_world_sai.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
-- [Q] [H] Teron Gorefiend, I am...
|
||||
-- Ancient Shadowmoon Spirit SAI
|
||||
SET @ENTRY := 21797;
|
||||
SET @QUEST := 10639;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `Id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Ancient Shadowmoon Spirit - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Ancient Shadowmoon Spirit - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,5000,5000,0,0,12,21877,1,300000,0,0,0,8,0,0,0,-4536.58,1028.76,8.8266,3.72963,"Ancient Shadowmoon Spirit - On Script - Summon Karsius the Ancient Watcher");
|
||||
-- Text
|
||||
DELETE FROM `db_script_string` WHERE `entry`=2000000031;
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Your body is mine! Our fates are forever intertwined!",14,0,100,0,0,0,"Ancient Shadowmoon Spirit");
|
||||
4
sql/old/3.3.5a/2011_11_27_00_world_creature_template.sql
Normal file
4
sql/old/3.3.5a/2011_11_27_00_world_creature_template.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
UPDATE `creature_template` SET `mindmg`=509,`maxdmg`=683,`attackpower`=805,`dmg_multiplier`=150 WHERE `entry`=36597; -- The Lich King 10N
|
||||
UPDATE `creature_template` SET `mindmg`=509,`maxdmg`=683,`attackpower`=805,`dmg_multiplier`=180 WHERE `entry`=39166; -- The Lich King 25N
|
||||
UPDATE `creature_template` SET `mindmg`=509,`maxdmg`=683,`attackpower`=805,`dmg_multiplier`=180 WHERE `entry`=39167; -- The Lich King 10H
|
||||
UPDATE `creature_template` SET `mindmg`=509,`maxdmg`=683,`attackpower`=805,`dmg_multiplier`=225 WHERE `entry`=39168; -- The Lich King 25H
|
||||
6
sql/old/3.3.5a/2011_11_27_00_world_spell_script.sql
Normal file
6
sql/old/3.3.5a/2011_11_27_00_world_spell_script.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_gen_damage_reduction_aura';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(20911,'spell_gen_damage_reduction_aura'), -- Blessing of Sanctuary
|
||||
(25899,'spell_gen_damage_reduction_aura'), -- Greater Blessing of Sanctuary
|
||||
(63944,'spell_gen_damage_reduction_aura'), -- Renewed Hope
|
||||
(50720,'spell_gen_damage_reduction_aura'); -- Vigilance
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM achievement_criteria_data WHERE criteria_id = 3693;
|
||||
INSERT INTO achievement_criteria_data VALUES
|
||||
(3693, 11, 0, 0, 'achievement_bg_control_all_nodes');
|
||||
4
sql/old/3.3.5a/2011_11_29_00_world_spell_script.sql
Normal file
4
sql/old/3.3.5a/2011_11_29_00_world_spell_script.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_gen_damage_reduction_aura' AND `spell_id`=50720;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_warr_vigilance';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(50720,'spell_warr_vigilance'); -- Vigilance
|
||||
4
sql/old/3.3.5a/2011_12_03_00_world_gameobject.sql
Normal file
4
sql/old/3.3.5a/2011_12_03_00_world_gameobject.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
DELETE FROM `gameobject` WHERE `guid` IN (207,215) AND `id`=300245; -- TEMP Forgemaster''s Anvil
|
||||
INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES
|
||||
(207, 300245, 658, 3, 1, 637.954, -209.544, 533.269, 3.53903, 0, 0, 0.980321, -0.197413, 300, 0, 1),
|
||||
(215, 300245, 658, 3, 1, 726.268, -237.654, 534.13, 5.5732, 0, 0, 0.347582, -0.93765, 300, 0, 1);
|
||||
12
sql/old/3.3.5a/2011_12_08_00_world_gossip.sql
Normal file
12
sql/old/3.3.5a/2011_12_08_00_world_gossip.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
-- fixing conflict in number of gossip_menu_option.menu_id -- compare 2011_10_23_04_world_sai.sql with 2011_10_23_07_world_sai.sql
|
||||
SET @ENTRY := 18417;
|
||||
SET @OLDGOSSIP := 21304;
|
||||
SET @NEWGOSSIP := 21312;
|
||||
SET @QUEST_PUPIL := 10646;
|
||||
-- Fixing smart_scripts
|
||||
UPDATE `smart_scripts` SET `event_param1`=@NEWGOSSIP WHERE `entryorguid`=@ENTRY AND `source_type`=0 AND `id`=2 AND `action_param1`=@QUEST_PUPIL;
|
||||
-- Fixing gossip_menu_option
|
||||
UPDATE `gossip_menu_option` SET `action_menu_id`=@NEWGOSSIP WHERE `menu_id`=@OLDGOSSIP+5;
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id`=@NEWGOSSIP;
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`) VALUES
|
||||
(@NEWGOSSIP,0,0,"There was something else I wanted to ask you, Altruis.",1,3,@OLDGOSSIP+0);
|
||||
@@ -0,0 +1,71 @@
|
||||
-- Missing achievement data (checked via DBC files)
|
||||
DELETE FROM `player_factionchange_achievement` WHERE `alliance_id` IN (35,41,58,202,206,220,225,230,246,388,433,434,435,436,437,438,439,440,441,442,470,471,472,473,707,764,907,908,1167,1169,1172,1262,1466,1563,1681,1737,1752,1757,1762,1782,2016,2194,2536,2760,2761,2762,2763,2764,2770,2777,2778,2779,2780,2781,2782,2817,3356,3478,3676,3846,3851,3856,3857,4156,4296,4298,4784,4786);
|
||||
INSERT INTO `player_factionchange_achievement` (`alliance_id`,`horde_id`) VALUES
|
||||
(35,1359),
|
||||
(41,1360),
|
||||
(58,593),
|
||||
(202,1502),
|
||||
(206,1252),
|
||||
(220,873),
|
||||
(225,1164),
|
||||
(230,1175),
|
||||
(246,1005),
|
||||
(388,1006),
|
||||
(433,443),
|
||||
(434,445),
|
||||
(435,444),
|
||||
(436,447),
|
||||
(437,448),
|
||||
(438,469),
|
||||
(439,451),
|
||||
(440,452),
|
||||
(441,450),
|
||||
(442,454),
|
||||
(470,468),
|
||||
(471,453),
|
||||
(472,449),
|
||||
(473,446),
|
||||
(707,706),
|
||||
(764,763),
|
||||
(907,714),
|
||||
(908,909),
|
||||
(1167,1168),
|
||||
(1169,1170),
|
||||
(1172,1173),
|
||||
(1262,1274),
|
||||
(1466,926),
|
||||
(1563,1784),
|
||||
(1681,1682),
|
||||
(1737,2476),
|
||||
(1752,2776),
|
||||
(1757,2200),
|
||||
(1762,2192),
|
||||
(1782,1783),
|
||||
(2016,2017),
|
||||
(2194,2195),
|
||||
(2536,2537),
|
||||
(2760,2768),
|
||||
(2761,2767),
|
||||
(2762,2766),
|
||||
(2763,2769),
|
||||
(2764,2765),
|
||||
(2770,2771),
|
||||
(2777,2786),
|
||||
(2778,2785),
|
||||
(2779,2784),
|
||||
(2780,2787),
|
||||
(2781,2783),
|
||||
(2782,2788),
|
||||
(2817,2816),
|
||||
(3356,3357),
|
||||
(3478,3656),
|
||||
(3676,3677),
|
||||
(3846,4176),
|
||||
(3851,4177),
|
||||
(3856,4256),
|
||||
(3857,3957),
|
||||
(4156,4079),
|
||||
(4296,3778),
|
||||
(4298,4297),
|
||||
(4784,4785),
|
||||
(4786,4790);
|
||||
@@ -0,0 +1,11 @@
|
||||
-- Fix the HP sharing of Twin Valkyr - All Modes
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (34497,35350,35351,35352,34496,35347,35348,35349);
|
||||
INSERT INTO `creature_template_addon` (`entry`,`auras`) VALUES
|
||||
(34497,'66133'),
|
||||
(35350,'66133'),
|
||||
(35351,'66133'),
|
||||
(35352,'66133'),
|
||||
(34496,'66132'),
|
||||
(35347,'66132'),
|
||||
(35348,'66132'),
|
||||
(35349,'66132');
|
||||
2
sql/old/3.3.5a/2011_12_10_00_world_spell_proc_event.sql
Normal file
2
sql/old/3.3.5a/2011_12_10_00_world_spell_proc_event.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Bloodsurge
|
||||
UPDATE `spell_proc_event` SET `procEx` = 0x0040000 WHERE `entry` = 46915;
|
||||
@@ -0,0 +1,23 @@
|
||||
DELETE FROM `achievement_criteria_data` WHERE criteria_id IN (5220, 5215, 5218, 5221, 5216, 5219, 5213, 5018, 5217, 5214, 5233, 5235, 5232, 5234, 5238, 5236, 5229, 5237, 5230, 5231);
|
||||
-- Classes
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5220, 2, 1, 0, ''); -- Realm First! Level 80 Warrior
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5215, 2, 2, 0, ''); -- Realm First! Level 80 Paladin
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5218, 2, 3, 0, ''); -- Realm First! Level 80 Hunter
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5221, 2, 4, 0, ''); -- Realm First! Level 80 Rogue
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5216, 2, 5, 0, ''); -- Realm First! Level 80 Priest
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5219, 2, 6, 0, ''); -- Realm First! Level 80 Death Knight
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5213, 2, 7, 0, ''); -- Realm First! Level 80 Shaman
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5018, 2, 8, 0, ''); -- Realm First! Level 80 Mage
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5217, 2, 9, 0, ''); -- Realm First! Level 80 Warlock
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5214, 2, 11, 0, ''); -- Realm First! Level 80 Druid
|
||||
-- Races
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5233, 2, 0, 1, ''); -- Realm First! Level 80 Human
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5235, 2, 0, 2, ''); -- Realm First! Level 80 Orc
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5232, 2, 0, 3, ''); -- Realm First! Level 80 Dwarf
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5234, 2, 0, 4, ''); -- Realm First! Level 80 Night Elf
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5238, 2, 0, 5, ''); -- Realm First! Level 80 Undead
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5236, 2, 0, 6, ''); -- Realm First! Level 80 Tauren
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5229, 2, 0, 7, ''); -- Realm First! Level 80 Gnome
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5237, 2, 0, 8, ''); -- Realm First! Level 80 Troll
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5230, 2, 0, 10, ''); -- Realm First! Level 80 Blood Elf
|
||||
INSERT INTO `achievement_criteria_data` VALUES (5231, 2, 0, 11, ''); -- Realm First! Level 80 Draenei
|
||||
3
sql/old/3.3.5a/2011_12_12_00_world_spell_bonus_data.sql
Normal file
3
sql/old/3.3.5a/2011_12_12_00_world_spell_bonus_data.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_bonus_data` WHERE `entry` IN (52042,5672);
|
||||
INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
|
||||
(5672,0.0827,-1,-1,-1, 'Shaman - Healing Stream Totem Rank 1');
|
||||
6
sql/old/3.3.5a/2011_12_13_00_world_misc.sql
Normal file
6
sql/old/3.3.5a/2011_12_13_00_world_misc.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
DELETE FROM `creature_text` WHERE `entry`=28012;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(28012,0,0,'The trickster Mage-Lord Urom protects the third ring. He will appear alone and defenseless, but do not be fooled by appearences! Urom is a powerful conjurer who commands a menagerie of Phantasmal creatures. Seek him out above.',12,0,0,0,0,0,''),
|
||||
(28012,1,1,'Your greatest challenge lies ahead. Ley-Guardian Eregos is a Blue dragon of immense power. You will find him flying above the uppermost ring.',12,0,0,0,0,0,'');
|
||||
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_image_belgaristrasz' WHERE `entry`=28012;
|
||||
@@ -0,0 +1,12 @@
|
||||
-- Experienced Drake Rider Achiev
|
||||
|
||||
DELETE FROM `disables` WHERE `entry` IN (7177,7178,7179);
|
||||
|
||||
DELETE FROM `achievement_criteria_data` WHERE `criteria_id` IN (7177,7178,7179);
|
||||
INSERT INTO `achievement_criteria_data` (`criteria_id`,`type`,`value1`,`value2`,`ScriptName`) VALUES
|
||||
(7177,5,49460,1,''), -- Amber Drake
|
||||
(7177,12,1,0, ''), -- hc mode only
|
||||
(7178,5,49346,1,''), -- Emerald Drake
|
||||
(7178,12,1,0, ''), -- hc mode only
|
||||
(7179,5,49464,1,''), -- Ruby Drake
|
||||
(7179,12,1,0, ''); -- hc mode only
|
||||
@@ -0,0 +1,2 @@
|
||||
-- Fix speed of oculus drakes
|
||||
UPDATE `creature_template_addon` SET `auras`='50325' WHERE `entry` IN (27755,27692,27756);
|
||||
4
sql/old/3.3.5a/2011_12_14_00_world_command.sql
Normal file
4
sql/old/3.3.5a/2011_12_14_00_world_command.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
DELETE FROM `trinity_string` WHERE `entry` IN(19,20); # unused entries
|
||||
INSERT INTO `trinity_string` (`entry`,`content_default`) VALUES
|
||||
(19,'Update time diff: %u.'),
|
||||
(20,'Time left until shutdown/restart: %s');
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `gameobject_template` SET `scriptName` = 'go_ethereal_teleport_pad' WHERE `entry` = 184073; -- Update Ethereal Teleport Pad scriptname
|
||||
4
sql/old/3.3.5a/2011_12_16_00_world_creature_template.sql
Normal file
4
sql/old/3.3.5a/2011_12_16_00_world_creature_template.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
-- Greater Fire Elemental script
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_fire_elemental' WHERE `entry`=15438;
|
||||
-- Greater Earth Elemental script
|
||||
UPDATE `creature_template` SET `ScriptName`='npc_earth_elemental' WHERE `entry`=15352;
|
||||
5
sql/old/3.3.5a/2011_12_16_00_world_spell_bonus_data.sql
Normal file
5
sql/old/3.3.5a/2011_12_16_00_world_spell_bonus_data.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
-- Bounus coef for Greater Fire Elemental spells
|
||||
DELETE FROM `spell_bonus_data` WHERE `entry` IN (13376,57984);
|
||||
INSERT INTO `spell_bonus_data` (`entry`, `direct_bonus`, `dot_bonus`,`ap_bonus`, `ap_dot_bonus`, `comments`) VALUES
|
||||
(13376,0.032,-1,-1,-1,'Greater Fire Elemental - Fire Shield'),
|
||||
(57984,0.4289,-1,-1,-1,'Greater Fire Elemental - Fire Blast');
|
||||
974
sql/old/3.3.5a/2011_12_17_00_world_creature.sql
Normal file
974
sql/old/3.3.5a/2011_12_17_00_world_creature.sql
Normal file
@@ -0,0 +1,974 @@
|
||||
-- -------------
|
||||
-- UBRS FIXUP --
|
||||
-- -------------
|
||||
SET @GUID := 137817; -- 289 required
|
||||
DELETE FROM `creature` WHERE `map`=229 AND `id` IN (9098,9257,9258,9416,9045,9097,10339,9096,10083,10366,10371,10372,10680,10681,9816,9817,9818,9819,10317,10316,10740,16048,10430,10509,10363,10429,10318,10319,10742,10762,10899,10683,10264,10162);
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @GUID AND @GUID+288;
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`) VALUES
|
||||
-- Pyroguard Emberseer
|
||||
(@GUID,9816,229,1,1,0,0,144.438171,-258.034149,96.40662,4.677482,1000000,0,0,1,0,0),
|
||||
-- Rage Talon Dragonspawn
|
||||
(@GUID+1,9096,229,1,1,0,0,100.742607,-246.0053,106.518906,2.65290046,7200,0,0,1,0,0),
|
||||
(@GUID+2,9096,229,1,1,0,0,101.678032,-237.6665,106.518906,3.54301834,7200,0,0,1,0,0),
|
||||
(@GUID+3,9096,229,1,1,0,0,102.156441,-253.07338,106.5189,4.72320032,7200,0,0,1,0,0),
|
||||
(@GUID+4,9096,229,1,1,0,0,103.098129,-364.3394,116.925743,5.86430645,7200,0,0,1,0,0),
|
||||
(@GUID+5,9096,229,1,1,0,0,105.175392,-327.1109,106.518906,2.53072739,7200,0,0,1,0,0),
|
||||
(@GUID+6,9096,229,1,1,0,0,128.020447,-315.29,111.029076,2.984513,7200,0,0,1,0,0),
|
||||
(@GUID+7,9096,229,1,1,0,0,136.037247,-338.207458,111.043625,0.6457718,7200,0,0,1,0,0),
|
||||
(@GUID+8,9096,229,1,1,0,0,136.2818,-308.682281,111.073242,0.279252678,7200,0,0,1,0,0),
|
||||
(@GUID+9,9096,229,1,1,0,0,136.424042,-316.1892,111.063728,0.0174532924,7200,0,0,1,0,0),
|
||||
(@GUID+10,9096,229,1,1,0,0,138.315643,-395.08606,122.058578,4.764749,7200,0,0,1,0,0),
|
||||
(@GUID+11,9096,229,1,1,0,0,142.593109,-342.274048,111.040665,1.39626336,7200,0,0,1,0,0),
|
||||
(@GUID+12,9096,229,1,1,0,0,147.042328,-312.391449,71.03966,5.550147,7200,10,0,1,0,1),
|
||||
(@GUID+13,9096,229,1,1,0,0,153.89537,-332.387146,70.95632,3.14905024,7200,0,0,1,0,0),
|
||||
(@GUID+14,9096,229,1,1,0,0,161.09,-316.201721,70.95632,1.913126,7200,10,0,1,0,1),
|
||||
(@GUID+15,9096,229,1,1,0,0,165.520889,-394.921417,122.058556,4.677482,7200,0,0,1,0,0),
|
||||
(@GUID+16,9096,229,1,1,0,0,167.774048,-338.655426,111.0341,2.79252672,7200,0,0,1,0,0),
|
||||
(@GUID+17,9096,229,1,1,0,0,193.480331,-314.875244,77.0207748,5.375614,7200,10,0,1,0,1),
|
||||
(@GUID+18,9096,229,1,1,0,0,195.986176,-291.863159,76.93301,2.74624467,7200,10,0,1,0,1),
|
||||
(@GUID+19,9096,229,1,1,0,0,92.24497,-427.635468,111.006088,3.159046,7200,0,0,1,0,0),
|
||||
(@GUID+20,9096,229,1,1,0,0,94.5186539,-256.702728,91.53693,6.265732,7200,0,0,1,0,0),
|
||||
(@GUID+21,9096,229,1,1,0,0,96.17891,-268.540375,91.53113,1.37881,7200,0,0,1,0,0),
|
||||
(@GUID+22,9096,229,1,1,0,0,97.91753,-333.680664,106.5189,1.93731546,7200,0,0,1,0,0),
|
||||
-- Rage Talon Flamescale
|
||||
(@GUID+23,10083,229,1,1,0,0,102.801758,-332.1205,106.518906,2.21656823,7200,0,0,1,0,0),
|
||||
(@GUID+24,10083,229,1,1,0,0,141.698181,-394.829071,122.058556,4.86946869,7200,0,0,1,0,0),
|
||||
(@GUID+25,10083,229,1,1,0,0,151.5985,-312.834961,110.825859,1.583788,7200,0,0,1,0,0),
|
||||
(@GUID+26,10083,229,1,1,0,0,157.517059,-366.047333,116.844231,6.27482271,7200,0,0,1,0,0),
|
||||
(@GUID+27,10083,229,1,1,0,0,161.314163,-393.648651,122.058533,4.86946869,7200,0,0,1,0,0),
|
||||
(@GUID+28,10083,229,1,1,0,0,161.339554,-343.435425,111.039314,1.850049,7200,0,0,1,0,0),
|
||||
(@GUID+29,10083,229,1,1,0,0,74.99681,-316.2664,91.52034,5.86179638,7200,7,0,1,0,1),
|
||||
(@GUID+30,10083,229,1,1,0,0,81.0063858,-284.352936,91.53317,5.951573,7200,7,0,1,0,1),
|
||||
-- Rage Talon Dragon Guard
|
||||
(@GUID+31,10366,229,1,1,0,0,11.332943,-492.121582,111.022545,0.7330383,7200,0,0,1,0,0),
|
||||
(@GUID+32,10366,229,1,1,0,0,165.272675,-475.4804,116.842445,0.01255145,7200,0,0,1,0,0),
|
||||
(@GUID+33,10366,229,1,1,0,0,27.6826859,-426.0668,111.009117,5.480334,7200,0,0,1,0,0),
|
||||
(@GUID+34,10366,229,1,1,0,0,31.2498379,-497.100922,111.035072,1.27409029,7200,0,0,1,0,0),
|
||||
(@GUID+35,10366,229,1,1,0,0,39.75237,-426.769226,111.010643,3.96189737,7200,0,0,1,0,0),
|
||||
(@GUID+36,10366,229,1,1,0,0,43.22777,-449.182983,111.026749,3.85717773,7200,0,0,1,0,0),
|
||||
(@GUID+37,10366,229,1,1,0,0,8.27626,-487.534119,111.013985,0.436332315,7200,0,0,1,0,0),
|
||||
(@GUID+38,10366,229,1,1,0,0,92.84775,-489.693024,116.925728,1.58824956,7200,0,0,1,0,0),
|
||||
-- Goraluk Anvilcrack <Blackhand Legion Armorsmith>
|
||||
(@GUID+39,10899,229,1,1,0,0,147.684921,-242.757523,111.004608,1.7652961,7200,0,0,1,0,0),
|
||||
-- Rage Talon Captain
|
||||
(@GUID+40,10371,229,1,1,0,0,-10.6942663,-350.008,111.026779,0.8552113,7200,0,0,1,0,0),
|
||||
(@GUID+41,10371,229,1,1,0,0,-16.02218,-263.335266,111.026764,5.70722675,7200,0,0,1,0,0),
|
||||
(@GUID+42,10371,229,1,1,0,0,20.24981,-263.2449,111.026764,3.651049,7200,0,0,1,0,0),
|
||||
(@GUID+43,10371,229,1,1,0,0,33.96815,-327.537231,111.026779,4.729842,7200,0,0,1,0,0),
|
||||
(@GUID+44,10371,229,1,1,0,0,8.802712,-450.5478,111.020157,5.689773,7200,0,0,1,0,0),
|
||||
-- Rage Talon Fire Tongue
|
||||
(@GUID+45,10372,229,1,1,0,0,-15.58145,-344.314941,111.026779,0.715585,7200,0,0,1,0,0),
|
||||
(@GUID+46,10372,229,1,1,0,0,16.30601,-449.322784,111.029114,4.468043,7200,0,0,1,0,0),
|
||||
(@GUID+47,10372,229,1,1,0,0,21.4282932,-475.194733,111.038452,1.76278257,7200,0,0,1,0,0),
|
||||
(@GUID+48,10372,229,1,1,0,0,23.7180157,-258.2444,111.030754,3.46037364,7200,0,0,1,0,0),
|
||||
(@GUID+49,10372,229,1,1,0,0,26.412632,-327.414429,111.026779,4.79965544,7200,0,0,1,0,0),
|
||||
(@GUID+50,10372,229,1,1,0,0,6.645312,-460.464966,111.016,0.418879032,7200,0,0,1,0,0),
|
||||
(@GUID+51,10372,229,1,1,0,0,86.68403,-480.173737,116.925743,0.8552113,7200,0,0,1,0,0),
|
||||
-- Blackhand Summoner <Blackhand Legion>
|
||||
(@GUID+52,9818,229,1,1,0,0,124.871681,-334.522583,71.04309,4.694936,7200,0,0,1,0,0),
|
||||
(@GUID+53,9818,229,1,1,0,0,128.321472,-295.045166,71.06125,3.874631,7200,0,0,1,0,0),
|
||||
(@GUID+54,9818,229,1,1,0,0,130.4315,-340.0683,71.0431061,3.17649913,7200,0,0,1,0,0),
|
||||
(@GUID+55,9818,229,1,1,0,0,151.102859,-358.37,71.02174,1.20427716,7200,0,0,1,0,0),
|
||||
(@GUID+56,9818,229,1,1,0,0,156.814621,-283.34024,71.03544,1.98967528,7200,0,0,1,0,0),
|
||||
(@GUID+57,9818,229,1,1,0,0,162.630127,-243.073456,111.034378,4.32841635,7200,0,0,1,0,0),
|
||||
(@GUID+58,9818,229,1,1,0,0,170.605957,-362.35318,116.924133,4.86946869,7200,0,0,1,0,0),
|
||||
(@GUID+59,9818,229,1,1,0,0,179.994781,-365.8944,116.925758,3.19395256,7200,0,0,1,0,0),
|
||||
(@GUID+60,9818,229,1,1,0,0,188.856033,-258.8772,77.03584,6.07374573,7200,0,0,1,0,0),
|
||||
(@GUID+61,9818,229,1,1,0,0,212.137329,-339.792267,76.9862747,1.15191734,7200,0,0,1,0,0),
|
||||
(@GUID+62,9818,229,1,1,0,0,217.200012,-259.563751,82.1870956,6.265732,7200,0,0,1,0,0),
|
||||
(@GUID+63,9818,229,1,1,0,0,223.7043,-297.484253,77.05145,5.46288061,7200,0,0,1,0,0),
|
||||
(@GUID+64,9818,229,1,1,0,0,224.405029,-307.493042,77.05062,0.7853982,7200,0,0,1,0,0),
|
||||
(@GUID+65,9818,229,1,1,0,0,87.17487,-363.085022,117.796295,4.729842,7200,0,0,1,0,0),
|
||||
(@GUID+66,9818,229,1,1,0,0,90.10163,-419.203979,111.006088,0.994837642,7200,0,0,1,0,0),
|
||||
-- Blackhand Veteran <Blackhand Legion>
|
||||
(@GUID+67,9819,229,1,1,0,0,113.70948,-366.072266,116.932022,5.82939959,7200,0,0,1,0,0),
|
||||
(@GUID+68,9819,229,1,1,0,0,120.166054,-295.048645,71.06183,5.497787,7200,0,0,1,0,0),
|
||||
(@GUID+69,9819,229,1,1,0,0,121.719147,-301.576538,71.0559845,0.75049156,7200,0,0,1,0,0),
|
||||
(@GUID+70,9819,229,1,1,0,0,141.709488,-299.4828,111.032074,0.0349065848,7200,0,0,1,0,0),
|
||||
(@GUID+71,9819,229,1,1,0,0,141.762787,-302.243439,111.031624,0.122173049,7200,0,0,1,0,0),
|
||||
(@GUID+72,9819,229,1,1,0,0,141.79213,-296.809937,111.031372,6.23082542,7200,0,0,1,0,0),
|
||||
(@GUID+73,9819,229,1,1,0,0,142.861816,-272.084259,111.026764,6.213372,7200,0,0,1,0,0),
|
||||
(@GUID+74,9819,229,1,1,0,0,142.902451,-275.0304,111.026955,0.0349065848,7200,0,0,1,0,0),
|
||||
(@GUID+75,9819,229,1,1,0,0,142.97287,-277.891327,111.027122,0.139626339,7200,0,0,1,0,0),
|
||||
(@GUID+76,9819,229,1,1,0,0,144.939285,-257.132019,110.919548,5.82939959,7200,0,0,1,0,0),
|
||||
(@GUID+77,9819,229,1,1,0,0,149.200531,-252.04541,110.907585,1.20427716,7200,0,0,1,0,0),
|
||||
(@GUID+78,9819,229,1,1,0,0,149.248459,-249.036591,110.907883,4.86946869,7200,0,0,1,0,0),
|
||||
(@GUID+79,9819,229,1,1,0,0,150.514359,-354.057831,71.0197,5.21853447,7200,0,0,1,0,0),
|
||||
(@GUID+80,9819,229,1,1,0,0,157.248657,-291.7521,71.0334,1.69296932,7200,0,0,1,0,0),
|
||||
(@GUID+81,9819,229,1,1,0,0,157.8796,-359.290649,71.0255661,1.53588974,7200,0,0,1,0,0),
|
||||
(@GUID+82,9819,229,1,1,0,0,159.268585,-245.612747,111.026138,6.23082542,7200,0,0,1,0,0),
|
||||
(@GUID+83,9819,229,1,1,0,0,161.448456,-317.885559,111.022552,3.17649913,7200,0,0,1,0,0),
|
||||
(@GUID+84,9819,229,1,1,0,0,161.471252,-314.998138,111.022469,3.19395256,7200,0,0,1,0,0),
|
||||
(@GUID+85,9819,229,1,1,0,0,161.5384,-320.877258,111.025208,3.12413931,7200,0,0,1,0,0),
|
||||
(@GUID+86,9819,229,1,1,0,0,168.431061,-288.5739,111.0254,2.91469979,7200,0,0,1,0,0),
|
||||
(@GUID+87,9819,229,1,1,0,0,168.467117,-285.357452,111.0254,3.159046,7200,0,0,1,0,0),
|
||||
(@GUID+88,9819,229,1,1,0,0,168.529587,-282.207245,111.0254,3.38593864,7200,0,0,1,0,0),
|
||||
(@GUID+89,9819,229,1,1,0,0,172.878586,-365.445526,116.925789,2.84488654,7200,0,0,1,0,0),
|
||||
(@GUID+90,9819,229,1,1,0,0,178.113251,-364.08963,116.925758,4.956735,7200,0,0,1,0,0),
|
||||
(@GUID+91,9819,229,1,1,0,0,191.3293,-272.009766,77.03062,5.61996031,7200,0,0,1,0,0),
|
||||
(@GUID+92,9819,229,1,1,0,0,194.615189,-255.948486,77.019455,4.310963,7200,0,0,1,0,0),
|
||||
(@GUID+93,9819,229,1,1,0,0,195.222046,-271.912567,77.03062,3.78736448,7200,0,0,1,0,0),
|
||||
(@GUID+94,9819,229,1,1,0,0,212.101151,-336.132416,76.955864,5.096361,7200,0,0,1,0,0),
|
||||
(@GUID+95,9819,229,1,1,0,0,222.666229,-334.5855,77.01298,3.07177949,7200,0,0,1,0,0),
|
||||
(@GUID+96,9819,229,1,1,0,0,225.916336,-261.5317,82.1132355,4.103862,7200,0,0,1,0,0),
|
||||
(@GUID+97,9819,229,1,1,0,0,85.73412,-373.6244,116.925743,0.6806784,7200,0,0,1,0,0),
|
||||
(@GUID+98,9819,229,1,1,0,0,87.50004,-426.620819,111.006088,5.916666,7200,0,0,1,0,0),
|
||||
(@GUID+99,9819,229,1,1,0,0,90.02657,-367.4056,117.518463,2.51327419,7200,0,0,1,0,0),
|
||||
(@GUID+100,9819,229,1,1,0,0,92.1094,-415.1748,111.006096,4.59021568,7200,0,0,1,0,0),
|
||||
(@GUID+101,9819,229,1,1,0,0,106.9291,-367.275757,116.925743,2.30383468,7200,0,0,1,0,0),
|
||||
-- Awbee
|
||||
(@GUID+102,10740,229,1,1,0,0,70.54358,-420.442535,110.846558,0.75049156,7200,0,0,1,0,0),
|
||||
-- Blackhand Incarcerator <Blackhand Legion>
|
||||
(@GUID+103,10316,229,1,1,0,0,126.3072,-258.6249,91.637146,0.0349065848,7200,0,0,1,0,0),
|
||||
(@GUID+104,10316,229,1,1,0,0,126.446983,-276.596771,91.6375656,0.820304751,7200,0,0,1,0,0),
|
||||
(@GUID+105,10316,229,1,1,0,0,126.507553,-240.895081,91.62151,5.532694,7200,0,0,1,0,0),
|
||||
(@GUID+106,10316,229,1,1,0,0,144.283234,-240.993958,91.62266,4.729842,7200,0,0,1,0,0),
|
||||
(@GUID+107,10316,229,1,1,0,0,162.216324,-240.97139,91.68952,3.89208412,7200,0,0,1,0,0),
|
||||
(@GUID+108,10316,229,1,1,0,0,162.327271,-276.7592,91.69608,2.32128787,7200,0,0,1,0,0),
|
||||
(@GUID+109,10316,229,1,1,0,0,162.459671,-258.961456,91.61771,3.08923268,7200,0,0,1,0,0),
|
||||
-- Lord Valthalak Trigger
|
||||
(@GUID+110,16048,229,1,1,0,0,50.1153679,-534.537354,111.019806,6.161012,7200,0,0,1,0,0),
|
||||
-- Blackhand Dreadweaver <Blackhand Legion>
|
||||
(@GUID+111,9817,229,1,1,0,0,119.028313,-340.441254,71.04595,0.0349065848,7200,0,0,1,0,0),
|
||||
(@GUID+112,9817,229,1,1,0,0,122.051933,-293.15744,71.06183,5.497787,7200,0,0,1,0,0),
|
||||
(@GUID+113,9817,229,1,1,0,0,125.033432,-346.358124,71.04615,1.60570288,7200,0,0,1,0,0),
|
||||
(@GUID+114,9817,229,1,1,0,0,154.42865,-289.456,71.02977,6.17846537,7200,0,0,1,0,0),
|
||||
(@GUID+116,9817,229,1,1,0,0,159.006119,-347.022461,71.01292,0.802851439,7200,0,0,1,0,0),
|
||||
(@GUID+117,9817,229,1,1,0,0,159.043167,-288.595856,71.03185,3.64773822,7200,0,0,1,0,0),
|
||||
(@GUID+118,9817,229,1,1,0,0,163.503326,-247.513779,111.025925,2.09439516,7200,0,0,1,0,0),
|
||||
(@GUID+119,9817,229,1,1,0,0,169.915909,-367.141479,116.925789,1.134464,7200,0,0,1,0,0),
|
||||
(@GUID+120,9817,229,1,1,0,0,177.830521,-367.561035,116.925758,1.15191734,7200,0,0,1,0,0),
|
||||
(@GUID+121,9817,229,1,1,0,0,190.633072,-263.9589,77.03324,0.9599311,7200,0,0,1,0,0),
|
||||
(@GUID+122,9817,229,1,1,0,0,215.519485,-337.73288,76.95243,3.106686,7200,0,0,1,0,0),
|
||||
(@GUID+123,9817,229,1,1,0,0,221.517853,-258.423828,82.12929,3.04173565,7200,0,0,1,0,0),
|
||||
(@GUID+124,9817,229,1,1,0,0,225.8605,-266.1465,82.087326,3.30034256,7200,0,0,1,0,0),
|
||||
(@GUID+125,9817,229,1,1,0,0,232.839737,-297.4911,77.0545654,4.08407,7200,0,0,1,0,0),
|
||||
(@GUID+126,9817,229,1,1,0,0,234.324112,-306.76416,77.06055,2.443461,7200,0,0,1,0,0),
|
||||
(@GUID+127,9817,229,1,1,0,0,85.6391449,-366.950134,116.925743,0.802851439,7200,0,0,1,0,0),
|
||||
(@GUID+128,9817,229,1,1,0,0,93.9203949,-417.965485,111.006088,2.79252672,7200,0,0,1,0,0),
|
||||
-- Blackhand Thug
|
||||
(@GUID+129,10762,229,1,1,0,0,71.6325,-421.34613,110.794823,1.74532926,7200,0,0,1,0,0),
|
||||
(@GUID+130,10762,229,1,1,0,0,71.74594,-419.1056,111.144218,4.694936,7200,0,0,1,0,0),
|
||||
-- Blackhand Elite <Blackhand Legion>
|
||||
(@GUID+131,10317,229,1,1,0,0,119.342194,-567.1412,107.25071,5.916666,7200,0,0,1,0,0),
|
||||
(@GUID+132,10317,229,1,1,0,0,120.0068,-563.2474,107.453323,5.846853,7200,0,0,1,0,0),
|
||||
(@GUID+133,10317,229,1,1,0,0,144.60112,-299.439117,110.735207,3.08923268,7200,0,0,1,0,0),
|
||||
(@GUID+134,10317,229,1,1,0,0,146.275345,-275.0636,111.0268,3.106686,7200,0,0,1,0,0),
|
||||
(@GUID+135,10317,229,1,1,0,0,15.7085686,-269.44873,110.943428,3.70086622,7200,0,0,1,0,0),
|
||||
(@GUID+136,10317,229,1,1,0,0,158.335342,-317.906342,110.734566,0.0349065848,7200,0,0,1,0,0),
|
||||
(@GUID+137,10317,229,1,1,0,0,11.4635525,-262.667877,110.943428,3.70086479,7200,0,0,1,0,0),
|
||||
(@GUID+138,10317,229,1,1,0,0,164.433945,-285.266144,111.025864,0,7200,0,0,1,0,0),
|
||||
(@GUID+139,10317,229,1,1,0,0,-18.404726,-338.186249,111.026764,0.5934119,7200,0,0,1,0,0),
|
||||
(@GUID+140,10317,229,1,1,0,0,20.7244225,-468.8023,111.035339,4.834562,7200,0,0,1,0,0),
|
||||
(@GUID+141,10317,229,1,1,0,0,24.4351749,-268.222015,111.026764,2.830616,7200,0,0,1,0,0),
|
||||
(@GUID+142,10317,229,1,1,0,0,29.5069962,-385.555267,110.747688,5.42797375,7200,0,0,1,0,0),
|
||||
(@GUID+143,10317,229,1,1,0,0,-3.292078,-259.9108,111.026764,5.480334,7200,0,0,1,0,0),
|
||||
(@GUID+144,10317,229,1,1,0,0,30.4171047,-332.906921,111.026779,4.764749,7200,0,0,1,0,0),
|
||||
(@GUID+145,10317,229,1,1,0,0,35.48675,-492.949921,111.035957,3.054326,7200,0,0,1,0,0),
|
||||
(@GUID+146,10317,229,1,1,0,0,37.333168,-333.77887,111.026779,4.660029,7200,0,0,1,0,0),
|
||||
(@GUID+147,10317,229,1,1,0,0,37.9199028,-451.0573,111.028809,0.08726646,7200,0,0,1,0,0),
|
||||
(@GUID+148,10317,229,1,1,0,0,-5.026564,-352.542572,111.026779,0.9599311,7200,0,0,1,0,0),
|
||||
(@GUID+149,10317,229,1,1,0,0,97.21676,-476.817535,116.925743,5.23598766,7200,0,0,1,0,0),
|
||||
-- Lord Victor Nefarius <Lord of Blackrock>
|
||||
(@GUID+150,10162,229,1,1,0,0,163.168335,-444.165,122.058609,3.12413931,7200,0,0,1,0,0),
|
||||
-- Warchief Rend Blackhand
|
||||
(@GUID+151,10429,229,1,1,0,0,159.276138,-443.619049,122.058609,6.265732,7200,0,0,1,0,0),
|
||||
-- The Beast
|
||||
(@GUID+152,10430,229,1,1,0,0,124.21048,-563.799438,107.4246,2.75762,7200,0,0,1,0,0),
|
||||
-- Jed Runewatcher <Blackhand Legion> RARE
|
||||
(@GUID+153,10509,229,1,1,0,0,165.09407,-341.9633,110.951019,1.588817,7200,0,0,1,0,0),
|
||||
-- General Drakkisath
|
||||
(@GUID+154,10363,229,1,1,0,0,36.4508629,-285.993561,111.036224,3.14159274,7200,0,0,1,0,0),
|
||||
-- Blackhand Assassin <Blackhand Legion>
|
||||
(@GUID+155,10318,229,1,1,0,0,117.948341,-569.3336,107.13662,5.98647928,7200,0,0,1,0,0),
|
||||
(@GUID+156,10318,229,1,1,0,0,18.2123585,-471.40033,111.030594,6.17846537,7200,0,0,1,0,0),
|
||||
(@GUID+157,10318,229,1,1,0,0,23.50665,-470.537872,111.03933,3.56047153,7200,0,0,1,0,0),
|
||||
(@GUID+158,10318,229,1,1,0,0,31.8534851,-490.6625,111.036209,4.32841635,7200,0,0,1,0,0),
|
||||
(@GUID+159,10318,229,1,1,0,0,38.164032,-385.480133,110.797859,4.18879032,7200,0,0,1,0,0),
|
||||
(@GUID+160,10318,229,1,1,0,0,40.42038,-453.613342,111.024033,1.34390354,7200,0,0,1,0,0),
|
||||
(@GUID+161,10318,229,1,1,0,0,-6.880112,-252.370468,111.026764,5.42797375,7200,0,0,1,0,0),
|
||||
(@GUID+162,10318,229,1,1,0,0,71.493454,-474.6056,115.778786,6.27848864,7200,0,0,1,0,0),
|
||||
(@GUID+163,10318,229,1,1,0,0,99.72865,-479.4235,116.925743,2.75762,7200,0,0,1,0,0),
|
||||
-- Blackhand Iron Guard <Blackhand Legion>
|
||||
(@GUID+164,10319,229,1,1,0,0,10.1526937,-457.006958,111.020668,4.502949,7200,0,0,1,0,0),
|
||||
(@GUID+165,10319,229,1,1,0,0,11.7395382,-460.466461,111.021942,2.80998015,7200,0,0,1,0,0),
|
||||
(@GUID+166,10319,229,1,1,0,0,124.05793,-470.958618,116.925743,3.85717773,7200,0,0,1,0,0),
|
||||
(@GUID+167,10319,229,1,1,0,0,124.094147,-478.257874,116.925743,2.37364769,7200,0,0,1,0,0),
|
||||
(@GUID+168,10319,229,1,1,0,0,-13.7761574,-274.925873,111.026764,5.899213,7200,0,0,1,0,0),
|
||||
(@GUID+169,10319,229,1,1,0,0,137.4377,-458.1639,121.873993,1.61019349,7200,0,0,1,0,0),
|
||||
(@GUID+170,10319,229,1,1,0,0,172.060364,-470.11795,116.907768,3.38593864,7200,0,0,1,0,0),
|
||||
(@GUID+171,10319,229,1,1,0,0,172.2113,-479.1257,116.922729,2.77507353,7200,0,0,1,0,0),
|
||||
(@GUID+172,10319,229,1,1,0,0,25.9503689,-431.148,111.036423,3.455752,7200,0,0,1,0,0),
|
||||
(@GUID+173,10319,229,1,1,0,0,27.20901,-487.106232,110.948944,5.92132044,7200,0,0,1,0,0),
|
||||
(@GUID+174,10319,229,1,1,0,0,30.4782486,-381.1838,110.765739,4.97418833,7200,0,0,1,0,0),
|
||||
(@GUID+175,10319,229,1,1,0,0,32.98562,-441.197968,110.947975,4.68552542,7200,0,0,1,0,0),
|
||||
(@GUID+177,10319,229,1,1,0,0,40.66904,-330.527466,111.026779,4.62512255,7200,0,0,1,0,0),
|
||||
(@GUID+178,10319,229,1,1,0,0,42.51416,-431.718781,111.029396,5.934119,7200,0,0,1,0,0),
|
||||
(@GUID+179,10319,229,1,1,0,0,-8.141677,-341.8935,111.026779,0.7679449,7200,0,0,1,0,0),
|
||||
(@GUID+180,10319,229,1,1,0,0,-9.265498,-265.802856,111.026764,5.67232,7200,0,0,1,0,0),
|
||||
-- Scarshield Acolyte <Scarshield Legion>
|
||||
(@GUID+181,9045,229,1,1,0,0,107.023872,-306.314117,54.00366,4.22369671,7200,0,0,1,0,0),
|
||||
(@GUID+182,9045,229,1,1,0,0,107.412292,-329.5834,54.003273,5.20108128,7200,0,0,1,0,0),
|
||||
(@GUID+183,9045,229,1,1,0,0,14.1215773,-259.2284,65.43308,2.3561945,7200,0,0,1,0,0),
|
||||
(@GUID+184,9045,229,1,1,0,0,18.0154171,-276.733521,65.375824,1.0306716,7200,4,0,1,0,1),
|
||||
(@GUID+185,9045,229,1,1,0,0,46.5601959,-453.7283,26.3562088,2.40855432,7200,0,0,1,0,0),
|
||||
(@GUID+186,9045,229,1,1,0,0,48.0624542,-257.406921,65.45917,0.418879032,7200,0,0,1,0,0),
|
||||
(@GUID+187,9045,229,1,1,0,0,5.471476,-520.6829,29.48178,3.4382987,7200,0,0,1,0,0),
|
||||
(@GUID+188,9045,229,1,1,0,0,52.8444061,-312.8106,54.00366,0.575958669,7200,0,0,1,0,0),
|
||||
(@GUID+189,9045,229,1,1,0,0,69.2313843,-439.3284,41.19126,3.159046,7200,0,0,1,0,0),
|
||||
(@GUID+190,9045,229,1,1,0,0,75.6738052,-319.729126,55.8668,1.71042264,7200,5,0,1,0,1),
|
||||
(@GUID+191,9045,229,1,1,0,0,79.86551,-353.9204,60.78536,0.87266463,7200,4,0,1,0,1),
|
||||
-- Scarshield Legionnaire <Scarshield Legion>
|
||||
(@GUID+192,9097,229,1,1,0,0,-1.888463,-585.6428,29.2742,2.49582076,7200,0,0,1,0,0),
|
||||
(@GUID+193,9097,229,1,1,0,0,102.429573,-314.697754,54.00119,1.06465089,7200,0,0,1,0,0),
|
||||
(@GUID+194,9097,229,1,1,0,0,107.2788,-324.246582,54.00367,3.50811172,7200,0,0,1,0,0),
|
||||
(@GUID+195,9097,229,1,1,0,0,107.6331,-311.3865,54.00366,2.67035365,7200,0,0,1,0,0),
|
||||
(@GUID+196,9097,229,1,1,0,0,12.8929729,-329.7429,48.8472366,3.159046,7200,0,0,1,0,0),
|
||||
(@GUID+197,9097,229,1,1,0,0,12.9406261,-279.607941,65.45197,5.969026,7200,5,0,1,0,1),
|
||||
(@GUID+198,9097,229,1,1,0,0,18.7627659,-284.2841,65.45917,2.12930179,7200,5,0,1,0,1),
|
||||
(@GUID+199,9097,229,1,1,0,0,-2.931882,-524.657837,29.27372,0.5934119,7200,0,0,1,0,0),
|
||||
(@GUID+200,9097,229,1,1,0,0,-28.38935,-563.0387,29.2742,2.86234,7200,0,0,1,0,0),
|
||||
(@GUID+201,9097,229,1,1,0,0,30.9195728,-399.682678,48.7868233,3.00196624,7200,0,0,1,0,0),
|
||||
(@GUID+202,9097,229,1,1,0,0,-31.5340881,-564.217163,29.2742,1.16937053,7200,0,0,1,0,0),
|
||||
(@GUID+203,9097,229,1,1,0,0,-34.0393829,-585.6407,29.2742,6.19591856,7200,0,0,1,0,0),
|
||||
(@GUID+204,9097,229,1,1,0,0,-37.9832726,-585.003052,29.2742,1.50098312,7200,0,0,1,0,0),
|
||||
(@GUID+205,9097,229,1,1,0,0,43.5522041,-274.521637,65.45917,6.108652,7200,4,0,1,0,1),
|
||||
(@GUID+206,9097,229,1,1,0,0,45.7239571,-449.172668,27.6064148,3.700098,7200,0,0,1,0,0),
|
||||
(@GUID+207,9097,229,1,1,0,0,45.8465,-279.354,65.3547,1.03702569,7200,4,0,1,0,1),
|
||||
(@GUID+208,9097,229,1,1,0,0,51.89088,-287.3514,65.45917,3.03687286,7200,0,0,1,0,0),
|
||||
(@GUID+209,9097,229,1,1,0,0,54.68561,-325.345245,54.00365,1.39626336,7200,0,0,1,0,0),
|
||||
(@GUID+210,9097,229,1,1,0,0,55.91653,-459.1569,24.6387119,4.74729538,7200,0,0,1,0,0),
|
||||
(@GUID+211,9097,229,1,1,0,0,57.3262329,-569.6453,30.678772,0.191986218,7200,0,0,1,0,0),
|
||||
(@GUID+212,9097,229,1,1,0,0,57.5051956,-314.922241,54.0019226,2.268928,7200,0,0,1,0,0),
|
||||
(@GUID+213,9097,229,1,1,0,0,57.8382835,-310.131531,54.00148,3.577925,7200,0,0,1,0,0),
|
||||
(@GUID+214,9097,229,1,1,0,0,59.3199,-507.905,29.2652359,6.05629253,7200,0,0,1,0,0),
|
||||
(@GUID+215,9097,229,1,1,0,0,6.909,-271.977539,65.41073,0.209439516,7200,0,0,1,0,0),
|
||||
(@GUID+216,9097,229,1,1,0,0,61.8540535,-560.6797,30.6882877,3.49065852,7200,0,0,1,0,0),
|
||||
(@GUID+217,9097,229,1,1,0,0,63.39378,-505.4025,29.2684975,4.57276249,7200,0,0,1,0,0),
|
||||
(@GUID+218,9097,229,1,1,0,0,66.23844,-274.531647,60.73464,6.23082542,7200,0,0,1,0,0),
|
||||
(@GUID+219,9097,229,1,1,0,0,66.43544,-435.9842,42.10328,4.32841635,7200,0,0,1,0,0),
|
||||
(@GUID+220,9097,229,1,1,0,0,69.6397,-278.3183,60.67765,0.296705961,7200,0,0,1,0,0),
|
||||
(@GUID+221,9097,229,1,1,0,0,-7.64752,-586.2085,29.2742,0.9250245,7200,0,0,1,0,0),
|
||||
(@GUID+222,9097,229,1,1,0,0,71.6458054,-586.649231,30.686348,6.265732,7200,0,0,1,0,0),
|
||||
(@GUID+223,9097,229,1,1,0,0,79.0274353,-287.054626,60.77396,1.98967528,7200,5,0,1,0,1),
|
||||
(@GUID+224,9097,229,1,1,0,0,8.43384,-253.37677,65.4404,5.46288061,7200,0,0,1,0,0),
|
||||
(@GUID+225,9097,229,1,1,0,0,82.27611,-580.576843,30.6900673,4.118977,7200,0,0,1,0,0),
|
||||
(@GUID+226,9097,229,1,1,0,0,82.37819,-315.5727,55.78426,2.65947676,7200,5,0,1,0,1),
|
||||
(@GUID+227,9097,229,1,1,0,0,85.21238,-357.96698,60.78536,6.05629253,7200,4,0,1,0,1),
|
||||
(@GUID+228,9097,229,1,1,0,0,86.74077,-283.049225,60.610733,2.49932933,7200,0,0,1,0,0),
|
||||
(@GUID+229,9097,229,1,1,0,0,87.000885,-316.9617,65.48379,3.38828468,7200,0,0,1,0,0),
|
||||
(@GUID+230,9097,229,1,1,0,0,87.48928,-318.901154,65.49227,3.38828754,7200,0,0,1,0,0),
|
||||
(@GUID+231,9097,229,1,1,0,0,9.058154,-257.7314,65.41364,0.6981317,7200,0,0,1,0,0),
|
||||
(@GUID+232,9097,229,1,1,0,0,9.251252,-332.5572,48.7950478,1.23918378,7200,0,0,1,0,0),
|
||||
(@GUID+233,9097,229,1,1,0,0,90.2249146,-280.722229,60.6818237,4.834562,7200,0,0,1,0,0),
|
||||
(@GUID+234,9097,229,1,1,0,0,91.53687,-361.906,60.7020264,1.54308629,7200,4,0,1,0,1),
|
||||
(@GUID+235,9097,229,1,1,0,0,94.65439,-275.0468,60.7526,3.14159274,7200,0,0,1,0,0),
|
||||
(@GUID+236,9097,229,1,1,0,0,-52.07244,-586.2182,29.2742,2.96705961,7200,0,0,1,0,0),
|
||||
(@GUID+237,9097,229,1,1,0,0,-55.7421837,-581.55426,29.2742,4.24115,7200,0,0,1,0,0),
|
||||
(@GUID+238,9097,229,1,1,0,0,-63.33937,-572.386353,29.2742,0.122173049,7200,0,0,1,0,0),
|
||||
(@GUID+239,9097,229,1,1,0,0,-67.22875,-535.405151,29.2742,3.874631,7200,0,0,1,0,0),
|
||||
(@GUID+240,9097,229,1,1,0,0,-70.01909,-575.8177,29.2742,1.16937053,7200,0,0,1,0,0),
|
||||
-- Scarshield Spellbinder <Scarshield Legion>
|
||||
(@GUID+241,9098,229,1,1,0,0,-1.331627,-519.548645,29.3309135,5.42797375,7200,0,0,1,0,0),
|
||||
(@GUID+242,9098,229,1,1,0,0,102.172279,-308.9317,54.0021477,5.916666,7200,0,0,1,0,0),
|
||||
(@GUID+243,9098,229,1,1,0,0,105.506432,-332.577332,54.0027466,6.23082542,7200,0,0,1,0,0),
|
||||
(@GUID+244,9098,229,1,1,0,0,14.2493792,-254.139786,65.4354858,3.68264461,7200,0,0,1,0,0),
|
||||
(@GUID+245,9098,229,1,1,0,0,-2.807793,-580.5389,29.2742,3.94444418,7200,0,0,1,0,0),
|
||||
(@GUID+246,9098,229,1,1,0,0,29.0991611,-396.495331,48.80111,4.537856,7200,0,0,1,0,0),
|
||||
(@GUID+247,9098,229,1,1,0,0,-31.529623,-559.1773,29.2742,5.480334,7200,0,0,1,0,0),
|
||||
(@GUID+248,9098,229,1,1,0,0,40.8953743,-448.450134,27.932621,5.497787,7200,0,0,1,0,0),
|
||||
(@GUID+249,9098,229,1,1,0,0,47.6854668,-270.914276,65.3638,6.241553,7200,4,0,1,0,1),
|
||||
(@GUID+250,9098,229,1,1,0,0,52.1842651,-307.34,54.0018921,5.253441,7200,0,0,1,0,0),
|
||||
(@GUID+251,9098,229,1,1,0,0,52.41355,-255.366913,65.45917,3.63028479,7200,0,0,1,0,0),
|
||||
(@GUID+252,9098,229,1,1,0,0,54.9745064,-327.755585,54.00365,1.41371667,7200,0,0,1,0,0),
|
||||
(@GUID+253,9098,229,1,1,0,0,55.53388,-464.8595,24.94574,1.4486233,7200,0,0,1,0,0),
|
||||
(@GUID+254,9098,229,1,1,0,0,57.2190132,-562.799744,30.6716766,0.418879032,7200,0,0,1,0,0),
|
||||
(@GUID+255,9098,229,1,1,0,0,65.42762,-510.3604,29.3167419,2.565634,7200,0,0,1,0,0),
|
||||
(@GUID+256,9098,229,1,1,0,0,67.43828,-443.5344,40.726696,2.09439516,7200,0,0,1,0,0),
|
||||
(@GUID+257,9098,229,1,1,0,0,8.843101,-326.523132,48.8573074,5.113815,7200,0,0,1,0,0),
|
||||
(@GUID+258,9098,229,1,1,0,0,80.25544,-584.6707,30.6894226,1.2566371,7200,0,0,1,0,0),
|
||||
(@GUID+259,9098,229,1,1,0,0,81.61091,-325.340729,55.8671455,1.79768908,7200,6,0,1,0,1),
|
||||
(@GUID+260,9098,229,1,1,0,0,90.11126,-354.347534,60.78536,4.485496,7200,4,0,1,0,1),
|
||||
-- Scarshield Worg <Scarshield Legion>
|
||||
(@GUID+261,9416,229,1,1,0,0,15.70567,-319.694763,48.9296379,4.81710863,7200,0,0,1,0,0),
|
||||
(@GUID+262,9416,229,1,1,0,0,21.6263542,-319.307526,48.921833,4.59021568,7200,0,0,1,0,0),
|
||||
(@GUID+263,9416,229,1,1,0,0,39.9757576,-401.308,48.73395,1.37881,7200,0,0,1,0,0),
|
||||
(@GUID+264,9416,229,1,1,0,0,-43.9925423,-560.761658,29.2742,5.77704,7200,0,0,1,0,0),
|
||||
(@GUID+265,9416,229,1,1,0,0,44.2465363,-401.749878,48.8481827,1.41371667,7200,0,0,1,0,0),
|
||||
(@GUID+266,9416,229,1,1,0,0,-44.5054626,-555.940247,29.2742,5.44542742,7200,0,0,1,0,0),
|
||||
(@GUID+267,9416,229,1,1,0,0,45.85862,-503.317871,29.2189922,0.628318548,7200,0,0,1,0,0),
|
||||
(@GUID+268,9416,229,1,1,0,0,48.7350845,-507.5874,29.2278786,0.802851439,7200,0,0,1,0,0),
|
||||
(@GUID+269,9416,229,1,1,0,0,54.7811,-477.6601,26.7370472,2.51327419,7200,0,0,1,0,0),
|
||||
(@GUID+270,9416,229,1,1,0,0,57.44511,-472.058868,25.8572731,2.740167,7200,0,0,1,0,0),
|
||||
(@GUID+271,9416,229,1,1,0,0,-62.07272,-550.186646,29.2742,0.9075712,7200,0,0,1,0,0),
|
||||
(@GUID+273,9416,229,1,1,0,0,-65.6472,-544.931946,29.2742,0.575958669,7200,0,0,1,0,0),
|
||||
-- Scarshield Raider <Scarshield Legion>
|
||||
(@GUID+274,9258,229,1,1,0,0,18.6335163,-319.563538,48.92536,4.694936,7200,0,0,1,0,0),
|
||||
(@GUID+275,9258,229,1,1,0,0,42.2404366,-400.899567,48.78902,1.39626336,7200,0,0,1,0,0),
|
||||
(@GUID+276,9258,229,1,1,0,0,-43.1253738,-558.9627,29.2742,5.61996031,7200,0,0,1,0,0),
|
||||
(@GUID+277,9258,229,1,1,0,0,48.0036926,-504.871857,29.22562,0.715585,7200,0,0,1,0,0),
|
||||
(@GUID+278,9258,229,1,1,0,0,55.2906952,-474.477264,26.0807571,2.61799383,7200,0,0,1,0,0),
|
||||
(@GUID+279,9258,229,1,1,0,0,-62.76482,-546.4872,29.2742,0.75049156,7200,0,0,1,0,0),
|
||||
-- Scarshield Warlock <Scarshield Legion>
|
||||
(@GUID+280,9257,229,1,1,0,0,26.0838318,-398.5821,48.8247757,6.07374573,7200,0,0,1,0,0),
|
||||
(@GUID+281,9257,229,1,1,0,0,3.1376,-524.950745,29.456665,2.23402143,7200,0,0,1,0,0),
|
||||
(@GUID+282,9257,229,1,1,0,0,41.2527657,-453.779816,26.4869156,1.012291,7200,0,0,1,0,0),
|
||||
(@GUID+283,9257,229,1,1,0,0,60.2924347,-460.7934,24.84539,3.2986722,7200,0,0,1,0,0),
|
||||
(@GUID+284,9257,229,1,1,0,0,62.5478935,-437.094635,42.1535568,5.532694,7200,0,0,1,0,0),
|
||||
(@GUID+285,9257,229,1,1,0,0,62.9071541,-569.002136,30.6996365,3.106686,7200,0,0,1,0,0),
|
||||
(@GUID+286,9257,229,1,1,0,0,75.31803,-587.21405,30.68769,2.86234,7200,0,0,1,0,0),
|
||||
(@GUID+287,9257,229,1,1,0,0,-8.240628,-580.9951,29.2742,5.67232,7200,0,0,1,0,0),
|
||||
(@GUID+288,9257,229,1,1,0,0,-56.70842,-586.1366,29.2742,1.2915436,7200,0,0,1,0,0);
|
||||
|
||||
-- Add sitting to some Scarshield Legionnaires
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (209318,209333,209315,209337,209308,209312,209331,209320,209335);
|
||||
INSERT INTO `creature_addon` (`guid`,`bytes1`,`bytes2`) VALUES
|
||||
(209318,1,1),(209333,1,1),(209315,1,1),(209337,1,1),(209308,1,1),(209312,1,1),(209331,1,1),(209320,1,1),(209335,1,1);
|
||||
|
||||
-- Pathing for Blackhand Dreadweaver Entry: 9817
|
||||
SET @NPC := @GUID+116;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=156.027,`position_y`=-256.98,`position_z`=110.873 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,156.655,-261.057,110.911,0,0,0,100,0),
|
||||
(@PATH,2,156.697,-270.709,110.945,0,0,0,100,0),
|
||||
(@PATH,3,157.437,-283.381,110.653,0,0,0,100,0),
|
||||
(@PATH,4,156.721,-302.091,110.655,0,0,0,100,0),
|
||||
(@PATH,5,155.393,-316.954,110.658,0,0,0,100,0),
|
||||
(@PATH,6,145.795,-316.889,110.658,0,0,0,100,0),
|
||||
(@PATH,7,138.546,-312.556,110.971,0,0,0,100,0),
|
||||
(@PATH,8,128.11,-312.561,110.948,0,0,0,100,0),
|
||||
(@PATH,9,113.444,-312.323,106.436,0,0,0,100,0),
|
||||
(@PATH,10,107.291,-311.159,106.436,0,0,0,100,0),
|
||||
(@PATH,11,107.143,-305.034,106.436,0,0,0,100,0),
|
||||
(@PATH,12,107.968,-294.352,106.436,0,0,0,100,0),
|
||||
(@PATH,13,108.13,-273.961,106.436,0,0,0,100,0),
|
||||
(@PATH,14,108.325,-262.696,106.436,0,0,0,100,0),
|
||||
(@PATH,15,113.576,-260.461,106.436,0,0,0,100,0),
|
||||
(@PATH,16,119.512,-259.629,108.912,0,0,0,100,0),
|
||||
(@PATH,17,126.887,-258.807,110.95,0,0,0,100,0),
|
||||
(@PATH,18,134.264,-256.577,110.872,0,0,0,100,0),
|
||||
(@PATH,19,142.107,-253.858,110.808,0,0,0,100,0),
|
||||
(@PATH,20,149.232,-254.785,110.835,0,0,0,100,0),
|
||||
(@PATH,21,156.027,-256.98,110.873,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Rage Talon Dragonspawn Entry: 9096
|
||||
SET @NPC := @GUID+13;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=141.415,`position_y`=-328.32,`position_z`=70.9563 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,137.036,-318.309,70.9563,0,0,0,100,0),
|
||||
(@PATH,2,139.625,-311.595,70.9563,0,0,0,100,0),
|
||||
(@PATH,3,145.022,-306.612,70.9563,0,0,0,100,0),
|
||||
(@PATH,4,155.634,-307.226,70.9563,0,0,0,100,0),
|
||||
(@PATH,5,165.665,-309.29,70.9563,0,0,0,100,0),
|
||||
(@PATH,6,179.918,-308.349,75.0044,0,0,0,100,0),
|
||||
(@PATH,7,186.484,-307.375,76.8804,0,0,0,100,0),
|
||||
(@PATH,8,190.417,-303.615,76.8863,0,0,0,100,0),
|
||||
(@PATH,9,190,-295.833,76.9324,0,0,0,100,0),
|
||||
(@PATH,10,192.748,-284.944,76.9366,0,0,0,100,0),
|
||||
(@PATH,11,197.221,-281.635,76.9372,0,0,0,100,0),
|
||||
(@PATH,12,205.403,-280.035,76.9363,0,0,0,100,0),
|
||||
(@PATH,13,206.769,-288.047,76.9327,0,0,0,100,0),
|
||||
(@PATH,14,206.049,-300.881,76.9044,0,0,0,100,0),
|
||||
(@PATH,15,203.805,-308.685,76.8987,0,0,0,100,0),
|
||||
(@PATH,16,200.091,-314.903,76.892,0,0,0,100,0),
|
||||
(@PATH,17,196.037,-321.532,76.8849,0,0,0,100,0),
|
||||
(@PATH,18,187.264,-325.25,76.8738,0,0,0,100,0),
|
||||
(@PATH,19,172.508,-330.708,71.6636,0,0,0,100,0),
|
||||
(@PATH,20,157.819,-330.472,70.9563,0,0,0,100,0),
|
||||
(@PATH,21,151.347,-332.406,70.9563,0,0,0,100,0),
|
||||
(@PATH,22,141.415,-328.32,70.9563,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Rage Talon Dragonspawn Entry: 9096
|
||||
SET @NPC := @GUID+3;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=102.111,`position_y`=-255.036,`position_z`=106.436 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,102.492,-284.08,106.436,0,0,0,100,0),
|
||||
(@PATH,2,103.388,-312.501,106.436,0,0,0,100,0),
|
||||
(@PATH,3,102.492,-284.08,106.436,0,0,0,100,0),
|
||||
(@PATH,4,102.111,-255.036,106.436,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Rage Talon Flamescale Entry: 10083
|
||||
SET @NPC := @GUID+25;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=151.43,`position_y`=-299.848,`position_z`=110.655 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,151.483,-266.668,110.941,0,0,0,100,0),
|
||||
(@PATH,2,151.43,-299.848,110.655,0,0,0,100,0),
|
||||
(@PATH,3,151.826,-337.478,110.948,0,0,0,100,0),
|
||||
(@PATH,4,151.43,-299.848,110.655,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Rage Talon Flamescale Entry: 10083
|
||||
SET @NPC := @GUID+26;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=159.69,`position_y`=-366.065,`position_z`=116.844 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,164.673,-366.137,116.844,0,0,0,100,0),
|
||||
(@PATH,2,159.69,-366.065,116.844,0,0,0,100,0),
|
||||
(@PATH,3,134.314,-365.853,116.844,0,0,0,100,0),
|
||||
(@PATH,4,113.681,-366.227,116.844,0,0,0,100,0),
|
||||
(@PATH,5,134.314,-365.853,116.844,0,0,0,100,0),
|
||||
(@PATH,6,159.69,-366.065,116.844,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Blackhand Veteran Entry: 9819
|
||||
SET @NPC := @GUID+77;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=151.986,`position_y`=-343.381,`position_z`=110.952 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,156.734,-340.574,110.949,0,0,0,100,0),
|
||||
(@PATH,2,161.285,-330.085,110.941,0,0,0,100,0),
|
||||
(@PATH,3,164.349,-321.437,110.935,0,0,0,100,0),
|
||||
(@PATH,4,164.066,-307.895,110.926,0,0,0,100,0),
|
||||
(@PATH,5,161.931,-295.254,110.937,0,0,0,100,0),
|
||||
(@PATH,6,161.54,-286.843,110.94,0,0,0,100,0),
|
||||
(@PATH,7,161.626,-276.16,110.942,0,0,0,100,0),
|
||||
(@PATH,8,162.619,-260.48,110.922,0,0,0,100,0),
|
||||
(@PATH,9,160.883,-251.074,110.911,0,0,0,100,0),
|
||||
(@PATH,10,153.333,-254.239,110.841,0,0,0,100,0),
|
||||
(@PATH,11,147.933,-256.874,110.85,0,0,0,100,0),
|
||||
(@PATH,12,144.41,-258.089,110.852,0,0,0,100,0),
|
||||
(@PATH,13,142.226,-262.721,110.888,0,0,0,100,0),
|
||||
(@PATH,14,139.325,-272.981,110.928,0,0,0,100,0),
|
||||
(@PATH,15,139.064,-292.411,110.964,0,0,0,100,0),
|
||||
(@PATH,16,138.366,-304.562,110.976,0,0,0,100,0),
|
||||
(@PATH,17,140.202,-318.19,110.956,0,0,0,100,0),
|
||||
(@PATH,18,141.56,-328.348,110.948,0,0,0,100,0),
|
||||
(@PATH,19,145.867,-339.175,110.95,0,0,0,100,0),
|
||||
(@PATH,20,151.986,-343.381,110.952,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Blackhand Veteran Entry: 9819
|
||||
SET @NPC := @GUID+68;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=137.681,`position_y`=-374.135,`position_z`=116.807 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,137.932,-365.946,116.844,0,0,0,100,0),
|
||||
(@PATH,2,119.13,-366.058,116.848,0,0,0,100,0),
|
||||
(@PATH,3,137.932,-365.946,116.844,0,0,0,100,0),
|
||||
(@PATH,4,137.681,-374.135,116.807,0,0,0,100,0),
|
||||
(@PATH,5,138.003,-383.829,121.975,0,0,0,100,0),
|
||||
(@PATH,6,137.621,-374.032,116.807,0,0,0,100,0),
|
||||
(@PATH,7,137.28,-358.897,116.838,0,0,0,100,0),
|
||||
(@PATH,8,138.01,-349.646,111.285,0,0,0,100,0),
|
||||
(@PATH,9,138.504,-339.926,110.965,0,0,0,100,0),
|
||||
(@PATH,10,138.055,-349.128,110.97,0,0,0,100,0),
|
||||
(@PATH,11,137.272,-358.828,116.838,0,0,0,100,0),
|
||||
(@PATH,12,137.975,-366.027,116.844,0,0,0,100,0),
|
||||
(@PATH,13,151.988,-365.319,116.844,0,0,0,100,0),
|
||||
(@PATH,14,168.97,-365.253,116.844,0,0,0,100,0),
|
||||
(@PATH,15,151.988,-365.319,116.844,0,0,0,100,0),
|
||||
(@PATH,16,137.975,-366.027,116.844,0,0,0,100,0),
|
||||
(@PATH,17,137.263,-358.934,116.838,0,0,0,100,0),
|
||||
(@PATH,18,138.048,-349.209,110.971,0,0,0,100,0),
|
||||
(@PATH,19,138.504,-339.926,110.965,0,0,0,100,0),
|
||||
(@PATH,20,138.01,-349.646,111.285,0,0,0,100,0),
|
||||
(@PATH,21,137.286,-358.828,116.838,0,0,0,100,0),
|
||||
(@PATH,22,137.621,-374.032,116.807,0,0,0,100,0),
|
||||
(@PATH,23,138.003,-383.829,121.975,0,0,0,100,0),
|
||||
(@PATH,24,137.681,-374.135,116.807,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Rage Talon Dragon Guard Entry: 10366
|
||||
SET @NPC := @GUID+32;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=137.109,`position_y`=-474.652,`position_z`=116.842 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,150.917,-475.661,116.826,0,0,0,100,0),
|
||||
(@PATH,2,165.273,-475.48,116.842,0,0,0,100,0),
|
||||
(@PATH,3,150.917,-475.661,116.826,0,0,0,100,0),
|
||||
(@PATH,4,137.109,-474.652,116.842,0,0,0,100,0),
|
||||
(@PATH,5,120.161,-474.673,116.842,0,0,0,100,0),
|
||||
(@PATH,6,106.258,-474.643,116.842,0,0,0,100,0),
|
||||
(@PATH,7,94.7496,-473.079,116.842,0,0,0,100,0),
|
||||
(@PATH,8,83.6851,-474.242,116.842,0,0,0,100,0),
|
||||
(@PATH,9,77.1173,-474.496,116.842,0,0,0,100,0),
|
||||
(@PATH,10,65.0976,-474.578,113.951,0,0,0,100,0),
|
||||
(@PATH,11,51.9036,-474.688,110.923,0,0,0,100,0),
|
||||
(@PATH,12,64.8587,-474.58,113.951,0,0,0,100,0),
|
||||
(@PATH,13,77.1173,-474.496,116.842,0,0,0,100,0),
|
||||
(@PATH,14,83.4094,-474.271,116.842,0,0,0,100,0),
|
||||
(@PATH,15,94.7496,-473.079,116.842,0,0,0,100,0),
|
||||
(@PATH,16,106.258,-474.643,116.842,0,0,0,100,0),
|
||||
(@PATH,17,120.161,-474.673,116.842,0,0,0,100,0),
|
||||
(@PATH,18,137.109,-474.652,116.842,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Jed Runewatcher Entry: 10509 "RARE"
|
||||
SET @NPC := @GUID+153;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=165.094,`position_y`=-341.963,`position_z`=110.951 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,143.081,-332.039,110.946,0,0,0,100,0),
|
||||
(@PATH,2,137.568,-346.437,110.972,0,0,0,100,0),
|
||||
(@PATH,3,137.582,-349.249,110.999,0,0,0,100,0),
|
||||
(@PATH,4,137.404,-357.640,116.838,0,0,0,100,0),
|
||||
(@PATH,5,137.005,-366.262,116.844,0,0,0,100,0),
|
||||
(@PATH,6,137.173,-374.983,116.807,0,0,0,100,0),
|
||||
(@PATH,7,137.252,-383.108,121.975,0,0,0,100,0),
|
||||
(@PATH,8,137.299,-392.334,121.975,0,0,0,100,0),
|
||||
(@PATH,9,151.393,-392.988,121.975,0,0,0,100,0),
|
||||
(@PATH,10,165.537,-392.823,121.975,0,0,0,100,0),
|
||||
(@PATH,11,165.440,-383.058,121.975,0,0,0,100,0),
|
||||
(@PATH,12,165.651,-374.907,116.807,0,0,0,100,0),
|
||||
(@PATH,13,165.556,-367.59,116.845,0,0,0,100,0),
|
||||
(@PATH,14,165.415,-357.528,116.837,0,0,0,100,0),
|
||||
(@PATH,15,165.545,-348.847,110.969,0,0,0,100,0),
|
||||
(@PATH,16,165.094,-341.963,110.951,0,0,0,100,0),
|
||||
(@PATH,17,160.784,-330.969,110.941,0,0,0,100,0),
|
||||
(@PATH,18,160.191,-309.153,110.656,0,0,0,100,0),
|
||||
(@PATH,19,160.079,-280.562,110.652,0,0,0,100,0),
|
||||
(@PATH,20,144.032,-280.615,110.653,0,0,0,100,0),
|
||||
(@PATH,21,142.987,-312.006,110.658,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Blackhand Assassin Entry: 10318
|
||||
SET @NPC := @GUID+173;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=70.90186,`position_y`=-474.6028,`position_z`=115.4964 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '22766');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,83.54216,-474.6622,116.8424,0,0,0,100,0),
|
||||
(@PATH,2,93.11698,-476.8058,116.8424,0,0,0,100,0),
|
||||
(@PATH,3,93.16169,-492.36,116.8424,0,0,0,100,0),
|
||||
(@PATH,4,93.11698,-476.8058,116.8424,0,0,0,100,0),
|
||||
(@PATH,5,83.68505,-474.6942,116.8424,0,0,0,100,0),
|
||||
(@PATH,6,70.90186,-474.6028,115.4964,0,0,0,100,0),
|
||||
(@PATH,7,60.60706,-474.3578,112.1393,0,0,0,100,0),
|
||||
(@PATH,8,45.0526,-476.1751,110.926,0,0,0,100,0),
|
||||
(@PATH,9,36.50502,-483.8639,110.9392,0,0,0,100,0),
|
||||
(@PATH,10,24.51036,-485.5788,110.9466,0,0,0,100,0),
|
||||
(@PATH,11,12.32181,-481.5825,110.9355,0,0,0,100,0),
|
||||
(@PATH,12,10.06764,-472.9978,110.9354,0,0,0,100,0),
|
||||
(@PATH,13,17.3661,-456.8065,110.9467,0,0,0,100,0),
|
||||
(@PATH,14,29.56967,-454.026,110.9595,0,0,0,100,0),
|
||||
(@PATH,15,35.45218,-454.5979,110.943,0,0,0,100,0),
|
||||
(@PATH,16,34.74645,-442.8175,110.945,0,0,0,100,0),
|
||||
(@PATH,17,33.50422,-417.918,110.7123,0,0,0,100,0),
|
||||
(@PATH,18,34.74645,-442.8175,110.945,0,0,0,100,0),
|
||||
(@PATH,19,35.45218,-454.5979,110.943,0,0,0,100,0),
|
||||
(@PATH,20,29.56967,-454.026,110.9595,0,0,0,100,0),
|
||||
(@PATH,21,17.3661,-456.8065,110.9467,0,0,0,100,0),
|
||||
(@PATH,22,10.06764,-472.9978,110.9354,0,0,0,100,0),
|
||||
(@PATH,23,12.32181,-481.5825,110.9355,0,0,0,100,0),
|
||||
(@PATH,24,24.51036,-485.5788,110.9466,0,0,0,100,0),
|
||||
(@PATH,25,36.50502,-483.8639,110.9392,0,0,0,100,0),
|
||||
(@PATH,26,45.0526,-476.1751,110.926,0,0,0,100,0),
|
||||
(@PATH,27,60.60706,-474.3578,112.1393,0,0,0,100,0),
|
||||
(@PATH,28,70.90186,-474.6028,115.4964,0,0,0,100,0);
|
||||
-- 0xF13000284E0957D1 .go 83.54216 -474.6622 116.8424
|
||||
|
||||
-- Pathing for Blackhand Assassin Entry: 10318
|
||||
SET @NPC := @GUID+155;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=117.2911,`position_y`=-562.6133,`position_z`=107.403 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,117.5151,-567.9547,107.125,0,0,0,100,0),
|
||||
(@PATH,2,117.2911,-562.6133,107.403,0,0,0,100,0),
|
||||
(@PATH,3,112.9668,-557.6212,107.6628,0,0,0,100,0),
|
||||
(@PATH,4,105.0914,-557.2451,107.6823,0,0,0,100,0),
|
||||
(@PATH,5,96.04835,-553.9485,110.5781,0,0,0,100,0),
|
||||
(@PATH,6,87.70401,-550.9095,110.9234,0,0,0,100,0),
|
||||
(@PATH,7,79.952,-545.0425,110.9392,0,0,0,100,0),
|
||||
(@PATH,8,71.74578,-539.9948,110.9404,0,0,0,100,0),
|
||||
(@PATH,9,63.53278,-534.9427,110.9417,0,0,0,100,0),
|
||||
(@PATH,10,71.6881,-539.9797,110.9404,0,0,0,100,0),
|
||||
(@PATH,11,79.952,-545.0425,110.9392,0,0,0,100,0),
|
||||
(@PATH,12,87.70401,-550.9095,110.9234,0,0,0,100,0),
|
||||
(@PATH,13,96.04835,-553.9485,110.5781,0,0,0,100,0),
|
||||
(@PATH,14,105.0914,-557.2451,107.6823,0,0,0,100,0),
|
||||
(@PATH,15,112.9668,-557.6212,107.6628,0,0,0,100,0),
|
||||
(@PATH,16,117.2911,-562.6133,107.403,0,0,0,100,0);
|
||||
-- 0xF13000284E0957CB .go 117.5151 -567.9547 107.125
|
||||
|
||||
-- Pathing for Blackhand Iron Guard Entry: 10319
|
||||
SET @NPC := @GUID+185;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=27.209,`position_y`=-487.106,`position_z`=110.949 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,41.0048,-479.188,110.932,0,0,0,100,0),
|
||||
(@PATH,2,40.6946,-470.055,110.934,0,0,0,100,0),
|
||||
(@PATH,3,28.987,-457.701,110.958,0,0,0,100,0),
|
||||
(@PATH,4,19.4282,-458.143,110.948,0,0,0,100,0),
|
||||
(@PATH,5,10.9487,-465.839,110.938,0,0,0,100,0),
|
||||
(@PATH,6,12.0295,-481.36,110.935,0,0,0,100,0),
|
||||
(@PATH,7,27.209,-487.106,110.949,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Blackhand Iron Guard Entry: 10319
|
||||
SET @NPC := @GUID+187;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=32.9856,`position_y`=-441.198,`position_z`=110.948 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,33.2388,-451.331,110.947,0,0,0,100,0),
|
||||
(@PATH,2,27.8349,-467.173,110.954,0,0,0,100,0),
|
||||
(@PATH,3,22.5882,-486.309,110.945,0,0,0,100,0),
|
||||
(@PATH,4,21.3946,-495.946,110.941,0,0,0,100,0),
|
||||
(@PATH,5,22.5882,-486.309,110.945,0,0,0,100,0),
|
||||
(@PATH,6,27.8349,-467.173,110.954,0,0,0,100,0),
|
||||
(@PATH,7,33.2388,-451.331,110.947,0,0,0,100,0),
|
||||
(@PATH,8,32.9856,-441.198,110.948,0,0,0,100,0),
|
||||
(@PATH,9,33.2187,-432.523,110.949,0,0,0,100,0),
|
||||
(@PATH,10,32.9856,-441.198,110.948,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Blackhand Iron Guard Entry: 10319
|
||||
SET @NPC := @GUID+180;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=137.438,`position_y`=-458.164,`position_z`=121.874 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,137.876,-449.432,121.975,0,0,0,100,0),
|
||||
(@PATH,2,142.882,-447.466,121.975,0,0,0,100,0),
|
||||
(@PATH,3,150.106,-447.552,121.975,0,0,0,100,0),
|
||||
(@PATH,4,158.939,-447.841,121.975,0,0,0,100,0),
|
||||
(@PATH,5,162.936,-450.315,121.975,0,0,0,100,0),
|
||||
(@PATH,6,164.986,-455.795,121.975,0,0,0,100,0),
|
||||
(@PATH,7,165.879,-465.25,116.954,0,0,0,100,0),
|
||||
(@PATH,8,165.223,-470.568,116.829,0,0,0,100,0),
|
||||
(@PATH,9,158.806,-470.375,116.826,0,0,0,100,0),
|
||||
(@PATH,10,148.989,-470.486,116.816,0,0,0,100,0),
|
||||
(@PATH,11,142.296,-471.539,116.839,0,0,0,100,0),
|
||||
(@PATH,12,127.625,-473.384,116.845,0,0,0,100,0),
|
||||
(@PATH,13,118.149,-473.105,116.842,0,0,0,100,0),
|
||||
(@PATH,14,109.252,-473.191,116.842,0,0,0,100,0),
|
||||
(@PATH,15,101.37,-473.117,116.842,0,0,0,100,0),
|
||||
(@PATH,16,97.2847,-470.1,116.842,0,0,0,100,0),
|
||||
(@PATH,17,93.7787,-464.77,116.842,0,0,0,100,0),
|
||||
(@PATH,18,93.1996,-456.881,116.842,0,0,0,100,0),
|
||||
(@PATH,19,93.0105,-447.581,113.951,0,0,0,100,0),
|
||||
(@PATH,20,92.7964,-437.883,110.923,0,0,0,100,0),
|
||||
(@PATH,21,92.9087,-447.432,113.951,0,0,0,100,0),
|
||||
(@PATH,22,93.261,-456.932,116.842,0,0,0,100,0),
|
||||
(@PATH,23,94.0509,-465.158,116.842,0,0,0,100,0),
|
||||
(@PATH,24,97.3934,-470.372,116.842,0,0,0,100,0),
|
||||
(@PATH,25,101.615,-473.2,116.842,0,0,0,100,0),
|
||||
(@PATH,26,109.96,-473.221,116.842,0,0,0,100,0),
|
||||
(@PATH,27,119.431,-472.966,116.842,0,0,0,100,0),
|
||||
(@PATH,28,129.714,-473.405,116.844,0,0,0,100,0),
|
||||
(@PATH,29,137.726,-471.057,116.836,0,0,0,100,0),
|
||||
(@PATH,30,137.759,-466.307,116.807,0,0,0,100,0),
|
||||
(@PATH,31,137.438,-458.164,121.874,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Goraluk Anvilcrack Entry: 10899
|
||||
SET @NPC := @GUID+39;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=145.1794,`position_y`=-242.7074,`position_z`=110.8712 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,140.8718,-243.5903,110.8264,0,0,0,100,0),
|
||||
(@PATH,2,140.0336,-244.9933,110.8045,7000,0,@PATH+1,100,0),
|
||||
(@PATH,3,140.0312,-247.3475,110.7735,0,0,0,100,0),
|
||||
(@PATH,4,142.0183,-248.9341,110.7787,0,0,0,100,0),
|
||||
(@PATH,5,144.8816,-250.2995,110.7876,0,0,0,100,0),
|
||||
(@PATH,6,148.9328,-246.4266,110.8622,0,0,0,100,0),
|
||||
(@PATH,7,152.1183,-245.3219,110.9002,0,0,0,100,0),
|
||||
(@PATH,8,159.5392,-248.6294,110.9232,48000,0,@PATH+2,100,0),
|
||||
(@PATH,9,155.1528,-243.6318,110.9261,0,0,0,100,0),
|
||||
(@PATH,10,148.9452,-243.1658,110.8972,0,0,0,100,0),
|
||||
(@PATH,11,147.2209,-242.0178,110.8953,70000,0,@PATH+3,100,0),
|
||||
(@PATH,12,144.9547,-246.9615,110.8239,0,0,0,100,0),
|
||||
(@PATH,13,147.9653,-244.2648,110.8774,0,0,0,100,0),
|
||||
(@PATH,14,149.6411,-243.5608,110.8987,0,0,0,100,0),
|
||||
(@PATH,15,147.806,-248.5052,110.8308,0,0,0,100,0),
|
||||
(@PATH,16,148.3326,-245.9803,110.8621,0,0,0,100,0),
|
||||
(@PATH,17,152.27,-246.4282,110.8896,0,0,0,100,0),
|
||||
(@PATH,18,147.7813,-243.522,110.8838,0,0,0,100,0),
|
||||
(@PATH,19,148.1721,-245.3295,110.8677,0,0,0,100,0),
|
||||
(@PATH,20,149.0415,-247.1999,110.8549,0,0,0,100,0),
|
||||
(@PATH,21,150.1232,-244.7369,110.8901,0,0,0,100,0),
|
||||
(@PATH,22,145.1794,-242.7074,110.8712,0,0,0,100,0);
|
||||
DELETE FROM `waypoint_scripts` WHERE `id` IN (@PATH+1,@PATH+2,@PATH+3);
|
||||
INSERT INTO `waypoint_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`o`,`guid`) VALUES
|
||||
(@PATH+1,0,30,0,0,5.759586,89),
|
||||
(@PATH+1,3,1,69,1,0,90),
|
||||
(@PATH+2,0,30,0,0,0.715585,91),
|
||||
(@PATH+2,4,1,133,1,0,92),
|
||||
(@PATH+2,39,1,0,1,0,93),
|
||||
(@PATH+3,0,30,0,0,1.801312,94),
|
||||
(@PATH+3,1,1,28,1,0,95),
|
||||
(@PATH+3,22,1,0,1,0,96);
|
||||
|
||||
-- Pathing for Rage Talon Captain Entry: 10371
|
||||
SET @NPC := @GUID+42;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=17.7263,`position_y`=-263.467,`position_z`=110.943 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,0.073367,-274.516,110.929,0,0,0,100,0),
|
||||
(@PATH,2,-0.197867,-320.715,110.939,0,0,0,100,0),
|
||||
(@PATH,3,32.9907,-344.613,110.943,0,0,0,100,0),
|
||||
(@PATH,4,2.70391,-335.468,110.942,0,0,0,100,0),
|
||||
(@PATH,5,21.5374,-315.253,110.945,0,0,0,100,0),
|
||||
(@PATH,6,21.8535,-266.793,110.943,0,0,0,100,0),
|
||||
(@PATH,7,21.5374,-315.253,110.945,0,0,0,100,0),
|
||||
(@PATH,8,2.70391,-335.468,110.942,0,0,0,100,0),
|
||||
(@PATH,9,32.9907,-344.613,110.943,0,0,0,100,0),
|
||||
(@PATH,10,-0.199047,-320.916,110.942,0,0,0,100,0),
|
||||
(@PATH,11,0.073367,-274.516,110.929,0,0,0,100,0),
|
||||
(@PATH,12,17.7263,-263.467,110.943,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Blackrock Drake Entry: 8964
|
||||
SET @NPC := 3343;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-7502.985,`position_y`=-1091.508,`position_z`=286.4399 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-7526.111,-1065.07,290.0508,0,0,0,100,0),
|
||||
(@PATH,2,-7528.773,-1060.98,289.8008,0,0,0,100,0),
|
||||
(@PATH,3,-7554.438,-1032.648,293.9675,0,0,0,100,0),
|
||||
(@PATH,4,-7569.052,-1024.164,297.7729,0,0,0,100,0),
|
||||
(@PATH,5,-7603.773,-1019.187,303.3568,0,0,0,100,0),
|
||||
(@PATH,6,-7625.236,-1030.118,300.6064,0,0,0,100,0),
|
||||
(@PATH,7,-7652.77,-1045.974,291.5509,0,0,0,100,0),
|
||||
(@PATH,8,-7670.932,-1065.009,280.1344,0,0,0,100,0),
|
||||
(@PATH,9,-7677.66,-1074.487,277.8844,0,0,0,100,0),
|
||||
(@PATH,10,-7685.643,-1097.263,280.412,0,0,0,100,0),
|
||||
(@PATH,11,-7684.969,-1144.9,293.829,0,0,0,100,0),
|
||||
(@PATH,12,-7666.268,-1177.758,297.051,0,0,0,100,0),
|
||||
(@PATH,13,-7643.656,-1196.774,297.273,0,0,0,100,0),
|
||||
(@PATH,14,-7634.542,-1201.614,295.5235,0,0,0,100,0),
|
||||
(@PATH,15,-7597.882,-1211.088,294.7454,0,0,0,100,0),
|
||||
(@PATH,16,-7560.959,-1205.237,290.3565,0,0,0,100,0),
|
||||
(@PATH,17,-7536.037,-1191.708,287.6343,0,0,0,100,0),
|
||||
(@PATH,18,-7519.03,-1173.085,287.1065,0,0,0,100,0),
|
||||
(@PATH,19,-7502.939,-1142.821,286.4399,0,0,0,100,0),
|
||||
(@PATH,20,-7499.304,-1120.659,286.4399,0,0,0,100,0),
|
||||
(@PATH,21,-7502.985,-1091.508,286.4399,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Blackrock Drake Entry: 8964
|
||||
SET @NPC := 3344;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-7587.611,`position_y`=-1127.057,`position_z`=299.0391 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`) VALUES (@NPC,@PATH,1,0);
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-7595.692,-1122.375,300.0919,0,0,0,100,0),
|
||||
(@PATH,2,-7602.509,-1119.911,298.7615,0,0,0,100,0),
|
||||
(@PATH,3,-7623.113,-1121.951,299.8724,0,0,0,100,0),
|
||||
(@PATH,4,-7624.854,-1116.178,298.9836,0,0,0,100,0),
|
||||
(@PATH,5,-7623.076,-1109.361,301.2891,0,0,0,100,0),
|
||||
(@PATH,6,-7621.203,-1101.338,301.6222,0,0,0,100,0),
|
||||
(@PATH,7,-7617.672,-1097.37,302.9557,0,0,0,100,0),
|
||||
(@PATH,8,-7612.521,-1091.614,305.2333,0,0,0,100,0),
|
||||
(@PATH,9,-7603.752,-1088.397,307.15,0,0,0,100,0),
|
||||
(@PATH,10,-7595.697,-1086.253,309.7056,0,0,0,100,0),
|
||||
(@PATH,11,-7584.765,-1084.863,313.5945,0,0,0,100,0),
|
||||
(@PATH,12,-7573.741,-1089.98,318.4,0,0,0,100,0),
|
||||
(@PATH,13,-7563.752,-1095.654,321.1225,0,0,0,100,0),
|
||||
(@PATH,14,-7561.293,-1111.069,323.0945,0,0,0,100,0),
|
||||
(@PATH,15,-7562.622,-1134.871,324.7891,0,0,0,100,0),
|
||||
(@PATH,16,-7575.259,-1146.927,321.928,0,0,0,100,0),
|
||||
(@PATH,17,-7587.246,-1150.965,322.5114,0,0,0,100,0),
|
||||
(@PATH,18,-7599.556,-1147.009,320.2891,0,0,0,100,0),
|
||||
(@PATH,19,-7609.301,-1143.611,316.2057,0,0,0,100,0),
|
||||
(@PATH,20,-7634.01,-1120.37,312.1778,0,0,0,100,0),
|
||||
(@PATH,21,-7622.606,-1101.056,311.3446,0,0,0,100,0),
|
||||
(@PATH,22,-7614.432,-1092.255,305.6779,0,0,0,100,0),
|
||||
(@PATH,23,-7582.061,-1084.941,298.7889,0,0,0,100,0),
|
||||
(@PATH,24,-7562.621,-1112.578,307.4555,0,0,0,100,0),
|
||||
(@PATH,25,-7567.333,-1126.35,304.3445,0,0,0,100,0),
|
||||
(@PATH,26,-7587.611,-1127.057,299.0391,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Scarshield Legionnaire Entry: 9097
|
||||
SET @NPC := @GUID+228;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=70.94958,`position_y`=-282.0711,`position_z`=60.60775 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,72.5072,-281.7826,60.62373,0,0,0,100,0),
|
||||
(@PATH,2,87.12473,-283.3365,60.60862,29000,0,@PATH+1,100,0),
|
||||
(@PATH,3,86.74077,-283.0492,60.61073,0,0,0,100,0),
|
||||
(@PATH,4,70.94958,-282.0711,60.60775,24000,0,@PATH+2,100,0);
|
||||
DELETE FROM `waypoint_scripts` WHERE `id` IN (@PATH+1,@PATH+2);
|
||||
INSERT INTO `waypoint_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`o`,`guid`) VALUES
|
||||
(@PATH+1,2,2,74,1,0,97),
|
||||
(@PATH+1,2,1,7,0,0,98),
|
||||
(@PATH+1,24,2,74,0,0,99),
|
||||
(@PATH+2,0,30,0,0,3.892084,100),
|
||||
(@PATH+2,7,1,69,1,0,101),
|
||||
(@PATH+2,16,1,0,1,0,102);
|
||||
|
||||
-- Pathing for Scarshield Legionnaire Entry: 9097
|
||||
SET @NPC := @GUID+209;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=53.45955,`position_y`=-325.36,`position_z`=53.91605 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,41.51676,-327.2762,53.74633,0,0,0,100,0),
|
||||
(@PATH,2,34.57693,-329.2669,53.62961,0,0,0,100,0),
|
||||
(@PATH,3,22.06219,-329.2139,48.75629,0,0,0,100,0),
|
||||
(@PATH,4,18.71977,-332.48,48.72622,0,0,0,100,0),
|
||||
(@PATH,5,18.61024,-346.3583,48.6756,0,0,0,100,0),
|
||||
(@PATH,6,20.25173,-349.2039,48.67309,0,0,0,100,0),
|
||||
(@PATH,7,35.13033,-349.1511,48.67545,0,0,0,100,0),
|
||||
(@PATH,8,37.16372,-352.3886,48.67825,0,0,0,100,0),
|
||||
(@PATH,9,37.26665,-364.0914,48.65669,0,0,0,100,0),
|
||||
(@PATH,10,37.16372,-352.3886,48.67825,0,0,0,100,0),
|
||||
(@PATH,11,35.13033,-349.1511,48.67545,0,0,0,100,0),
|
||||
(@PATH,12,20.25173,-349.2039,48.67309,0,0,0,100,0),
|
||||
(@PATH,13,18.61024,-346.3583,48.6756,0,0,0,100,0),
|
||||
(@PATH,14,18.71977,-332.48,48.72622,0,0,0,100,0),
|
||||
(@PATH,15,22.06219,-329.2139,48.75629,0,0,0,100,0),
|
||||
(@PATH,16,34.57693,-329.2669,53.62961,0,0,0,100,0),
|
||||
(@PATH,17,41.51676,-327.2762,53.74633,0,0,0,100,0),
|
||||
(@PATH,18,53.45955,-325.36,53.91605,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Scarshield Legionnaire Entry: 9097
|
||||
SET @NPC := @GUID+229;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=81.97402,`position_y`=-288.0753,`position_z`=60.66125 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,88.13084,-288.4329,60.61533,0,0,0,100,0),
|
||||
(@PATH,2,93.48189,-291.8687,60.63227,0,0,0,100,0),
|
||||
(@PATH,3,95.94733,-296.9316,60.66517,0,0,0,100,0),
|
||||
(@PATH,4,95.94772,-309.7263,65.39042,0,0,0,100,0),
|
||||
(@PATH,5,94.99308,-314.9491,65.47927,0,0,0,100,0),
|
||||
(@PATH,6,87.00089,-316.9617,65.48379,0,0,0,100,0),
|
||||
(@PATH,7,71.71636,-319.5778,65.46734,0,0,0,100,0),
|
||||
(@PATH,8,65.58628,-320.8983,65.45923,0,0,0,100,0),
|
||||
(@PATH,9,64.69189,-327.0649,65.46348,0,0,0,100,0),
|
||||
(@PATH,10,64.73603,-340.4908,60.70201,0,0,0,100,0),
|
||||
(@PATH,11,66.16424,-345.6102,60.70203,0,0,0,100,0),
|
||||
(@PATH,12,71.37296,-346.4238,60.70203,0,0,0,100,0),
|
||||
(@PATH,13,75.15958,-346.2384,60.70203,0,0,0,100,0),
|
||||
(@PATH,14,83.80564,-346.3136,60.70203,0,0,0,100,0),
|
||||
(@PATH,15,91.50565,-346.1702,60.70203,0,0,0,100,0),
|
||||
(@PATH,16,94.48775,-344.4582,60.70203,0,0,0,100,0),
|
||||
(@PATH,17,95.49223,-340.7823,60.70203,0,0,0,100,0),
|
||||
(@PATH,18,95.32813,-327.5041,65.46348,0,0,0,100,0),
|
||||
(@PATH,19,94.68663,-322.0191,65.46594,0,0,0,100,0),
|
||||
(@PATH,20,89.48792,-319.0262,65.4938,0,0,0,100,0),
|
||||
(@PATH,21,80.78517,-319.4615,65.47144,0,0,0,100,0),
|
||||
(@PATH,22,70.61723,-318.8349,65.48348,0,0,0,100,0),
|
||||
(@PATH,23,65.92691,-314.6129,65.46348,0,0,0,100,0),
|
||||
(@PATH,24,64.53401,-310.319,65.46348,0,0,0,100,0),
|
||||
(@PATH,25,64.13761,-297.2044,60.74208,0,0,0,100,0),
|
||||
(@PATH,26,67.14284,-292.4547,60.63996,0,0,0,100,0),
|
||||
(@PATH,27,74.20583,-289.4101,60.64116,0,0,0,100,0),
|
||||
(@PATH,28,81.97402,-288.0753,60.66125,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Scarshield Legionnaire Entry: 9097
|
||||
SET @NPC := @GUID+230;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=83.98484,`position_y`=-287.0403,`position_z`=60.643 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,89.93808,-286.1351,60.59507,0,0,0,100,0),
|
||||
(@PATH,2,93.29991,-289.3597,60.59763,0,0,0,100,0),
|
||||
(@PATH,3,96.0648,-291.1504,60.62643,0,0,0,100,0),
|
||||
(@PATH,4,97.3805,-295.3065,60.67328,0,0,0,100,0),
|
||||
(@PATH,5,97.94749,-302.046,62.42866,0,0,0,100,0),
|
||||
(@PATH,6,97.94783,-313.342,65.46348,0,0,0,100,0),
|
||||
(@PATH,7,96.72861,-316.5773,65.48706,0,0,0,100,0),
|
||||
(@PATH,8,91.31343,-317.9382,65.49011,0,0,0,100,0),
|
||||
(@PATH,9,68.48672,-322.1597,65.45495,0,0,0,100,0),
|
||||
(@PATH,10,65.65896,-322.9286,65.45052,0,0,0,100,0),
|
||||
(@PATH,11,66.58692,-327.4106,65.46348,0,0,0,100,0),
|
||||
(@PATH,12,66.21835,-330.4742,64.56249,0,0,0,100,0),
|
||||
(@PATH,13,66.71193,-333.1539,63.52972,0,0,0,100,0),
|
||||
(@PATH,14,66.74886,-344.3894,60.70203,0,0,0,100,0),
|
||||
(@PATH,15,94.72881,-344.1098,60.70203,0,0,0,100,0),
|
||||
(@PATH,16,95.94814,-341.3136,60.70203,0,0,0,100,0),
|
||||
(@PATH,17,94.90443,-337.6124,61.81128,0,0,0,100,0),
|
||||
(@PATH,18,95.29044,-329.2947,65.01956,0,0,0,100,0),
|
||||
(@PATH,19,93.29169,-324.5692,65.46348,0,0,0,100,0),
|
||||
(@PATH,20,92.33022,-319.0261,65.49524,0,0,0,100,0),
|
||||
(@PATH,21,88.11071,-320.541,65.4697,0,0,0,100,0),
|
||||
(@PATH,22,77.12846,-321.647,65.46059,0,0,0,100,0),
|
||||
(@PATH,23,73.90438,-321.0413,65.46191,0,0,0,100,0),
|
||||
(@PATH,24,70.89841,-320.856,65.46152,0,0,0,100,0),
|
||||
(@PATH,25,67.89243,-320.6708,65.46112,0,0,0,100,0),
|
||||
(@PATH,26,62.8699,-314.552,65.46348,0,0,0,100,0),
|
||||
(@PATH,27,62.38148,-310.165,65.46348,0,0,0,100,0),
|
||||
(@PATH,28,62.16359,-298.0943,60.90481,0,0,0,100,0),
|
||||
(@PATH,29,62.07857,-295.2815,60.75649,0,0,0,100,0),
|
||||
(@PATH,30,66.51885,-289.6947,60.65805,0,0,0,100,0),
|
||||
(@PATH,31,71.19937,-288.5282,60.61031,0,0,0,100,0),
|
||||
(@PATH,32,76.71995,-286.1484,60.66695,0,0,0,100,0),
|
||||
(@PATH,33,83.98484,-287.0403,60.643,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Scarshield Spellbinder Entry: 9098
|
||||
SET @NPC := @GUID+252;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=36.89285,`position_y`=-331.2767,`position_z`=53.68202 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,39.96936,-329.8007,53.7379,0,0,0,100,0),
|
||||
(@PATH,2,57.18673,-326.7872,53.91625,0,0,0,100,0),
|
||||
(@PATH,3,34.34272,-331.2659,53.48465,0,0,0,100,0),
|
||||
(@PATH,4,26.80801,-331.241,48.74844,0,0,0,100,0),
|
||||
(@PATH,5,23.99778,-331.2221,48.75055,0,0,0,100,0),
|
||||
(@PATH,6,18.19567,-331.1975,48.73712,0,0,0,100,0),
|
||||
(@PATH,7,18.45785,-335.4669,48.70008,0,0,0,100,0),
|
||||
(@PATH,8,20.61245,-337.6364,48.681,0,0,0,100,0),
|
||||
(@PATH,9,20.58323,-349.7892,48.67257,0,0,0,100,0),
|
||||
(@PATH,10,23.55131,-350.9213,48.67374,0,0,0,100,0),
|
||||
(@PATH,11,26.39461,-347.1821,48.68155,0,0,0,100,0),
|
||||
(@PATH,12,38.42376,-347.1394,48.67081,0,0,0,100,0),
|
||||
(@PATH,13,39.21199,-357.8676,48.65726,0,0,0,100,0),
|
||||
(@PATH,14,39.29136,-366.8922,48.65531,0,0,0,100,0),
|
||||
(@PATH,15,39.13438,-349.0444,48.67277,0,0,0,100,0),
|
||||
(@PATH,16,35.49154,-345.9659,48.6712,0,0,0,100,0),
|
||||
(@PATH,17,29.60406,-347.1707,48.68155,0,0,0,100,0),
|
||||
(@PATH,18,17.56905,-347.2134,48.6734,0,0,0,100,0),
|
||||
(@PATH,19,20.65288,-340.964,48.6903,0,0,0,100,0),
|
||||
(@PATH,20,20.74783,-328.9321,48.7581,0,0,0,100,0),
|
||||
(@PATH,21,24.81668,-329.3186,48.77163,0,0,0,100,0),
|
||||
(@PATH,22,28.94844,-331.2431,50.09388,0,0,0,100,0),
|
||||
(@PATH,23,31.78614,-331.2551,51.87762,0,0,0,100,0),
|
||||
(@PATH,24,34.34272,-331.2659,53.48465,0,0,0,100,0),
|
||||
(@PATH,25,36.89285,-331.2767,53.68202,0,0,0,100,0);
|
||||
384
sql/old/3.3.5a/2011_12_17_00_world_gameobject.sql
Normal file
384
sql/old/3.3.5a/2011_12_17_00_world_gameobject.sql
Normal file
@@ -0,0 +1,384 @@
|
||||
-- Add missing Go spawns for UBRS & LBRS
|
||||
SET @OGUID := 87602; -- 261 required
|
||||
DELETE FROM `gameobject` WHERE `map`=229 AND `id` IN (153464,175124,175194,175195,175196,175197,175198,175199,175200,175266,175267,175268,175269,175270,175271,175272,175706,175244,175187,175153,175705,175185,175186,164726,
|
||||
164726,175382,175385,175528,175529,175530,175531,175532,175533,175946,175947,175970,176447,176448,176449,176450,176451,176452,136950,136952,136955,176459,176460,176461,176462,176463,136922,136923,136925,136926,136927,
|
||||
136928,136929,136930,136931,136932,136933,136934,136935,136936,136937,136938,136939,136940,136941,136942,136943,136944,136945,136946,136947,136948,136949,136951,136954,136957,136959,136961,136962,136963,136964,153469,
|
||||
164725,175334,175571,175584,175588,175606,175607,175608,175609,175886,175949,175950,176089,176090,176425,176426,176427,176428,176429,176430,176431,176432,176433,176434,176435,176436,176437,176438,176439,176440,176441,
|
||||
176442,176443,176444,176445,176446,176454,176455,176456,176457,176458);
|
||||
INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES
|
||||
(@OGUID,175124,229,1,1,100.579681,-312.488953,91.4455,0.122172989,0,0,0,0,120,0,1),
|
||||
(@OGUID+1,175124,229,1,1,101.516693,-311.471344,91.4455,-1.58824873,0,0,0,0,120,0,1),
|
||||
(@OGUID+2,175124,229,1,1,102.414017,-304.376343,91.4466248,0.0174524616,0,0,0,0,120,0,1),
|
||||
(@OGUID+3,175124,229,1,1,104.212967,-289.411041,91.47319,1.50098288,0,0,0,0,120,0,1),
|
||||
(@OGUID+4,175124,229,1,1,104.316406,-302.841278,91.47408,3.07176614,0,0,0,0,120,0,1),
|
||||
(@OGUID+5,175124,229,1,1,104.403542,-299.438263,91.47574,0.6806767,0,0,0,0,120,0,1),
|
||||
(@OGUID+6,175124,229,1,1,104.601669,-287.9975,91.47882,-1.97221982,0,0,0,0,120,0,1),
|
||||
(@OGUID+7,175124,229,1,1,104.926949,-286.137817,91.48353,1.448622,0,0,0,0,120,0,1),
|
||||
(@OGUID+8,175124,229,1,1,105.029182,-300.911469,91.4845352,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+9,175124,229,1,1,106.199173,-299.793121,91.50144,-1.20427728,0,0,0,0,120,0,1),
|
||||
(@OGUID+10,175124,229,1,1,106.420288,-281.429016,91.50514,-0.593412,0,0,0,0,120,0,1),
|
||||
(@OGUID+11,175124,229,1,1,106.603729,-283.775574,91.5078,1.954769,0,0,0,0,120,0,1),
|
||||
(@OGUID+12,175124,229,1,1,107.189377,-287.659851,91.51627,0.7504908,0,0,0,0,120,0,1),
|
||||
(@OGUID+13,175124,229,1,1,107.418739,-282.511749,91.5196,-2.19911456,0,0,0,0,120,0,1),
|
||||
(@OGUID+14,175124,229,1,1,107.927856,-299.94812,91.52648,2.00712848,0,0,0,0,120,0,1),
|
||||
(@OGUID+15,175124,229,1,1,112.297363,-390.177521,110.862892,-0.122172989,0,0,0,0,120,0,1),
|
||||
(@OGUID+16,175124,229,1,1,113.017937,-451.803925,110.862892,2.82742977,0,0,0,0,120,0,1),
|
||||
(@OGUID+17,175124,229,1,1,113.929672,-389.215057,110.862892,-0.785396755,0,0,0,0,120,0,1),
|
||||
(@OGUID+18,175124,229,1,1,114.805519,-450.286,110.862892,0.767943859,0,0,0,0,120,0,1),
|
||||
(@OGUID+19,175124,229,1,1,115.410751,-389.923,110.862892,-0.8377574,0,0,0,0,120,0,1),
|
||||
(@OGUID+20,175124,229,1,1,115.812012,-453.056946,110.862892,-1.98967242,0,0,0,0,120,0,1),
|
||||
(@OGUID+21,175124,229,1,1,186.987213,-389.476227,110.862892,-1.53588951,0,0,0,0,120,0,1),
|
||||
(@OGUID+22,175124,229,1,1,187.74115,-387.874451,110.862892,1.134463,0,0,0,0,120,0,1),
|
||||
(@OGUID+23,175124,229,1,1,188.002533,-452.5383,110.862892,1.34390128,0,0,0,0,120,0,1),
|
||||
(@OGUID+24,175124,229,1,1,188.12558,-450.820068,110.862892,1.48352814,0,0,0,0,120,0,1),
|
||||
(@OGUID+25,175124,229,1,1,189.080276,-388.61087,110.862892,-0.296705216,0,0,0,0,120,0,1),
|
||||
(@OGUID+26,175124,229,1,1,189.834488,-451.310455,110.862892,-2.86233544,0,0,0,0,120,0,1),
|
||||
(@OGUID+27,175124,229,1,1,197.826462,-407.929718,110.885162,-2.16420579,0,0,0,0,120,0,1),
|
||||
(@OGUID+28,175124,229,1,1,197.889175,-409.4169,110.885162,-1.51843619,0,0,0,0,120,0,1),
|
||||
(@OGUID+29,175124,229,1,1,198.345856,-432.6916,110.885071,-2.0594883,0,0,0,0,120,0,1),
|
||||
(@OGUID+30,175124,229,1,1,199.2812,-431.4338,110.885071,-2.44346023,0,0,0,0,120,0,1),
|
||||
(@OGUID+31,175124,229,1,1,199.588242,-433.8074,110.885071,1.11700928,0,0,0,0,120,0,1),
|
||||
(@OGUID+32,175124,229,1,1,199.616272,-410.271881,110.885689,-2.932139,0,0,0,0,120,0,1),
|
||||
(@OGUID+33,175124,229,1,1,200.124588,-407.845734,110.885162,2.879789,0,0,0,0,120,0,1),
|
||||
(@OGUID+34,175124,229,1,1,200.719711,-431.708069,110.885071,1.7802341,0,0,0,0,120,0,1),
|
||||
(@OGUID+35,175124,229,1,1,200.743408,-409.405762,110.885162,-1.37880921,0,0,0,0,120,0,1),
|
||||
(@OGUID+36,175124,229,1,1,201.846771,-432.208649,110.885483,1.448622,0,0,0,0,120,0,1),
|
||||
(@OGUID+37,175124,229,1,1,202.572159,-392.328,111.153641,-1.36135614,0,0,0,0,120,0,1),
|
||||
(@OGUID+38,175124,229,1,1,202.891327,-394.92514,111.134247,-2.80997539,0,0,0,0,120,0,1),
|
||||
(@OGUID+39,175124,229,1,1,203.082092,-401.453033,111.08667,-1.06464958,0,0,0,0,120,0,1),
|
||||
(@OGUID+40,175124,229,1,1,203.280655,-398.871735,111.104973,2.86233544,0,0,0,0,120,0,1),
|
||||
(@OGUID+41,175124,229,1,1,203.856339,-403.369232,111.071358,-1.15191638,0,0,0,0,120,0,1),
|
||||
(@OGUID+42,175124,229,1,1,204.114517,-393.5981,111.141563,-0.6457717,0,0,0,0,120,0,1),
|
||||
(@OGUID+43,175124,229,1,1,204.389526,-395.494537,111.127327,-1.2915417,0,0,0,0,120,0,1),
|
||||
(@OGUID+44,175124,229,1,1,204.402267,-400.3069,111.092491,-2.19911456,0,0,0,0,120,0,1),
|
||||
(@OGUID+45,175124,229,1,1,205.198654,-401.573273,111.081833,0.261798173,0,0,0,0,120,0,1),
|
||||
(@OGUID+46,175124,229,1,1,206.9045,-419.7901,110.925056,-0.7504908,0,0,0,0,120,0,1),
|
||||
(@OGUID+47,175124,229,1,1,207.266647,-434.7158,110.886642,0.226892471,0,0,0,0,120,0,1),
|
||||
(@OGUID+48,175124,229,1,1,207.935486,-420.0201,110.930283,-0.174532115,0,0,0,0,120,0,1),
|
||||
(@OGUID+49,175124,229,1,1,208.006454,-422.068726,110.929123,-1.51843619,0,0,0,0,120,0,1),
|
||||
(@OGUID+50,175124,229,1,1,208.166092,-418.3611,110.932716,2.21656513,0,0,0,0,120,0,1),
|
||||
(@OGUID+51,175124,229,1,1,208.798172,-433.633331,110.888489,-2.82742977,0,0,0,0,120,0,1),
|
||||
(@OGUID+52,175124,229,1,1,209.071991,-435.188141,110.884933,-2.94959545,0,0,0,0,120,0,1),
|
||||
(@OGUID+53,175124,229,1,1,209.28624,-391.269562,111.14872,-2.94959545,0,0,0,0,120,0,1),
|
||||
(@OGUID+54,175124,229,1,1,209.562531,-419.839661,110.938927,-0.5410506,0,0,0,0,120,0,1),
|
||||
(@OGUID+55,175124,229,1,1,210.485046,-393.288025,111.131866,-0.122172989,0,0,0,0,120,0,1),
|
||||
(@OGUID+56,175124,229,1,1,210.653778,-391.8297,111.142113,1.91986156,0,0,0,0,120,0,1),
|
||||
(@OGUID+57,175124,229,1,1,211.61734,-434.677,110.887962,-1.55334139,0,0,0,0,120,0,1),
|
||||
(@OGUID+58,175124,229,1,1,211.90686,-420.1357,110.945183,1.93731225,0,0,0,0,120,0,1),
|
||||
(@OGUID+59,175124,229,1,1,212.066559,-392.1727,111.136993,-0.5585039,0,0,0,0,120,0,1),
|
||||
(@OGUID+60,175124,229,1,1,212.458679,-418.521362,110.9529,2.98449826,0,0,0,0,120,0,1),
|
||||
(@OGUID+61,175124,229,1,1,212.63623,-432.306061,110.89183,-0.174532115,0,0,0,0,120,0,1),
|
||||
(@OGUID+62,175124,229,1,1,213.310959,-410.503100,110.962784,2.146753,0,0,0,0,120,0,1),
|
||||
(@OGUID+63,175124,229,1,1,213.576500,-419.532900,110.949500,0.628317,0,0,0,0,120,0,1),
|
||||
(@OGUID+64,175124,229,1,1,214.320190,-408.951233,110.967888,2.967041,0,0,0,0,120,0,1),
|
||||
(@OGUID+65,175124,229,1,1,217.875015,-392.086517,111.126740,0.907570,0,0,0,0,120,0,1),
|
||||
(@OGUID+66,175124,229,1,1,218.954147,-392.578674,111.121162,1.919862,0,0,0,0,120,0,1),
|
||||
(@OGUID+67,175124,229,1,1,219.678818,-393.405100,111.113823,-1.989672,0,0,0,0,120,0,1),
|
||||
(@OGUID+68,175124,229,1,1,219.995500,-399.617200,111.068283,-2.617989,0,0,0,0,120,0,1),
|
||||
(@OGUID+69,175124,229,1,1,220.161682,-421.224945,110.948463,-1.762782,0,0,0,0,120,0,1),
|
||||
(@OGUID+70,175124,229,1,1,220.172836,-391.630066,111.125732,1.361356,0,0,0,0,120,0,1),
|
||||
(@OGUID+71,175124,229,1,1,220.181274,-401.405100,111.055000,-1.989672,0,0,0,0,120,0,1),
|
||||
(@OGUID+72,175124,229,1,1,220.601800,-418.446900,110.961227,-1.221729,0,0,0,0,120,0,1),
|
||||
(@OGUID+73,175124,229,1,1,220.823685,-398.356600,111.075851,1.989672,0,0,0,0,120,0,1),
|
||||
(@OGUID+74,175124,229,1,1,220.835770,-393.648834,111.109894,-1.972220,0,0,0,0,120,0,1),
|
||||
(@OGUID+75,175124,229,1,1,220.869781,-411.346252,110.993027,-2.478367,0,0,0,0,120,0,1),
|
||||
(@OGUID+76,175124,229,1,1,221.281387,-400.066300,111.062630,0.977383,0,0,0,0,120,0,1),
|
||||
(@OGUID+77,175124,229,1,1,221.347992,-409.122284,111.003387,-2.076939,0,0,0,0,120,0,1),
|
||||
(@OGUID+78,175124,229,1,1,221.701370,-420.444366,110.953438,1.640607,0,0,0,0,120,0,1),
|
||||
(@OGUID+79,175124,229,1,1,222.093460,-432.249939,110.901382,0.000000,0,0,0,0,120,0,1),
|
||||
(@OGUID+80,175124,229,1,1,222.151962,-411.776367,110.992393,-3.071766,0,0,0,0,120,0,1),
|
||||
(@OGUID+81,175124,229,1,1,222.218918,-428.907776,110.916351,2.792518,0,0,0,0,120,0,1),
|
||||
(@OGUID+82,175124,229,1,1,222.736313,-410.476624,110.998500,-1.204277,0,0,0,0,120,0,1),
|
||||
(@OGUID+83,175124,229,1,1,222.815536,-430.970551,110.907448,-0.261798,0,0,0,0,120,0,1),
|
||||
(@OGUID+84,175124,229,1,1,223.579010,-419.323151,110.959229,-1.884953,0,0,0,0,120,0,1),
|
||||
(@OGUID+85,175124,229,1,1,223.816528,-429.410300,110.914421,-0.174532,0,0,0,0,120,0,1),
|
||||
(@OGUID+86,175124,229,1,1,223.977676,-432.850037,110.899147,1.884953,0,0,0,0,120,0,1),
|
||||
(@OGUID+87,175124,229,1,1,224.212540,-412.156647,110.991089,1.588249,0,0,0,0,120,0,1),
|
||||
(@OGUID+88,175124,229,1,1,48.812670,-337.076050,91.530170,2.268925,0,0,0,0,120,0,1),
|
||||
(@OGUID+89,175124,229,1,1,50.171127,-316.651550,91.530350,-2.426003,0,0,0,0,120,0,1),
|
||||
(@OGUID+90,175124,229,1,1,51.266464,-338.088400,91.541910,-1.989672,0,0,0,0,120,0,1),
|
||||
(@OGUID+91,175124,229,1,1,51.575382,-315.041870,91.522530,2.146753,0,0,0,0,120,0,1),
|
||||
(@OGUID+92,175124,229,1,1,51.863476,-316.613831,91.520930,-0.593412,0,0,0,0,120,0,1),
|
||||
(@OGUID+93,175124,229,1,1,54.265644,-255.434738,96.858940,1.343901,0,0,0,0,120,0,1),
|
||||
(@OGUID+94,175124,229,1,1,54.572220,-336.735138,91.529305,-1.134463,0,0,0,0,120,0,1),
|
||||
(@OGUID+95,175124,229,1,1,55.353077,-249.984161,97.048740,-2.652894,0,0,0,0,120,0,1),
|
||||
(@OGUID+96,175124,229,1,1,55.441975,-254.350900,97.197754,0.541051,0,0,0,0,120,0,1),
|
||||
(@OGUID+97,175124,229,1,1,56.761517,-332.325000,91.465240,-1.064650,0,0,0,0,120,0,1),
|
||||
(@OGUID+98,175124,229,1,1,56.851460,-253.342600,96.962560,-0.087266,0,0,0,0,120,0,1),
|
||||
(@OGUID+99,175124,229,1,1,56.876007,-255.377335,96.968940,0.261798,0,0,0,0,120,0,1),
|
||||
(@OGUID+100,175124,229,1,1,57.859043,-336.093262,91.523320,-2.234018,0,0,0,0,120,0,1),
|
||||
(@OGUID+101,175124,229,1,1,57.860306,-256.662100,96.739450,-1.012289,0,0,0,0,120,0,1),
|
||||
(@OGUID+102,175124,229,1,1,58.117460,-253.946426,96.880950,0.506145,0,0,0,0,120,0,1),
|
||||
(@OGUID+103,175124,229,1,1,58.817844,-334.106964,91.504810,0.977383,0,0,0,0,120,0,1),
|
||||
(@OGUID+104,175124,229,1,1,59.025590,-271.140137,93.636284,-2.495818,0,0,0,0,120,0,1),
|
||||
(@OGUID+105,175124,229,1,1,59.168900,-255.102982,96.815750,1.082103,0,0,0,0,120,0,1),
|
||||
(@OGUID+106,175124,229,1,1,59.192165,-317.294067,91.480150,-0.191985,0,0,0,0,120,0,1),
|
||||
(@OGUID+107,175124,229,1,1,59.330967,-332.230164,91.472916,-1.640610,0,0,0,0,120,0,1),
|
||||
(@OGUID+108,175124,229,1,1,59.419060,-337.406500,91.535560,-0.471239,0,0,0,0,120,0,1),
|
||||
(@OGUID+109,175124,229,1,1,60.185110,-270.196200,93.681820,-2.268925,0,0,0,0,120,0,1),
|
||||
(@OGUID+110,175124,229,1,1,60.351400,-312.296539,91.522070,1.134463,0,0,0,0,120,0,1),
|
||||
(@OGUID+111,175124,229,1,1,60.664970,-268.136017,93.601850,2.356195,0,0,0,0,120,0,1),
|
||||
(@OGUID+112,175124,229,1,1,61.012710,-315.652800,91.484780,0.733038,0,0,0,0,120,0,1),
|
||||
(@OGUID+113,175124,229,1,1,61.056700,-313.921875,91.505030,-0.680679,0,0,0,0,120,0,1),
|
||||
(@OGUID+114,175124,229,1,1,61.321583,-272.012665,93.600870,-1.151916,0,0,0,0,120,0,1),
|
||||
(@OGUID+115,175124,229,1,1,62.495476,-334.331300,91.506905,-0.349065,0,0,0,0,120,0,1),
|
||||
(@OGUID+116,175124,229,1,1,63.307910,-317.114000,91.471550,-3.089183,0,0,0,0,120,0,1),
|
||||
(@OGUID+117,175124,229,1,1,63.571682,-336.638200,91.528400,0.069812,0,0,0,0,120,0,1),
|
||||
(@OGUID+118,175124,229,1,1,64.204040,-268.474300,93.245410,-1.570796,0,0,0,0,120,0,1),
|
||||
(@OGUID+119,175124,229,1,1,64.925964,-317.059448,91.461044,1.780234,0,0,0,0,120,0,1),
|
||||
(@OGUID+120,175124,229,1,1,65.296530,-267.929600,93.076380,0.349065,0,0,0,0,120,0,1),
|
||||
(@OGUID+121,175124,229,1,1,65.583550,-305.104828,91.485280,1.099556,0,0,0,0,120,0,1),
|
||||
(@OGUID+122,175124,229,1,1,65.987790,-303.633759,91.469400,-2.617989,0,0,0,0,120,0,1),
|
||||
(@OGUID+123,175124,229,1,1,66.801750,-302.481100,91.451454,3.141593,0,0,0,0,120,0,1),
|
||||
(@OGUID+124,175124,229,1,1,68.121820,-302.416382,91.438910,3.124123,0,0,0,0,120,0,1),
|
||||
(@OGUID+125,175124,229,1,1,68.251770,-314.874634,91.433460,1.361356,0,0,0,0,120,0,1),
|
||||
(@OGUID+126,175124,229,1,1,68.728424,-307.073029,91.450460,0.994837,0,0,0,0,120,0,1),
|
||||
(@OGUID+127,175124,229,1,1,69.459880,-303.626923,91.437965,-1.396262,0,0,0,0,120,0,1),
|
||||
(@OGUID+128,175124,229,1,1,69.691370,-332.161224,91.486680,1.134463,0,0,0,0,120,0,1),
|
||||
(@OGUID+129,175124,229,1,1,69.930570,-326.639800,91.458800,2.897245,0,0,0,0,120,0,1),
|
||||
(@OGUID+130,175124,229,1,1,69.991165,-329.339233,91.465836,-0.401425,0,0,0,0,120,0,1),
|
||||
(@OGUID+131,175124,229,1,1,70.507195,-334.149000,91.505200,0.610864,0,0,0,0,120,0,1),
|
||||
(@OGUID+132,175124,229,1,1,70.929120,-304.969635,91.431526,3.036838,0,0,0,0,120,0,1),
|
||||
(@OGUID+133,175124,229,1,1,71.711500,-306.066100,91.418205,-1.518436,0,0,0,0,120,0,1),
|
||||
(@OGUID+134,175124,229,1,1,71.794900,-278.164948,92.456700,2.234018,0,0,0,0,120,0,1),
|
||||
(@OGUID+135,175124,229,1,1,72.002580,-328.391968,91.461020,-1.431168,0,0,0,0,120,0,1),
|
||||
(@OGUID+136,175124,229,1,1,72.026024,-331.224518,91.472250,-2.687807,0,0,0,0,120,0,1),
|
||||
(@OGUID+137,175124,229,1,1,72.053100,-325.809235,91.454160,1.431168,0,0,0,0,120,0,1),
|
||||
(@OGUID+138,175124,229,1,1,72.068990,-276.632355,92.298294,2.617989,0,0,0,0,120,0,1),
|
||||
(@OGUID+139,175124,229,1,1,72.141040,-285.905670,91.945180,-1.012289,0,0,0,0,120,0,1),
|
||||
(@OGUID+140,175124,229,1,1,73.133210,-306.736481,91.412690,-0.645772,0,0,0,0,120,0,1),
|
||||
(@OGUID+141,175124,229,1,1,73.545160,-324.155731,91.448090,0.453785,0,0,0,0,120,0,1),
|
||||
(@OGUID+142,175124,229,1,1,74.038910,-287.330600,91.448830,-1.012289,0,0,0,0,120,0,1),
|
||||
(@OGUID+143,175124,229,1,1,74.100430,-291.836700,91.442010,-0.401425,0,0,0,0,120,0,1),
|
||||
(@OGUID+144,175124,229,1,1,74.206830,-273.590729,91.642830,-1.396262,0,0,0,0,120,0,1),
|
||||
(@OGUID+145,175124,229,1,1,74.449070,-307.402924,91.414390,-0.733038,0,0,0,0,120,0,1),
|
||||
(@OGUID+146,175124,229,1,1,74.752180,-275.849121,91.650276,0.959930,0,0,0,0,120,0,1),
|
||||
(@OGUID+147,175124,229,1,1,75.177895,-292.906250,91.444630,1.989672,0,0,0,0,120,0,1),
|
||||
(@OGUID+148,175124,229,1,1,76.242165,-277.381100,91.473785,-0.785397,0,0,0,0,120,0,1),
|
||||
(@OGUID+149,175124,229,1,1,76.649890,-263.575470,91.480260,0.767944,0,0,0,0,120,0,1),
|
||||
(@OGUID+150,175124,229,1,1,76.864716,-275.632080,91.477770,2.321287,0,0,0,0,120,0,1),
|
||||
(@OGUID+151,175124,229,1,1,77.275060,-262.142944,91.479930,-1.256636,0,0,0,0,120,0,1),
|
||||
(@OGUID+152,175124,229,1,1,77.482170,-292.279968,91.447014,-0.087266,0,0,0,0,120,0,1),
|
||||
(@OGUID+153,175124,229,1,1,77.701280,-295.117300,91.443660,-1.117009,0,0,0,0,120,0,1),
|
||||
(@OGUID+154,175124,229,1,1,78.590004,-266.496338,91.474560,2.007128,0,0,0,0,120,0,1),
|
||||
(@OGUID+155,175124,229,1,1,79.001236,-331.653259,91.471030,-2.338740,0,0,0,0,120,0,1),
|
||||
(@OGUID+156,175124,229,1,1,79.072030,-328.432700,91.452940,-0.541051,0,0,0,0,120,0,1),
|
||||
(@OGUID+157,175124,229,1,1,79.206190,-262.497070,91.475750,-2.129301,0,0,0,0,120,0,1),
|
||||
(@OGUID+158,175124,229,1,1,79.568920,-291.473877,91.449265,-0.174532,0,0,0,0,120,0,1),
|
||||
(@OGUID+159,175124,229,1,1,79.786570,-325.953278,91.445595,1.605702,0,0,0,0,120,0,1),
|
||||
(@OGUID+160,175124,229,1,1,80.484150,-316.636383,91.437960,-0.855211,0,0,0,0,120,0,1),
|
||||
(@OGUID+161,175124,229,1,1,80.788110,-253.589417,91.475460,-2.146753,0,0,0,0,120,0,1),
|
||||
(@OGUID+162,175124,229,1,1,80.916214,-328.544200,91.451100,-2.094393,0,0,0,0,120,0,1),
|
||||
(@OGUID+163,175124,229,1,1,81.006350,-332.454468,91.481350,-2.513274,0,0,0,0,120,0,1),
|
||||
(@OGUID+164,175124,229,1,1,81.010410,-264.958038,91.470480,2.757613,0,0,0,0,120,0,1),
|
||||
(@OGUID+165,175124,229,1,1,81.071785,-330.128571,91.455090,-1.029743,0,0,0,0,120,0,1),
|
||||
(@OGUID+166,175124,229,1,1,81.765560,-326.139557,91.445510,2.460913,0,0,0,0,120,0,1),
|
||||
(@OGUID+167,175124,229,1,1,81.817490,-317.400055,91.439900,0.174532,0,0,0,0,120,0,1),
|
||||
(@OGUID+168,175124,229,1,1,81.974480,-335.983826,91.522300,-1.500983,0,0,0,0,120,0,1),
|
||||
(@OGUID+169,175124,229,1,1,82.075060,-251.810257,91.472730,-1.692969,0,0,0,0,120,0,1),
|
||||
(@OGUID+170,175124,229,1,1,82.531170,-315.925079,91.436134,1.710422,0,0,0,0,120,0,1),
|
||||
(@OGUID+171,175124,229,1,1,82.764340,-267.748474,91.465096,-3.019413,0,0,0,0,120,0,1),
|
||||
(@OGUID+172,175124,229,1,1,82.941520,-330.608337,91.454190,0.698132,0,0,0,0,120,0,1),
|
||||
(@OGUID+173,175124,229,1,1,82.960050,-249.989090,91.470880,-1.640610,0,0,0,0,120,0,1),
|
||||
(@OGUID+174,175124,229,1,1,83.030556,-333.102661,91.489250,-0.209439,0,0,0,0,120,0,1),
|
||||
(@OGUID+175,175124,229,1,1,83.216140,-327.689700,91.446200,-0.296705,0,0,0,0,120,0,1),
|
||||
(@OGUID+176,175124,229,1,1,83.653244,-252.415115,91.469410,1.954769,0,0,0,0,120,0,1),
|
||||
(@OGUID+177,175124,229,1,1,83.950905,-325.865200,91.445510,-2.967041,0,0,0,0,120,0,1),
|
||||
(@OGUID+178,175124,229,1,1,83.954080,-315.109400,91.434060,-0.541051,0,0,0,0,120,0,1),
|
||||
(@OGUID+179,175124,229,1,1,84.112040,-268.795441,91.461670,-2.879789,0,0,0,0,120,0,1),
|
||||
(@OGUID+180,175124,229,1,1,84.506134,-248.377167,91.467630,1.780234,0,0,0,0,120,0,1),
|
||||
(@OGUID+181,175124,229,1,1,84.657295,-301.760900,91.443214,0.157079,0,0,0,0,120,0,1),
|
||||
(@OGUID+182,175124,229,1,1,85.563520,-293.522736,91.447860,1.308995,0,0,0,0,120,0,1),
|
||||
(@OGUID+183,175124,229,1,1,85.667694,-314.023560,91.436035,-2.076939,0,0,0,0,120,0,1),
|
||||
(@OGUID+184,175124,229,1,1,85.834040,-295.413666,91.447740,2.775069,0,0,0,0,120,0,1),
|
||||
(@OGUID+185,175124,229,1,1,85.975090,-250.809708,91.464530,-2.932139,0,0,0,0,120,0,1),
|
||||
(@OGUID+186,175124,229,1,1,86.112880,-302.506317,91.443740,0.767944,0,0,0,0,120,0,1),
|
||||
(@OGUID+187,175124,229,1,1,86.367140,-246.965225,91.463715,1.815142,0,0,0,0,120,0,1),
|
||||
(@OGUID+188,175124,229,1,1,87.226135,-252.472137,91.461900,-0.942477,0,0,0,0,120,0,1),
|
||||
(@OGUID+189,175124,229,1,1,87.281105,-254.392151,91.461790,0.034906,0,0,0,0,120,0,1),
|
||||
(@OGUID+190,175124,229,1,1,87.410990,-278.121460,91.453200,-2.565632,0,0,0,0,120,0,1),
|
||||
(@OGUID+191,175124,229,1,1,87.812740,-314.716200,91.444310,3.019413,0,0,0,0,120,0,1),
|
||||
(@OGUID+192,175124,229,1,1,87.861210,-303.151947,91.444374,-1.797689,0,0,0,0,120,0,1),
|
||||
(@OGUID+193,175124,229,1,1,87.923130,-280.001373,91.447140,-2.705255,0,0,0,0,120,0,1),
|
||||
(@OGUID+194,175124,229,1,1,88.098390,-333.163361,91.484410,1.431168,0,0,0,0,120,0,1),
|
||||
(@OGUID+195,175124,229,1,1,88.343250,-248.339035,91.459560,2.286379,0,0,0,0,120,0,1),
|
||||
(@OGUID+196,175124,229,1,1,88.691250,-301.069800,91.444680,0.366518,0,0,0,0,120,0,1),
|
||||
(@OGUID+197,175124,229,1,1,88.808876,-316.133700,91.444670,-0.698132,0,0,0,0,120,0,1),
|
||||
(@OGUID+198,175124,229,1,1,89.004050,-251.208176,91.458170,2.949595,0,0,0,0,120,0,1),
|
||||
(@OGUID+199,175124,229,1,1,89.099160,-290.132965,91.446330,1.535890,0,0,0,0,120,0,1),
|
||||
(@OGUID+200,175124,229,1,1,89.926796,-301.831146,91.445114,0.541051,0,0,0,0,120,0,1),
|
||||
(@OGUID+201,175124,229,1,1,89.958930,-318.158875,91.444320,-0.872664,0,0,0,0,120,0,1),
|
||||
(@OGUID+202,175124,229,1,1,90.307120,-332.646332,91.473750,2.617989,0,0,0,0,120,0,1),
|
||||
(@OGUID+203,175124,229,1,1,90.575424,-320.018616,91.445500,1.204277,0,0,0,0,120,0,1),
|
||||
(@OGUID+204,175124,229,1,1,91.830710,-291.348500,91.445500,-3.089183,0,0,0,0,120,0,1),
|
||||
(@OGUID+205,175124,229,1,1,91.860870,-301.934900,91.445500,0.733038,0,0,0,0,120,0,1),
|
||||
(@OGUID+206,175124,229,1,1,92.115500,-334.860800,91.506560,0.453785,0,0,0,0,120,0,1),
|
||||
(@OGUID+207,175124,229,1,1,92.125114,-279.851044,91.445500,-1.675514,0,0,0,0,120,0,1),
|
||||
(@OGUID+208,175124,229,1,1,92.600150,-288.176178,91.445500,0.436332,0,0,0,0,120,0,1),
|
||||
(@OGUID+209,175124,229,1,1,92.644230,-304.446533,91.445500,2.443460,0,0,0,0,120,0,1),
|
||||
(@OGUID+210,175124,229,1,1,93.673340,-290.120483,91.445500,-0.750491,0,0,0,0,120,0,1),
|
||||
(@OGUID+211,175124,229,1,1,93.811460,-305.536255,91.445500,1.029743,0,0,0,0,120,0,1),
|
||||
(@OGUID+212,175124,229,1,1,93.890366,-288.281036,91.445500,2.356195,0,0,0,0,120,0,1),
|
||||
(@OGUID+213,175124,229,1,1,94.564140,-281.093300,91.445500,2.513274,0,0,0,0,120,0,1),
|
||||
(@OGUID+214,175124,229,1,1,94.917090,-288.643616,91.445500,2.967041,0,0,0,0,120,0,1),
|
||||
(@OGUID+215,175124,229,1,1,95.461464,-313.583679,91.445500,0.855211,0,0,0,0,120,0,1),
|
||||
(@OGUID+216,175124,229,1,1,96.062840,-287.470337,91.445500,1.710422,0,0,0,0,120,0,1),
|
||||
(@OGUID+217,175124,229,1,1,96.341835,-280.517578,91.445500,0.139624,0,0,0,0,120,0,1),
|
||||
(@OGUID+218,175124,229,1,1,97.125830,-281.948944,91.445500,-1.274091,0,0,0,0,120,0,1),
|
||||
(@OGUID+219,175124,229,1,1,97.196310,-310.890533,91.445500,-3.036838,0,0,0,0,120,0,1),
|
||||
(@OGUID+220,175124,229,1,1,97.340485,-313.429962,91.445500,2.670348,0,0,0,0,120,0,1),
|
||||
(@OGUID+221,175124,229,1,1,98.855940,-313.048950,91.445500,-1.012289,0,0,0,0,120,0,1),
|
||||
(@OGUID+222,175194,229,1,1,192.740372,-258.394226,76.86026,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+223,175195,229,1,1,124.778954,-298.037384,70.85264,0.785396755,0,0,0,0,120,0,0),
|
||||
(@OGUID+224,175196,229,1,1,228.802658,-301.542084,76.88119,-1.57079577,0,0,0,0,120,0,0),
|
||||
(@OGUID+225,175197,229,1,1,125.357704,-340.4654,70.875206,2.356195,0,0,0,0,120,0,0),
|
||||
(@OGUID+226,175198,229,1,1,215.157425,-334.733,76.81243,-2.356195,0,0,0,0,120,0,0),
|
||||
(@OGUID+227,175199,229,1,1,155.33374,-353.044769,70.83366,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+228,175200,229,1,1,155.320572,-286.073547,70.87632,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+229,175266,229,1,1,144.3746,-240.826111,91.471344,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+230,175267,229,1,1,126.354256,-240.769867,91.47007,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+231,175268,229,1,1,162.465958,-240.764633,91.46876,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+232,175269,229,1,1,126.295486,-258.731628,91.47007,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+233,175270,229,1,1,162.443268,-258.9044,91.47007,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+234,175271,229,1,1,126.4017,-276.79007,91.47007,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+235,175272,229,1,1,162.400742,-276.823822,91.47007,0,0,0,0,0,120,0,0),
|
||||
(@OGUID+236,175706,229,1,1,144.445023,-280.941467,91.54761,1.58824873,0,0,0,0,120,0,0),
|
||||
(@OGUID+237,175244,229,1,1,216.44342,-286.135376,76.94057,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+238,175187,229,1,1,144.369614,-299.198425,91.47007,0,0,0,0,0,120,0,1),
|
||||
(@OGUID+239,175153,229,1,1,113.751076,-258.944977,91.56026,0,0,0,0,0,120,0,1),
|
||||
(@OGUID+240,175705,229,1,1,175.127151,-258.944946,91.56026,0,0,0,0,0,120,0,1),
|
||||
(@OGUID+241,175185,229,1,1,194.234833,-420.225037,110.76078,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+242,175186,229,1,1,92.959465,-435.590027,110.954376,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+243,164726,229,1,1,108.036087,-420.3313,110.954376,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+244,175382,229,1,1,67.1283,-297.421021,91.42554,-0.0349062532,0,0,0,0,120,0,1),
|
||||
(@OGUID+245,175385,229,1,1,65.41786,-280.4161,94.04653,0.06981169,0,0,0,0,120,0,1),
|
||||
(@OGUID+246,175528,229,1,1,100.25692,-313.139862,66.5452652,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+247,175529,229,1,1,100.25692,-324.880249,66.5452652,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+248,175530,229,1,1,110.21476,-324.880249,68.03545,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+249,175531,229,1,1,110.21476,-313.139862,68.03545,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+250,175532,229,1,1,120.461563,-324.880249,73.53309,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+251,175533,229,1,1,120.461563,-313.139862,73.53309,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+252,175946,229,1,1,45.1932869,-259.712219,106.532768,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+253,175947,229,1,1,45.19329,-312.5203,106.532768,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+254,175970,229,1,1,147.227539,-240.435669,112.20472,-1.64933348,0,0,0,0,120,0,1),
|
||||
(@OGUID+255,176447,229,1,1,35.2498856,-505.634277,110.91436,-3.13874269,0,0,0,0,120,0,1),
|
||||
(@OGUID+256,176448,229,1,1,31.2830067,-505.634277,110.91436,1.57142222,0,0,0,0,120,0,1),
|
||||
(@OGUID+257,176449,229,1,1,27.4453468,-505.634277,110.91436,-0.261172324,0,0,0,0,120,0,1),
|
||||
(@OGUID+258,176450,229,1,1,21.5667877,-506.580719,110.91436,-1.57016766,0,0,0,0,120,0,1),
|
||||
(@OGUID+259,176451,229,1,1,18.0824432,-505.634277,110.91436,-3.13874269,0,0,0,0,120,0,1),
|
||||
(@OGUID+260,176452,229,1,1,24.5420456,-504.7355,110.91436,-2.35556316,0,0,0,0,120,0,1),
|
||||
(@OGUID+261,136950,229,1,1,72.83732,-265.629639,60.73645,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+262,136952,229,1,1,69.97309,-329.867767,55.8721352,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+263,136955,229,1,1,56.3640633,-306.158142,54.01571,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+264,176459,229,1,1,68.64788,-270.903229,60.73748,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+265,176460,229,1,1,70.54355,-257.169067,60.74014,3.124123,0,0,0,0,120,0,1),
|
||||
(@OGUID+266,176461,229,1,1,69.3254242,-265.102051,60.60442,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+267,176462,229,1,1,90.48029,-283.217,60.70017,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+268,176463,229,1,1,91.63333,-262.053284,60.70017,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+269,136922,229,1,1,88.21516,-415.1,110.95723,2.72271276,0,0,0,0,120,0,1),
|
||||
(@OGUID+270,136923,229,1,1,87.4498444,-468.453552,116.886841,2.72271276,0,0,0,0,120,0,1),
|
||||
(@OGUID+271,136925,229,1,1,40.7229156,-586.7098,30.6816959,1.74532676,0,0,0,0,120,0,1),
|
||||
(@OGUID+272,136926,229,1,1,43.3148575,-572.47644,30.6816959,1.74532676,0,0,0,0,120,0,1),
|
||||
(@OGUID+273,136927,229,1,1,4.75705242,-567.072754,29.2221813,1.74532676,0,0,0,0,120,0,1),
|
||||
(@OGUID+274,136928,229,1,1,8.392041,-583.677,29.2221813,1.74532676,0,0,0,0,120,0,1),
|
||||
(@OGUID+275,136929,229,1,1,152.587021,-396.408356,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+276,136930,229,1,1,147.161285,-389.9539,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+277,136931,229,1,1,149.6765,-386.148346,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+278,136932,229,1,1,157.7783,-389.9539,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+279,136933,229,1,1,150.609192,-396.408356,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+280,136934,229,1,1,155.816116,-390.034546,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+281,136935,229,1,1,145.1764,-390.034546,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+282,136936,229,1,1,153.360245,-386.1687,121.963966,-1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+283,136937,229,1,1,149.569,-454.6866,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+284,136938,229,1,1,153.252762,-454.70694,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+285,136939,229,1,1,157.752838,-450.1581,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+286,136940,229,1,1,155.76796,-450.238739,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+287,136941,229,1,1,152.320068,-444.3045,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+288,136942,229,1,1,150.342224,-444.3045,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+289,136943,229,1,1,147.113144,-450.1581,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+290,136944,229,1,1,145.15094,-450.238739,121.963966,1.57079577,0,0,0,0,120,0,1),
|
||||
(@OGUID+291,136945,229,1,1,-174.133926,-342.7732,64.39388,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+292,136946,229,1,1,-172.351959,-462.842072,87.39826,-1.60570168,0,0,0,0,120,0,1),
|
||||
(@OGUID+293,136947,229,1,1,16.9936657,-253.820969,65.44975,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+294,136948,229,1,1,8.170414,-268.9804,65.44975,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+295,136949,229,1,1,51.2451057,-274.132843,65.44975,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+296,136951,229,1,1,68.8801651,-283.793518,60.73645,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+297,136954,229,1,1,16.1673641,-280.865326,9.61726,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+298,136957,229,1,1,117.4544,-254.2912,91.57107,2.72271276,0,0,0,0,120,0,1),
|
||||
(@OGUID+299,136959,229,1,1,125.65564,-280.80777,91.57107,2.72271276,0,0,0,0,120,0,1),
|
||||
(@OGUID+300,136961,229,1,1,46.4689255,-309.64917,91.57107,2.72271276,0,0,0,0,120,0,1),
|
||||
(@OGUID+301,136962,229,1,1,106.176666,-265.9525,91.57107,-1.46607578,0,0,0,0,120,0,1),
|
||||
(@OGUID+302,136963,229,1,1,107.690056,-253.095154,91.57107,2.72271276,0,0,0,0,120,0,1),
|
||||
(@OGUID+303,136964,229,1,1,82.58793,-364.5863,116.859177,2.72271276,0,0,0,0,120,0,1),
|
||||
(@OGUID+304,153464,229,1,1,-36.1175957,-583.8276,-18.8201447,1.97221982,0,0,0,0,120,0,1),
|
||||
(@OGUID+305,153469,229,1,1,-73.99849,-453.3353,-18.9350014,-3.08918333,0,0,0,0,120,0,1),
|
||||
(@OGUID+306,153469,229,1,1,-84.26773,-350.10376,70.9524155,1.91986156,0,0,0,0,120,0,1),
|
||||
(@OGUID+307,153469,229,1,1,86.85506,-587.50116,30.6085377,2.63544416,0,0,0,0,120,0,1),
|
||||
(@OGUID+308,164725,229,1,1,126.878883,-319.108551,70.93496,3.14159274,0,0,0,0,120,0,0),
|
||||
(@OGUID+309,175334,229,1,1,33.71665,-466.067383,-18.46511,-1.53588951,0,0,0,0,120,0,1),
|
||||
(@OGUID+310,175584,229,1,1,-14.3415041,-395.7287,48.5381279,2.86233544,0,0,0,0,120,0,1),
|
||||
(@OGUID+311,175588,229,1,1,-139.523071,-525.87854,6.363978,-2.4260025,0,0,0,0,120,0,1),
|
||||
(@OGUID+312,175606,229,1,1,-100.230141,-529.5372,-5.773813,-0.43633157,0,0,0,0,120,0,1),
|
||||
(@OGUID+313,175606,229,1,1,-100.324532,-523.847,10.7028713,2.111848,0,0,0,0,120,0,1),
|
||||
(@OGUID+314,175606,229,1,1,-101.885674,-521.985168,-7.841986,-0.0349062532,0,0,0,0,120,0,1),
|
||||
(@OGUID+315,175606,229,1,1,-102.4652,-575.651062,9.900889,2.478367,0,0,0,0,120,0,1),
|
||||
(@OGUID+316,175606,229,1,1,-112.209923,-569.506165,10.1991549,2.18166041,0,0,0,0,120,0,1),
|
||||
(@OGUID+317,175606,229,1,1,-125.2294,-576.6645,13.7725887,-0.296705216,0,0,0,0,120,0,1),
|
||||
(@OGUID+318,175606,229,1,1,-126.745758,-514.1637,-12.1469631,3.10665226,0,0,0,0,120,0,1),
|
||||
(@OGUID+319,175606,229,1,1,-129.513687,-441.7,24.4328327,0.9773831,0,0,0,0,120,0,1),
|
||||
(@OGUID+320,175606,229,1,1,-131.570419,-439.602051,22.8934059,-1.134463,0,0,0,0,120,0,1),
|
||||
(@OGUID+321,175606,229,1,1,-131.804932,-526.783936,6.556513,-2.28637886,0,0,0,0,120,0,1),
|
||||
(@OGUID+322,175606,229,1,1,-132.261276,-474.847717,9.822438,-2.82742977,0,0,0,0,120,0,1),
|
||||
(@OGUID+323,175606,229,1,1,-132.404343,-514.960754,-15.93743,-1.79768872,0,0,0,0,120,0,1),
|
||||
(@OGUID+324,175606,229,1,1,-138.894241,-439.497467,24.8087673,1.76278245,0,0,0,0,120,0,1),
|
||||
(@OGUID+325,175606,229,1,1,-139.15303,-434.7381,23.11234,-2.740162,0,0,0,0,120,0,1),
|
||||
(@OGUID+326,175606,229,1,1,-144.504959,-441.602783,23.1015816,0.3316107,0,0,0,0,120,0,1),
|
||||
(@OGUID+327,175606,229,1,1,-146.906982,-441.462952,22.4743786,-0.8028509,0,0,0,0,120,0,1),
|
||||
(@OGUID+328,175606,229,1,1,-147.8808,-448.5486,20.091135,1.3264482,0,0,0,0,120,0,1),
|
||||
(@OGUID+329,175606,229,1,1,-150.1039,-470.007965,16.2278,1.76278245,0,0,0,0,120,0,1),
|
||||
(@OGUID+330,175606,229,1,1,-153.787643,-515.2272,-15.9504414,-0.95993,0,0,0,0,120,0,1),
|
||||
(@OGUID+331,175606,229,1,1,-154.378235,-552.2341,9.918845,-2.0594883,0,0,0,0,120,0,1),
|
||||
(@OGUID+332,175606,229,1,1,-154.59169,-525.218567,8.161819,2.042035,0,0,0,0,120,0,1),
|
||||
(@OGUID+333,175606,229,1,1,-154.769653,-541.317,9.022168,-0.104719326,0,0,0,0,120,0,1),
|
||||
(@OGUID+334,175606,229,1,1,-154.889313,-570.3387,10.0172291,2.478367,0,0,0,0,120,0,1),
|
||||
(@OGUID+335,175607,229,1,1,20.4895344,-438.85733,-18.78273,-2.26892543,0,0,0,0,120,0,1),
|
||||
(@OGUID+336,175608,229,1,1,23.8203316,-440.8061,-18.75866,1.43116808,0,0,0,0,120,0,1),
|
||||
(@OGUID+337,175609,229,1,1,20.99143,-443.1193,-18.91834,1.08210289,0,0,0,0,120,0,1),
|
||||
(@OGUID+338,175609,229,1,1,23.7352352,-445.173035,-18.9350014,2.111848,0,0,0,0,120,0,1),
|
||||
(@OGUID+339,175609,229,1,1,25.9651279,-443.5448,-18.9203186,-2.75761318,0,0,0,0,120,0,1),
|
||||
(@OGUID+340,175886,229,1,1,-34.5386,-589.6351,30.9964237,-0.593412,0,0,0,0,120,0,1),
|
||||
(@OGUID+341,175886,229,1,1,-34.7323723,-589.6146,30.9339237,1.62315571,0,0,0,0,120,0,1),
|
||||
(@OGUID+342,175886,229,1,1,-35.6387024,-589.632263,30.9825344,-1.97221982,0,0,0,0,120,0,1),
|
||||
(@OGUID+343,175886,229,1,1,-36.297657,-589.616943,31.0103111,1.09955645,0,0,0,0,120,0,1),
|
||||
(@OGUID+344,175886,229,1,1,-37.7856445,-589.639465,30.9964237,-3.08918333,0,0,0,0,120,0,1),
|
||||
(@OGUID+345,175949,229,1,1,-128.233643,-482.381,25.4534683,-0.0174524616,0,0,0,0,120,0,1),
|
||||
(@OGUID+346,175950,229,1,1,-11.1344738,-466.205139,-16.8552532,-1.55334139,0,0,0,0,120,0,1),
|
||||
(@OGUID+347,176089,229,1,1,-18.8625946,-360.393951,-31.426754,2.513274,0,0,0,0,120,0,1),
|
||||
(@OGUID+348,176090,229,1,1,-19.0726433,-361.990631,-31.523716,-0.3490652,0,0,0,0,120,0,1),
|
||||
(@OGUID+349,176425,229,1,1,60.0723534,-511.967224,29.2142811,-3.13874269,0,0,0,0,120,0,1),
|
||||
(@OGUID+350,176426,229,1,1,56.9334679,-556.048035,30.66044,-3.13874269,0,0,0,0,120,0,1),
|
||||
(@OGUID+351,176427,229,1,1,53.1921,-461.069824,24.3897438,-3.14149952,0,0,0,0,120,0,1),
|
||||
(@OGUID+352,176428,229,1,1,-63.25678,-581.4829,29.29337,-3.14149952,0,0,0,0,120,0,1),
|
||||
(@OGUID+353,176429,229,1,1,-37.6862526,-551.8221,16.2163448,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+354,176430,229,1,1,-25.3348827,-478.438263,17.2503757,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+355,176431,229,1,1,-46.3864632,-448.609955,-18.5644283,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+356,176432,229,1,1,-2.64241648,-579.1437,-18.7608662,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+357,176433,229,1,1,26.982,-583.365234,-18.515255,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+358,176434,229,1,1,35.6424026,-550.729858,-18.41096,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+359,176435,229,1,1,33.1642647,-471.046875,-18.5059147,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+360,176436,229,1,1,31.9839039,-495.3488,-18.8984013,-3.13874269,0,0,0,0,120,0,1),
|
||||
(@OGUID+361,176437,229,1,1,-39.3852,-424.8782,-18.84707,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+362,176438,229,1,1,-23.2051277,-410.6093,-18.8984013,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+363,176439,229,1,1,-76.09747,-418.800659,-18.9234028,-1.83259165,0,0,0,0,120,0,1),
|
||||
(@OGUID+364,176440,229,1,1,-59.9712257,-409.6412,-18.8442917,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+365,176441,229,1,1,-79.5308762,-453.927216,-18.8331814,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+366,176442,229,1,1,-15.437788,-368.78067,49.49363,3.14085126,0,0,0,0,120,0,1),
|
||||
(@OGUID+367,176443,229,1,1,-121.137337,-296.445465,71.0397,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+368,176444,229,1,1,-137.26358,-305.604919,70.9605942,-1.83259165,0,0,0,0,120,0,1),
|
||||
(@OGUID+369,176445,229,1,1,-59.1198235,-339.829254,70.9605942,-1.83259165,0,0,0,0,120,0,1),
|
||||
(@OGUID+370,176446,229,1,1,-87.3357,-348.370026,71.0397,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+371,176454,229,1,1,60.57147,-562.5008,30.48111,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+372,176455,229,1,1,52.2036819,-470.448181,25.11214,3.14148068,0,0,0,0,120,0,1),
|
||||
(@OGUID+373,176456,229,1,1,-60.6475868,-584.3826,29.1114845,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+374,176457,229,1,1,-115.273315,-428.517548,-18.7010059,3.14159274,0,0,0,0,120,0,1),
|
||||
(@OGUID+375,176458,229,1,1,-114.981789,-421.896851,-18.9178715,3.14159274,0,0,0,0,120,0,1);
|
||||
2
sql/old/3.3.5a/2011_12_18_00_world_creature_addon.sql
Normal file
2
sql/old/3.3.5a/2011_12_18_00_world_creature_addon.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Delete addons for some creatures that has been removed
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (209318,209333,209315,209337,209308,209312,209331,209320,209335,209318,209333,209315,209337,209308,209312,209331,209320,209335);
|
||||
42
sql/old/3.3.5a/2011_12_18_01_world_gossip.sql
Normal file
42
sql/old/3.3.5a/2011_12_18_01_world_gossip.sql
Normal file
@@ -0,0 +1,42 @@
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7610 AND `text_id`=9261;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7610,9261);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8249 AND `text_id`=10266;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8249,10266);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7612 AND `text_id`=9263;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7612,9263);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7611 AND `text_id`=9262;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7611,9262);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7588 AND `text_id`=9236;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7588,9236);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7590 AND `text_id`=9238;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7590,9238);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7591 AND `text_id`=9239;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7591,9239);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7589 AND `text_id`=9237;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7589,9237);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7526 AND `text_id`=9128;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7526,9128);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7614 AND `text_id`=9265;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7614,9265);
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7610 WHERE `entry`=18004;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8249 WHERE `entry`=21172;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7612 WHERE `entry`=18005;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7611 WHERE `entry`=18006;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7588 WHERE `entry`=18010;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7590 WHERE `entry`=18019;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7589 WHERE `entry`=18009;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7614 WHERE `entry`=18003;
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (8249,7612,7611,7588,7590,7589,7495) AND `id`=0;
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id`=7590 AND `id`=1;
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(8249,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(7612,0,1, 'I wish to buy from you.',3,128,0,0,0,0, ''),
|
||||
(7611,0,1, 'I would like to buy from you.',3,128,0,0,0,0, ''),
|
||||
(7588,0,1, 'Show me your wares, Maktu.',3,128,0,0,0,0, ''),
|
||||
(7590,0,1, 'Let me browse your reagents and poison supplies.',3,128,0,0,0,0, ''),
|
||||
(7590,1,0, 'Specialist, eh? Just what kind of specialist are you, anyway?',1,1,7591,0,0,0, ''),
|
||||
(7589,0,1, 'I wish to browse your wares.',3,128,0,0,0,0, ''),
|
||||
(7495,0,0, 'Watcher Leesa''oh, why are you out here?',1,1,7526,0,0,0, '');
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_gen_luck_of_the_draw';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(72221,'spell_gen_luck_of_the_draw');
|
||||
3
sql/old/3.3.5a/2011_12_18_03_world_trinity_string.sql
Normal file
3
sql/old/3.3.5a/2011_12_18_03_world_trinity_string.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `trinity_string` WHERE `entry`=5031;
|
||||
INSERT INTO `trinity_string` (`entry`,`content_default`) VALUES
|
||||
(5031, 'AIName: %s ScriptName: %s');
|
||||
87
sql/old/3.3.5a/2011_12_18_04_world_misc.sql
Normal file
87
sql/old/3.3.5a/2011_12_18_04_world_misc.sql
Normal file
@@ -0,0 +1,87 @@
|
||||
-- Remove empty EAI Script call from the following entries
|
||||
UPDATE `creature_template` SET `AIName` = '' WHERE `entry` IN (30243,30632);
|
||||
|
||||
-- Crimson Hammersmith summon from Blacksmithing Plans fix
|
||||
-- Black Guard Swordsmith summon from Blacksmithing Plans fix
|
||||
UPDATE `gameobject_template` SET `AIName` = 'SmartGameObjectAI' WHERE `entry` IN (176325, 176327);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (176325, 176327) AND `source_type`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(176325, 1, 0, 0, 64, 0, 100, 1, 0, 0, 0, 0, 12, 11120, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 3585.5, -3000.15, 125, 2.19912, 'Blacksmithing Plans - summon Crimson Hammersmith'),
|
||||
(176327, 1, 0, 0, 64, 0, 100, 1, 0, 0, 0, 0, 12, 11121, 6, 60000, 0, 0, 0, 8, 0, 0, 0, 3818.4, -3693.32, 144.242, 0.261799, 'Blacksmithing Plans - summon Black Guard Swordsmith');
|
||||
|
||||
-- Sleeping Giants fix
|
||||
UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 24669;
|
||||
DELETE FROM `smart_scripts` WHERE (`entryorguid`=24669 AND `source_type`=0);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(24669, 0, 0, 1, 8, 0, 100, 0, 44261, 1, 0, 0, 33, 24669, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Dormant Vrykul - Sleeping Giants quest credit'),
|
||||
(24669, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dormant Vrykul - Sleeping Giants despawn');
|
||||
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=18 AND `SourceEntry`=34083;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(18, 0, 34083, 0, 24, 1, 24669, 0, 63, '', 'Awakening Rod target limit to Dormant Vrykul'); -- changed to item script by Nay, not tested.
|
||||
|
||||
-- Culling of Stratholme Hemotoxin SAI spell fix version
|
||||
SET @ENTRY := 28199;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `creature_ai_scripts` WHERE (`creature_id`=@ENTRY);
|
||||
DELETE FROM `smart_scripts` WHERE (`entryorguid`=@ENTRY);
|
||||
INSERT INTO `smart_scripts` VALUES
|
||||
(@ENTRY, 0, 0, 0, 9, 0, 25, 2, 0, 20, 5000, 8000, 11, 52522, 32, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Tomb Stalker - Cast Hemotoxin Normal'),
|
||||
(@ENTRY, 0, 1, 0, 9, 0, 40, 4, 0, 20, 5000, 8000, 11, 58782, 32, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 'Tomb Stalker - Cast Hemotoxin Heroic');
|
||||
|
||||
DELETE FROM `creature` WHERE `id` IN (28318, 29346);
|
||||
INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES
|
||||
(40153, 28318, 530, 1, 1, 0, 0, -1775.148438, 5548.291992, -12.428190, 4.146070, 300, 0, 0, 1, 0, 0, 0, 0, 0), -- Grand Apothecary Putress
|
||||
(40251, 29346, 530, 1, 1, 0, 0, 1925, -4123.1899, 43.1780, 4.79965, 300, 0, 0, 1, 0, 0, 0, 0, 0); -- Apothecary Karlov
|
||||
|
||||
-- Fix NPCs falling underground when killed by nelegalno
|
||||
UPDATE `creature_template` SET `InhabitType` = 3 WHERE `entry` IN (5936, 24899); -- Orca and Scoodles
|
||||
|
||||
-- Removes wrong restriction from G.N.E.R.D. rage
|
||||
DELETE FROM `achievement_criteria_data` WHERE `criteria_id`=3882 AND `type`=16;
|
||||
|
||||
-- Kalu'ak Fishing Derby start time fix
|
||||
UPDATE `game_event` SET `start_time` = '2011-01-01 13:00:00' WHERE `eventEntry`=63;
|
||||
UPDATE `game_event` SET `start_time` = '2011-01-01 14:00:00' WHERE `eventEntry`=64;
|
||||
|
||||
-- Stranglethorn Fishing Extravaganza start time fix ( http://old.wowhead.com/event=301 )
|
||||
UPDATE `game_event` SET `start_time` = '2011-01-01 14:00:00' WHERE `eventEntry` IN (14, 15, 62);
|
||||
UPDATE `game_event` SET `description` = 'Stranglethorn Fishing Extravaganza Announce' WHERE `eventEntry`=14;
|
||||
UPDATE `game_event` SET `description` = 'Stranglethorn Fishing Extravaganza Fishing Pools' WHERE `eventEntry`=15;
|
||||
UPDATE `game_event` SET `description` = 'Stranglethorn Fishing Extravaganza Turn-ins' WHERE `eventEntry`=62;
|
||||
|
||||
-- Eitrigg's Wisdom fix
|
||||
SET @GOSSIP = 21312;
|
||||
SET @NPC = 3144;
|
||||
SET @QUEST = 4941;
|
||||
-- Add gossip options for each menu id
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` BETWEEN @GOSSIP AND @GOSSIP+7;
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`, `id`, `option_icon`, `option_text`, `option_id`, `npc_option_npcflag`, `action_menu_id`, `action_poi_id`, `box_coded`, `box_money`, `box_text`) VALUES
|
||||
(@GOSSIP, 0, 0, 'Hello, Eitrigg. I bring news from Blackrock Spire.', 1, 1, @GOSSIP+1, 0, 0, 0, ''),
|
||||
(@GOSSIP+1, 0, 0, 'There is only one Warchief, Eitrigg!', 1, 1, @GOSSIP+2, 0, 0, 0, ''),
|
||||
(@GOSSIP+2, 0, 0, 'What do you mean?', 1, 1, @GOSSIP+3, 0, 0, 0, ''),
|
||||
(@GOSSIP+3, 0, 0, 'Hearthglen? But...', 1, 1, @GOSSIP+4, 0, 0, 0, ''),
|
||||
(@GOSSIP+4, 0, 0, 'I will take you up on that offer, Eitrigg.', 1, 1, @GOSSIP+5, 0, 0, 0, ''),
|
||||
(@GOSSIP+5, 0, 0, 'Ah, so that is how they pushed the Dark Iron to the lower parts of the Spire.', 1, 1, @GOSSIP+6, 0, 0, 0, ''),
|
||||
(@GOSSIP+6, 0, 0, 'Perhaps there exists a way?', 1, 1, @GOSSIP+7, 0, 0, 0, ''),
|
||||
(@GOSSIP+7, 0, 0, 'As you wish, Eitrigg.', 1, 1, 0, 0, 0, 0, '');
|
||||
-- Add gossip menus (text values already in db)
|
||||
DELETE FROM `gossip_menu` WHERE `entry`BETWEEN @GOSSIP+1 AND @GOSSIP+7;
|
||||
INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES
|
||||
(@GOSSIP+1, 3574),
|
||||
(@GOSSIP+2, 3575),
|
||||
(@GOSSIP+3, 3576),
|
||||
(@GOSSIP+4, 3577),
|
||||
(@GOSSIP+5, 3578),
|
||||
(@GOSSIP+6, 3579),
|
||||
(@GOSSIP+7, 3580);
|
||||
-- Add Condtion so gossip only shows when on quest
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=@GOSSIP;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
|
||||
(15, @GOSSIP, 0, 0, 9, 4941, 0, 0, 0, '', NULL);
|
||||
-- Add SAI for quest complete and close of gossip when last option selected
|
||||
UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=@NPC;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@NPC;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@NPC,0,0,1,62,0,100,0,@GOSSIP+7,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0.0,0.0,0.0,0.0,'Eitrigg - Select As you wish, Eitrigg. - Close gossip'),
|
||||
(@NPC,0,1,0,61,0,100,0,0,0,0,0,15,@QUEST,0,0,0,0,0,7,0,0,0,0.0,0.0,0.0,0.0,'Eitrigg - On link - Give credit quest (4941)');
|
||||
94
sql/old/3.3.5a/2011_12_18_05_world_misc.sql
Normal file
94
sql/old/3.3.5a/2011_12_18_05_world_misc.sql
Normal file
@@ -0,0 +1,94 @@
|
||||
-- Quest: The Black Knight's Orders (13663) SQL fix
|
||||
-- Black Knights Camp Spawns
|
||||
SET @OGUID=100489; -- Need 10
|
||||
SET @CGUID=152277; -- Need 3
|
||||
DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+9;
|
||||
INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES
|
||||
(@OGUID+0,194357,571,1,1,9070.324,2050.733,67.21755,0,0,0,0,1,0,0,0), -- Poison Vial
|
||||
(@OGUID+1,194357,571,1,1,9073.764,2050.120,68.15718,0,0,0,0,1,0,0,0), -- Poison Vial
|
||||
(@OGUID+2,194357,571,1,1,9074.699,2050.709,68.17049,0,0,0,0,1,0,0,0), -- Poison Vial
|
||||
(@OGUID+3,194357,571,1,1,9069.595,2050.349,67.21755,0,0,0,0,1,0,0,0), -- Poison Vial
|
||||
(@OGUID+4,194357,571,1,1,9069.961,2050.538,67.21755,0,0,0,0,1,0,0,0), -- Poison Vial
|
||||
(@OGUID+5,194357,571,1,1,9072.077,2049.292,67.78963,0,0,0,0,1,0,0,0), -- Poison Vial
|
||||
(@OGUID+6,194357,571,1,1,9065.680,2052.618,67.28638,0,0,0,0,1,0,0,0), -- Poison Vial
|
||||
(@OGUID+7,194394,571,1,1,9083.578,2041.696,67.81812,0,0,0,0,1,0,0,0), -- Cult Rune Circle
|
||||
(@OGUID+8,195011,571,1,1,9078.471,2057.547,67.21606,0,0,0,0.9981346,0.06105176,0,0,0), -- Bonfire
|
||||
(@OGUID+9,300007,571,1,1,8523.51,566.994,552.841,2.1518,0,0,0.880019,0.474938,300,0,1); -- Spell Focus GO?
|
||||
|
||||
DELETE FROM `creature` WHERE `id`=33537;
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES
|
||||
(@CGUID+0,33537,571,1,1,0,0,9071.043,2075.388,67.21542,4.935980,120,0,0,1,0,0,0,0,0),
|
||||
(@CGUID+1,33537,571,1,1,0,0,9074.414,2049.259,67.34636,2.181662,120,0,0,1,0,0,0,0,0),
|
||||
(@CGUID+2,33537,571,1,1,0,0,9081.280,2058.925,67.38979,3.612832,120,0,0,1,0,0,0,0,0);
|
||||
|
||||
-- Template updates
|
||||
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|8,`speed_run`=4, `InhabitType`=5 WHERE `entry`=33519; -- Black Knight''s Gryphon
|
||||
UPDATE `creature_template` SET `faction_A`=2080,`faction_H`=2080,`unit_flags`=`unit_flags`|32768,`equipment_id`=823 WHERE `entry`=33537; -- Cult Conspirator
|
||||
|
||||
-- See black knight's invisibility while on quest The Black Knight's Orders
|
||||
DELETE FROM `spell_area` WHERE `spell`=67471 AND `area` IN (4658);
|
||||
INSERT INTO `spell_area` (`spell`,`area`,`quest_start`,`quest_start_active`,`quest_end`,`aura_spell`,`racemask`,`gender`,`autocast`) VALUES
|
||||
(67471,4658,13663,1,13663,0,0,2,1); -- See Black Knight Invis
|
||||
|
||||
-- Addon data
|
||||
DELETE FROM `creature_template_addon` WHERE `entry` IN (33519,33537);
|
||||
INSERT INTO `creature_template_addon` (`entry`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES
|
||||
(33519,0,0,2049,0,NULL),-- Black Knight''s Gryphon
|
||||
(33537,0,1,1,0,NULL); -- Cult Conspirator
|
||||
|
||||
-- SAI for Black Knight''s Gryphon
|
||||
SET @entry :=33519;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@entry;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@entry;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@entry,0,0,0,27,0,100,0,0,0,0,0,53,0,@entry,0,13663,0,0,1,0,0,0,0,0,0,0,'Black Knight''s Gryphon - On passenger - Start WP movement'),
|
||||
(@entry,0,1,0,40,0,100,0,40,@entry,0,0,33,33519,0,0,0,0,0,7,0,0,0,0,0,0,0,'Black Knight''s Gryphon - On WP 40 - Quest Credit'),
|
||||
(@entry,0,2,0,40,0,100,0,43,@entry,0,0,11,50630,0,0,0,0,0,7,0,0,0,0,0,0,0,'Black Knight''s Gryphon - On WP 43 - Dismount Spell'),
|
||||
(@entry,0,3,0,40,0,100,0,44,@entry,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Black Knight''s Gryphon - On WP 44 - Despawn');
|
||||
|
||||
DELETE FROM `waypoints` WHERE `entry`=33519;
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(33519, 1,8521.271,569.5960,552.8375,'Black Knight''s Gryphon'),
|
||||
(33519, 2,8517.864,579.1095,553.2125,'Black Knight''s Gryphon'),
|
||||
(33519, 3,8513.146,594.6724,551.2125,'Black Knight''s Gryphon'),
|
||||
(33519, 4,8505.263,606.5569,550.4177,'Black Knight''s Gryphon'),
|
||||
(33519, 5,8503.017,628.4188,547.4177,'Black Knight''s Gryphon'),
|
||||
(33519, 6,8480.271,652.7083,547.4177,'Black Knight''s Gryphon'),
|
||||
(33519, 7,8459.121,686.1427,547.4177,'Black Knight''s Gryphon'),
|
||||
(33519, 8,8436.802,713.8687,547.3428,'Black Knight''s Gryphon'),
|
||||
(33519, 9,8405.380,740.0045,547.4177,'Black Knight''s Gryphon'),
|
||||
(33519,10,8386.139,770.6009,547.5881,'Black Knight''s Gryphon'),
|
||||
(33519,11,8374.297,802.2525,547.9304,'Black Knight''s Gryphon'),
|
||||
(33519,12,8374.271,847.0363,548.0427,'Black Knight''s Gryphon'),
|
||||
(33519,13,8385.988,868.9881,548.0491,'Black Knight''s Gryphon'),
|
||||
(33519,14,8413.027,867.8573,547.2991,'Black Knight''s Gryphon'),
|
||||
(33519,15,8452.552,869.0339,547.2991,'Black Knight''s Gryphon'),
|
||||
(33519,16,8473.058,875.2012,547.2955,'Black Knight''s Gryphon'),
|
||||
(33519,17,8472.278,912.3134,547.4169,'Black Knight''s Gryphon'),
|
||||
(33519,18,8479.666,954.1650,547.3298,'Black Knight''s Gryphon'),
|
||||
(33519,19,8477.349,1001.368,547.3372,'Black Knight''s Gryphon'),
|
||||
(33519,20,8484.538,1025.797,547.4622,'Black Knight''s Gryphon'),
|
||||
(33519,21,8525.363,1029.284,547.4177,'Black Knight''s Gryphon'),
|
||||
(33519,22,8532.808,1052.904,548.1677,'Black Knight''s Gryphon'),
|
||||
(33519,23,8537.356,1077.927,554.5791,'Black Knight''s Gryphon'),
|
||||
(33519,24,8540.528,1083.379,569.6827,'Black Knight''s Gryphon'),
|
||||
(33519,25,8563.641,1140.965,569.6827,'Black Knight''s Gryphon'),
|
||||
(33519,26,8594.897,1205.458,569.6827,'Black Knight''s Gryphon'),
|
||||
(33519,27,8617.104,1257.399,566.1833,'Black Knight''s Gryphon'),
|
||||
(33519,28,8648.496,1329.349,558.0187,'Black Knight''s Gryphon'),
|
||||
(33519,29,8667.723,1388.411,546.1880,'Black Knight''s Gryphon'),
|
||||
(33519,30,8699.145,1474.898,528.2197,'Black Knight''s Gryphon'),
|
||||
(33519,31,8726.869,1546.006,501.7741,'Black Knight''s Gryphon'),
|
||||
(33519,32,8739.058,1592.157,478.5511,'Black Knight''s Gryphon'),
|
||||
(33519,33,8750.799,1636.771,455.0797,'Black Knight''s Gryphon'),
|
||||
(33519,34,8760.006,1669.482,423.2208,'Black Knight''s Gryphon'),
|
||||
(33519,35,8783.310,1701.852,375.8872,'Black Knight''s Gryphon'),
|
||||
(33519,36,8817.336,1735.731,343.3323,'Black Knight''s Gryphon'),
|
||||
(33519,37,8882.320,1789.754,301.5807,'Black Knight''s Gryphon'),
|
||||
(33519,38,8958.597,1841.807,259.9141,'Black Knight''s Gryphon'),
|
||||
(33519,39,9045.891,1908.076,233.4143,'Black Knight''s Gryphon'),
|
||||
(33519,40,9107.177,1964.594,215.9704,'Black Knight''s Gryphon'),
|
||||
(33519,41,9134.763,2036.925,175.1925,'Black Knight''s Gryphon'),
|
||||
(33519,42,9128.608,2089.091,141.3593,'Black Knight''s Gryphon'),
|
||||
(33519,43,9093.364,2128.384,99.38685,'Black Knight''s Gryphon'),
|
||||
(33519,44,9050.709,2123.656,60.24802,'Black Knight''s Gryphon');
|
||||
14
sql/old/3.3.5a/2011_12_18_06_world_sai.sql
Normal file
14
sql/old/3.3.5a/2011_12_18_06_world_sai.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
SET @JEEVES := 35642;
|
||||
SET @SPELL_GOODBYE := 68052;
|
||||
DELETE FROM `spell_linked_spell` WHERE `spell_effect`=@SPELL_GOODBYE AND `spell_trigger`=-68054 AND `type`=0;
|
||||
INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment`) VALUES
|
||||
(-68054,@SPELL_GOODBYE,0, 'Jeeves - Say Goodbye');
|
||||
|
||||
UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=@JEEVES;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@JEEVES AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@JEEVES,0,0,0,8,0,100,0,@SPELL_GOODBYE,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jeeves - On Spellhit - Say Line 0");
|
||||
|
||||
DELETE FROM `creature_text` WHERE `entry`=@JEEVES;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@JEEVES,0,0,"If you'll excuse me, I'm afraid I have other business I must attend to. Please call on me again in the future.",12,0,100,3,0,0, 'Jeeves');
|
||||
17
sql/old/3.3.5a/2011_12_18_07_world_conditions.sql
Normal file
17
sql/old/3.3.5a/2011_12_18_07_world_conditions.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- Fix condition for Bom'bay's npc_text, gossip_menu and gossip_menu_option
|
||||
-- Player must to complete quest 826 'Zalazane' to see gossip_menu_option
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=3062 AND `text_id` IN (3794,3795);
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES
|
||||
(3062,3794), -- text before to complete quest 826
|
||||
(3062,3795); -- text after to complete quest 826
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup`=3062;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(14,3062,3794,0,14,826,0,0,0,'', "Bom'bay - show text 3794 if player does not have quest Zalazane"),
|
||||
(14,3062,3795,0,8,826,0,0,0,'', "Bom'bay - show text 3795 if player has quest Zalazane rewarded"),
|
||||
(15,3062,0,0,8,826,0,0,0,'', "Bom'bay - show gossip option 0 if player has quest Zalazane rewarded"),
|
||||
(15,3062,1,0,8,826,0,0,0,'', "Bom'bay - show gossip option 1 if player has quest Zalazane rewarded"),
|
||||
(15,3062,2,0,8,826,0,0,0,'', "Bom'bay - show gossip option 2 if player has quest Zalazane rewarded"),
|
||||
(15,3062,3,0,8,826,0,0,0,'', "Bom'bay - show gossip option 3 if player has quest Zalazane rewarded"),
|
||||
(15,3062,4,0,8,826,0,0,0,'', "Bom'bay - show gossip option 4 if player has quest Zalazane rewarded"),
|
||||
(15,3062,5,0,8,826,0,0,0,'', "Bom'bay - show gossip option 5 if player has quest Zalazane rewarded"),
|
||||
(15,3062,6,0,8,826,0,0,0,'', "Bom'bay - show gossip option 6 if player has quest Zalazane rewarded");
|
||||
7
sql/old/3.3.5a/2011_12_19_00_world_conditions.sql
Normal file
7
sql/old/3.3.5a/2011_12_19_00_world_conditions.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
UPDATE spell_dbc SET EffectImplicitTargetA1 = 22, EffectImplicitTargetB1 = 7 WHERE Id = 58630;
|
||||
|
||||
DELETE FROM conditions WHERE SourceTypeOrReferenceId = 13 AND SourceEntry IN (61863, 68663);
|
||||
INSERT INTO conditions (SourceTypeOrReferenceId, SourceEntry, ConditionTypeOrReference, ConditionValue1, Comment) VALUES
|
||||
(13, 61863, 18, 1, 'The Prophet Tharon''ja - Achievement Check'),
|
||||
(13, 68663, 18, 1, 'The Black Knight - Kill Credit'),
|
||||
(13, 58630, 18, 1, 'Mal''Ganis - Kill Credit');
|
||||
2
sql/old/3.3.5a/2011_12_19_01_world_quest_template.sql
Normal file
2
sql/old/3.3.5a/2011_12_19_01_world_quest_template.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Quest: Arcane Refreshment only available for mages
|
||||
UPDATE `quest_template` SET `RequiredClasses`=`RequiredClasses`|128 WHERE `Id`=7463;
|
||||
@@ -0,0 +1,11 @@
|
||||
-- Achievement Fa-la-la-la-Ogri'la
|
||||
DELETE FROM `achievement_criteria_data` WHERE `criteria_id` IN (3936,3937,3938);
|
||||
INSERT INTO `achievement_criteria_data` (`criteria_id`, `type`, `value1`, `value2`, `ScriptName`) VALUES
|
||||
-- requires aura
|
||||
(3936, 5, 44827, 0, ''),
|
||||
(3937, 5, 44825, 0, ''),
|
||||
(3938, 5, 44824, 0, ''),
|
||||
-- requires Holiday Winter Veil
|
||||
(3936, 16, 141, 0, ''),
|
||||
(3937, 16, 141, 0, ''),
|
||||
(3938, 16, 141, 0, '');
|
||||
10
sql/old/3.3.5a/2011_12_24_00_world_misc.sql
Normal file
10
sql/old/3.3.5a/2011_12_24_00_world_misc.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
-- Scriptname for the cages
|
||||
UPDATE `gameobject_template` SET `ScriptName`='go_veil_skith_cage' WHERE `entry` IN (185202,185203,185204,185205);
|
||||
|
||||
-- Texts for Captive Child
|
||||
DELETE FROM `creature_text` WHERE `entry`=22314;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(22314,0,0,"Woot!",12,0,100,0,0,0,"Captive Child"),
|
||||
(22314,0,1,"I think those weird bird guys were going to eat us. Gross!",12,0,100,0,0,0,"Captive Child"),
|
||||
(22314,0,2,"Yay! We're free!",12,0,100,0,0,0,"Captive Child"),
|
||||
(22314,0,3,"Gross!",12,0,100,0,0,0,"Captive Child");
|
||||
1
sql/old/3.3.5a/2011_12_24_00_world_spell_proc_event.sql
Normal file
1
sql/old/3.3.5a/2011_12_24_00_world_spell_proc_event.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE `spell_proc_event` SET `SpellFamilyMask0` = 0 WHERE `entry` IN (5952,51679);
|
||||
41
sql/old/3.3.5a/2011_12_24_01_world_mail_loot_template.sql
Normal file
41
sql/old/3.3.5a/2011_12_24_01_world_mail_loot_template.sql
Normal file
@@ -0,0 +1,41 @@
|
||||
-- Reward from Treats for Greatfather Winter (horde)
|
||||
SET @mail:=102; -- Set in DBC
|
||||
UPDATE quest_template SET RewardMailTemplateId=@mail, RewardMailDelay=86400 WHERE Id IN (6962); -- Set mail delivery
|
||||
DELETE FROM mail_loot_template WHERE entry=@mail;
|
||||
INSERT INTO mail_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount) VALUES
|
||||
(@mail,17685,100,1,0,1,1); -- Attach item to mail
|
||||
|
||||
-- Reward from Treats for Greatfather Winter (alliance)
|
||||
SET @mail:=118; -- Set in DBC
|
||||
UPDATE quest_template SET RewardMailTemplateId=@mail, RewardMailDelay=86400 WHERE Id IN (7025); -- Set mail delivery
|
||||
DELETE FROM mail_loot_template WHERE entry=@mail;
|
||||
INSERT INTO mail_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount) VALUES
|
||||
(@mail,17685,100,1,0,1,1); -- Attach item to mail
|
||||
|
||||
-- Reward from Stolen Winter Veil Treats (horde)
|
||||
SET @mail:=108; -- Set in DBC
|
||||
UPDATE quest_template SET RewardMailTemplateId=@mail, RewardMailDelay=86400 WHERE Id IN (6963); -- Set mail delivery
|
||||
DELETE FROM mail_loot_template WHERE entry=@mail;
|
||||
INSERT INTO mail_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount) VALUES
|
||||
(@mail,17712,100,1,0,1,1); -- Attach item to mail
|
||||
|
||||
-- Reward from Stolen Winter Veil Treats (alliance)
|
||||
SET @mail:=117; -- Set in DBC
|
||||
UPDATE quest_template SET RewardMailTemplateId=@mail, RewardMailDelay=86400 WHERE Id IN (7042); -- Set mail delivery
|
||||
DELETE FROM mail_loot_template WHERE entry=@mail;
|
||||
INSERT INTO mail_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount) VALUES
|
||||
(@mail,17712,100,1,0,1,1); -- Attach item to mail
|
||||
|
||||
-- Reward from Metzen the Reindeer (horde)
|
||||
SET @mail:=122; -- Set in DBC
|
||||
UPDATE quest_template SET RewardMailTemplateId=@mail, RewardMailDelay=86400 WHERE Id IN (8746); -- Set mail delivery
|
||||
DELETE FROM mail_loot_template WHERE entry=@mail;
|
||||
INSERT INTO mail_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount) VALUES
|
||||
(@mail,21216,100,1,0,1,1); -- Attach item to mail
|
||||
|
||||
-- Reward from Metzen the Reindeer (alliance)
|
||||
SET @mail:=161; -- Set in DBC
|
||||
UPDATE quest_template SET RewardMailTemplateId=@mail, RewardMailDelay=86400 WHERE Id IN (8762); -- Set mail delivery
|
||||
DELETE FROM mail_loot_template WHERE entry=@mail;
|
||||
INSERT INTO mail_loot_template (entry,item,ChanceOrQuestChance,lootmode,groupid,mincountOrRef,maxcount) VALUES
|
||||
(@mail,21216,100,1,0,1,1); -- Attach item to mail
|
||||
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `areatrigger_scripts` WHERE `entry`=4752;
|
||||
INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES
|
||||
(4752,'at_nats_landing');
|
||||
@@ -0,0 +1 @@
|
||||
UPDATE `gameobject_template` SET `ScriptName`='go_demon_portal' WHERE `entry` IN (177243,177365,177369,177397,177398,177399,177400,177366,177367,177368);
|
||||
9
sql/old/3.3.5a/2011_12_25_00_world_misc.sql
Normal file
9
sql/old/3.3.5a/2011_12_25_00_world_misc.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
UPDATE `gameobject_template` SET `ScriptName`='go_captain_tyralius_prison' WHERE `entry`=184588;
|
||||
UPDATE `quest_template` SET `RequiredSpellCast1`=0 WHERE `id`=10422;
|
||||
DELETE FROM `creature_text` WHERE `entry`=20787;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(20787,0,0,"You've saved me, fleshling! Ameer will hear of this noble act.",12,0,100,0,0,0,"Captain Tyralius");
|
||||
|
||||
-- Heroes of Old
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=2702;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=2702;
|
||||
23
sql/old/3.3.5a/2011_12_25_00_world_sai.sql
Normal file
23
sql/old/3.3.5a/2011_12_25_00_world_sai.sql
Normal file
@@ -0,0 +1,23 @@
|
||||
-- Bloodfen Raptor SAI
|
||||
SET @ENTRY := 4351;
|
||||
SET @SPELL_ROPE := 42325;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,8,0,100,0,@SPELL_ROPE,0,0,0,33,23727,0,0,0,0,0,7,0,0,0,0,0,0,0,"Bloodfen Raptor - On Spellhit - Quest Credit"),
|
||||
(@ENTRY,0,1,0,2,0,100,1,0,20,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bloodfen Raptor - At 20% HP - Say Line 0");
|
||||
|
||||
-- Bloodfen Screecher SAI
|
||||
SET @ENTRY := 4352;
|
||||
SET @SPELL_ROPE := 42325;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,8,0,100,0,@SPELL_ROPE,0,0,0,33,23727,0,0,0,0,0,7,0,0,0,0,0,0,0,"Bloodfen Screecher - On Spellhit - Quest Credit"),
|
||||
(@ENTRY,0,1,0,2,0,100,1,0,20,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bloodfen Screecher - At 20% HP - Say Line 0");
|
||||
|
||||
-- Texts
|
||||
DELETE FROM `creature_text` WHERE `entry` IN (4351,4352);
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(4351,0,0,"%s looks weak enough to capture.",16,0,100,0,0,0,"Bloodfen Raptor"),
|
||||
(4352,0,0,"%s looks weak enough to capture.",16,0,100,0,0,0,"Bloodfen Screecher");
|
||||
@@ -0,0 +1,4 @@
|
||||
UPDATE `item_template` SET `ScriptName`='' WHERE `entry`=23654;
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_q9452_cast_net';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(29866,'spell_q9452_cast_net');
|
||||
@@ -0,0 +1,9 @@
|
||||
DELETE FROM `areatrigger_scripts` WHERE `ScriptName`='at_bring_your_orphan_to';
|
||||
INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES
|
||||
(3551,'at_bring_your_orphan_to'),
|
||||
(3549,'at_bring_your_orphan_to'),
|
||||
(3547,'at_bring_your_orphan_to'),
|
||||
(3546,'at_bring_your_orphan_to'),
|
||||
(3552,'at_bring_your_orphan_to'),
|
||||
(3548,'at_bring_your_orphan_to'),
|
||||
(4356,'at_bring_your_orphan_to');
|
||||
3
sql/old/3.3.5a/2011_12_25_01_world_misc.sql
Normal file
3
sql/old/3.3.5a/2011_12_25_01_world_misc.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- Zuhuled the Wacked
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=10866;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=10866;
|
||||
19
sql/old/3.3.5a/2011_12_25_01_world_sai.sql
Normal file
19
sql/old/3.3.5a/2011_12_25_01_world_sai.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- Acidic Swamp Ooze SAI
|
||||
SET @ENTRY := 4393;
|
||||
SET @SPELL_END_CHANNEL := 42485;
|
||||
SET @SPELL_BUBBLING_OOZE := 43135;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,8,0,100,0,@SPELL_END_CHANNEL,0,0,0,33,23797,0,0,0,0,0,7,0,0,0,0,0,0,0,"Acidic Swamp Ooze - On Spellhit - Quest Credit"),
|
||||
(@ENTRY,0,1,0,2,0,100,1,0,15,0,0,11,@SPELL_BUBBLING_OOZE,0,0,0,0,0,2,0,0,0,0,0,0,0,"Acidic Swamp Ooze - At 15% HP - Cast Bubbling Ooze");
|
||||
|
||||
-- Bubbling Swamp Ooze SAI
|
||||
SET @ENTRY := 4394;
|
||||
SET @SPELL_END_CHANNEL := 42485;
|
||||
SET @SPELL_BUBBLING_OOZE := 43135;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,8,0,100,0,@SPELL_END_CHANNEL,0,0,0,33,23797,0,0,0,0,0,7,0,0,0,0,0,0,0,"Bubbling Swamp Ooze - On Spellhit - Quest Credit"),
|
||||
(@ENTRY,0,1,0,2,0,100,1,0,15,0,0,11,@SPELL_BUBBLING_OOZE,0,0,0,0,0,2,0,0,0,0,0,0,0,"Bubbling Swamp Ooze - At 15% HP - Cast Bubbling Ooze");
|
||||
@@ -0,0 +1,5 @@
|
||||
-- Areatrigger scriptname for Brewfest
|
||||
DELETE FROM `areatrigger_scripts` WHERE `entry` IN (4829,4820);
|
||||
INSERT INTO `areatrigger_scripts` (`entry`,`ScriptName`) VALUES
|
||||
(4829,'at_brewfest'), -- Durotar
|
||||
(4820,'at_brewfest'); -- Dun Morogh
|
||||
89
sql/old/3.3.5a/2011_12_25_02_world_misc.sql
Normal file
89
sql/old/3.3.5a/2011_12_25_02_world_misc.sql
Normal file
@@ -0,0 +1,89 @@
|
||||
-- Make the human versions in Pyrewood Village despawn during night and the worgens spawn during night
|
||||
SET @GUID := 152280;
|
||||
DELETE FROM `game_event_creature` WHERE `eventEntry`=25;
|
||||
INSERT INTO `game_event_creature` (`eventEntry`,`guid`) VALUES
|
||||
-- Humans
|
||||
(-25,17908),(-25,18404),(-25,18408),
|
||||
(-25,19002),(-25,19005),(-25,19084),
|
||||
(-25,19219),(-25,19222),(-25,19223),
|
||||
(-25,19224),(-25,19227),(-25,19229),
|
||||
(-25,19316),(-25,19343),(-25,18307),
|
||||
(-25,17911),(-25,17910),(-25,18236),
|
||||
(-25,18237),(-25,18239),(-25,18291),
|
||||
(-25,18306),(-25,18350),(-25,18400),
|
||||
(-25,18411),(-25,18413),(-25,18996),
|
||||
(-25,19008),(-25,19012),(-25,19015),
|
||||
(-25,19019),(-25,19220),(-25,19228),
|
||||
(-25,17663),(-25,17905),(-25,18220),
|
||||
(-25,18221),(-25,18238),(-25,18310),
|
||||
(-25,18354),(-25,18355),(-25,18405),
|
||||
(-25,18407),(-25,18409),(-25,19007),
|
||||
(-25,18235),(-25,18309),
|
||||
-- Worgens
|
||||
(25,@GUID+1),(25,@GUID+2),(25,@GUID+3),
|
||||
(25,@GUID+4),(25,@GUID+5),(25,@GUID+6),
|
||||
(25,@GUID+7),(25,@GUID+8),(25,@GUID+9),
|
||||
(25,@GUID+10),(25,@GUID+11),(25,@GUID+12),
|
||||
(25,@GUID+13),(25,@GUID+14),(25,@GUID+15),
|
||||
(25,@GUID+16),(25,@GUID+17),(25,@GUID+18),
|
||||
(25,@GUID+19),(25,@GUID+20),(25,@GUID+21),
|
||||
(25,@GUID+22),(25,@GUID+23),(25,@GUID+24),
|
||||
(25,@GUID+25),(25,@GUID+26),(25,@GUID+27),
|
||||
(25,@GUID+28),(25,@GUID+29),(25,@GUID+30),
|
||||
(25,@GUID+31),(25,@GUID+32),(25,@GUID+33),
|
||||
(25,@GUID+34),(25,@GUID+35),(25,@GUID+36),
|
||||
(25,@GUID+37),(25,@GUID+38),(25,@GUID+39),
|
||||
(25,@GUID+40),(25,@GUID+41),(25,@GUID+42),
|
||||
(25,@GUID+43),(25,@GUID+44),(25,@GUID+45),
|
||||
(25,@GUID+46),(25,@GUID+0);
|
||||
|
||||
-- Spawn all Moonrage versions of the humans
|
||||
DELETE FROM `creature` WHERE `id` IN (3533,3531,3529,1896,1893,1892);
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES
|
||||
(@GUID+0,3533,0,1,1,0,-408.091,1604.03,18.2868,5.5676,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+1,3531,0,1,1,0,-360.278,1495.03,17.196,0.830526,600,0,0,328,0,0,0,0,0),
|
||||
(@GUID+2,3529,0,1,1,0,-345.967,1501.4,18.9875,0.942478,600,0,0,328,0,0,0,0,0),
|
||||
(@GUID+3,1896,0,1,1,0,-327.462,1555.21,25.2491,1.61376,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+4,1896,0,1,1,0,-407.955,1451.33,27.0859,0.767945,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+5,1896,0,1,1,0,-391.907,1432.23,27.0313,6.07375,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+6,1896,0,1,1,0,-344.082,1504.01,18.7918,4.18879,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+7,1896,0,1,1,0,-329.456,1545.74,30.1367,2.26893,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+8,1896,0,1,1,0,-414.124,1581.03,19.7275,6.10865,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+9,1896,0,1,1,0,-413.706,1579.64,24.2994,2.9861,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+10,1896,0,1,1,0,-423.094,1578.33,24.3098,2.98749,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+11,1896,0,1,1,0,-411.947,1517.76,19.7711,4.86947,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+12,1896,0,1,1,0,-424.202,1543.84,18.5687,6.17846,600,0,0,276,295,0,0,0,0),
|
||||
(@GUID+13,1896,0,1,1,0,-397.475,1543.61,17.1712,3.0459,600,5,0,276,295,1,0,0,0),
|
||||
(@GUID+14,1896,0,1,1,0,-378.435,1625.51,16.8077,0.694863,600,3,0,276,295,1,0,0,0),
|
||||
(@GUID+15,1893,0,1,1,0,-404.028,1460.9,31.7653,5.84685,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+16,1893,0,1,1,0,-410.983,1453.18,31.679,5.59007,600,5,0,300,0,1,0,0,0),
|
||||
(@GUID+17,1893,0,1,1,0,-333.219,1548.41,25.2864,4.7729,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+18,1893,0,1,1,0,-339.031,1547.76,30.0369,3.83411,600,3,0,300,0,1,0,0,0),
|
||||
(@GUID+19,1893,0,1,1,0,-341.711,1553.34,24.5273,3.26377,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+20,1893,0,1,1,0,-380.605,1435.24,25.7369,5.98648,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+21,1893,0,1,1,0,-378.287,1655.98,10.346,2.89725,600,3,0,300,0,1,0,0,0),
|
||||
(@GUID+22,1893,0,1,1,0,-411.642,1509.01,19.8575,1.55334,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+23,1893,0,1,1,0,-390.535,1466.63,25.9869,5.34071,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+24,1893,0,1,1,0,-391.615,1601.72,17.1706,4.86947,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+25,1893,0,1,1,0,-355.263,1580.06,18.0622,0.078739,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+26,1893,0,1,1,0,-442.388,1539.5,19.6376,4.53468,600,5,0,300,0,1,0,0,0),
|
||||
(@GUID+27,1893,0,1,1,0,-389.73,1634.41,17.4309,6.20095,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+28,1893,0,1,1,0,-385.558,1618.24,24.2887,4.07713,600,3,0,300,0,1,0,0,0),
|
||||
(@GUID+29,1893,0,1,1,0,-385.776,1632.95,24.2887,3.83402,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+30,1893,0,1,1,0,-384.391,1560.98,17.1156,2.65866,600,5,0,300,0,1,0,0,0),
|
||||
(@GUID+31,1893,0,1,1,0,-420.551,1544.65,18.3187,2.70724,600,0,0,300,0,2,0,0,0),
|
||||
(@GUID+32,1893,0,1,1,0,-372.427,1611.08,24.3721,1.32645,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+33,1892,0,1,1,0,-405.033,1458.8,27.0968,0.15708,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+34,1892,0,1,1,0,-350.427,1448.5,24.3665,4.72984,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+35,1892,0,1,1,0,-370.983,1576.35,16.981,1.98656,600,0,0,300,0,2,0,0,0),
|
||||
(@GUID+36,1892,0,1,1,0,-377.63,1491.95,18.4887,5.32325,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+37,1892,0,1,1,0,-381.301,1653.14,17.7911,4.4855,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+38,1892,0,1,1,0,-354.378,1421.62,28.2597,5.14872,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+39,1892,0,1,1,0,-432.435,1531.27,18.7313,4.20121,600,5,0,300,0,1,0,0,0),
|
||||
(@GUID+40,1892,0,1,1,0,-350.822,1606.93,18.0028,3.78911,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+41,1892,0,1,1,0,-416.268,1576.92,19.5441,3.61468,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+42,1892,0,1,1,0,-439.617,1517.84,19.5619,3.33314,600,5,0,300,0,1,0,0,0),
|
||||
(@GUID+43,1892,0,1,1,0,-358.11,1528.2,24.9468,1.18862,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+44,1892,0,1,1,0,-433.404,1564.13,19.7291,1.48262,600,5,0,300,0,1,0,0,0),
|
||||
(@GUID+45,1892,0,1,1,0,-363.818,1545.45,24.4813,3.24746,600,0,0,300,0,0,0,0,0),
|
||||
(@GUID+46,1892,0,1,1,0,-345.242,1601.84,17.0845,2.23485,600,0,0,300,0,0,0,0,0);
|
||||
47
sql/old/3.3.5a/2011_12_25_02_world_sai.sql
Normal file
47
sql/old/3.3.5a/2011_12_25_02_world_sai.sql
Normal file
@@ -0,0 +1,47 @@
|
||||
-- Terenthis SAI
|
||||
SET @ENTRY := 3693;
|
||||
SET @QUEST := 986;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_end_scripts` WHERE `id`=993; -- For some reason this entry was different..
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100,@ENTRY*100+1);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
-- Start quest
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,12,6086,1,25000,0,0,0,8,0,0,0,6435.25,368.004,13.9412,1.09956,"Terenthis - On Script - Summon Auberdine Sentinel"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,5000,5000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,7000,7000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 1"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,9000,9000,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 2"),
|
||||
-- End quest
|
||||
(@ENTRY,0,1,0,20,0,100,0,@QUEST,0,0,0,80,@ENTRY*100+1,0,2,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Quest Finish - Run Script"),
|
||||
(@ENTRY*100+1,9,0,0,0,0,100,0,0,0,0,0,12,3695,1,50000,0,0,0,8,0,0,0,6435.25,368.004,13.9412,1.09956,"Terenthis - On Script - Summon Grimclaw"),
|
||||
(@ENTRY*100+1,9,1,0,0,0,100,0,5000,5000,0,0,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 3"),
|
||||
(@ENTRY*100+1,9,2,0,0,0,100,0,7000,7000,0,0,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 4"),
|
||||
(@ENTRY*100+1,9,3,0,0,0,100,0,9000,9000,0,0,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 5"),
|
||||
(@ENTRY*100+1,9,4,0,0,0,100,0,11000,11000,0,0,1,6,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 6"),
|
||||
(@ENTRY*100+1,9,5,0,0,0,100,0,14000,14000,0,0,1,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Terenthis - On Script - Say Line 7");
|
||||
-- Texts
|
||||
DELETE FROM `db_script_string` WHERE `entry` IN (2000000009,2000000010,2000000011,2000000050,2000000051,2000000052,2000000053,2000000054);
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"What is happening?",12,0,0,0,0,0,"Terenthis"),
|
||||
(@ENTRY,1,0,"Volcor needs help?",12,0,0,0,0,0,"Terenthis"),
|
||||
(@ENTRY,2,0,"All right, I shall find people to help him.",12,0,0,0,0,0,"Terenthis"),
|
||||
|
||||
(@ENTRY,3,0,"Hello Grimclaw.",12,0,0,0,0,0,"Terenthis"),
|
||||
(@ENTRY,4,0,"What is happening?",12,0,0,0,0,0,"Terenthis"),
|
||||
(@ENTRY,5,0,"Volcor needs help?",12,0,0,0,0,0,"Terenthis"),
|
||||
(@ENTRY,6,0,"You know where he is?",12,0,0,0,0,0,"Terenthis"),
|
||||
(@ENTRY,7,0,"Well, ok. I am sending people. We will need to find and help him!",12,0,0,0,0,0,"Terenthis");
|
||||
|
||||
-- Grimclaw SAI
|
||||
SET @ENTRY := 3695;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,22,0,100,0,101,5000,5000,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Grimclaw - Emote Receive 'Wave' - Emote Line 0");
|
||||
-- Text
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Grimclaw growls in your direction before taking time to sniff you.",16,0,0,0,0,0,"Grimclaw");
|
||||
3
sql/old/3.3.5a/2011_12_25_03_world_misc.sql
Normal file
3
sql/old/3.3.5a/2011_12_25_03_world_misc.sql
Normal file
@@ -0,0 +1,3 @@
|
||||
-- The Thunderspike
|
||||
UPDATE `gameobject_template` SET `AIName`='',`ScriptName`='go_thunderspike' WHERE `entry`=184729;
|
||||
DELETE FROM `event_scripts` WHERE `id`=13685;
|
||||
52
sql/old/3.3.5a/2011_12_25_03_world_sai.sql
Normal file
52
sql/old/3.3.5a/2011_12_25_03_world_sai.sql
Normal file
@@ -0,0 +1,52 @@
|
||||
-- [Q] [A] Escape Through Force
|
||||
-- [Q] [A] Escape Through Stealth
|
||||
-- Volcor SAI
|
||||
SET @ENTRY := 3692;
|
||||
SET @QUEST_FORCE := 994;
|
||||
SET @QUEST_STEALTH := 995;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id` IN (@QUEST_FORCE,@QUEST_STEALTH);
|
||||
DELETE FROM `quest_start_scripts` WHERE `id` IN (@QUEST_FORCE,@QUEST_STEALTH);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100,@ENTRY*100+1);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST_FORCE,0,0,0,80,@ENTRY*100,0,0,0,0,0,1,0,0,0,0,0,0,0,"Volcor - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Volcor - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,0,0,0,0,53,0,@ENTRY,0,0,0,2,1,0,0,0,0,0,0,0,"Volcor - On Script - Start WP"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,135000,135000,0,0,1,2,0,0,0,0,0,7,0,0,0,0,0,0,0,"Volcor - On Script - Say Line 2"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,0,0,0,0,15,@QUEST_FORCE,0,0,0,0,7,0,0,0,0,0,0,0,0,"Volcor - On Script - Quest Credit"),
|
||||
|
||||
(@ENTRY,0,1,0,19,0,100,0,@QUEST_STEALTH,0,0,0,80,@ENTRY*100+1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Volcor - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100+1,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,3,0,0,0,0,0,0,"Volcor - On Script - Say Line 0"),
|
||||
(@ENTRY*100+1,9,1,0,0,0,100,0,0,0,0,0,53,0,@ENTRY,0,0,0,2,1,0,0,0,0,0,0,0,"Volcor - On Script - Start WP"),
|
||||
(@ENTRY*100+1,9,2,0,0,0,100,0,135000,135000,0,0,1,3,0,0,0,0,0,7,0,0,0,0,0,0,0,"Volcor - On Script - Say Line 3"),
|
||||
(@ENTRY*100+1,9,3,0,0,0,100,0,0,0,0,0,15,@QUEST_STEALTH,0,0,0,0,7,0,0,0,0,0,0,0,0,"Volcor - On Script - Quest Credit"),
|
||||
|
||||
(@ENTRY,0,2,0,40,0,100,0,15,@ENTRY*100,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Volcor - On WP 15 - Forced Despawn"),
|
||||
(@ENTRY,0,3,0,4,0,100,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,"Volcor - On Aggro - Say Line 1");
|
||||
-- Texts
|
||||
DELETE FROM `db_script_string` WHERE `entry` BETWEEN 2000000012 AND 2000000016;
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"All right, let's go.",12,0,100,0,0,0,"Volcor"),
|
||||
(@ENTRY,1,0,"Oh no! They are here!",12,0,100,0,0,0,"Volcor"),
|
||||
(@ENTRY,2,0,"OK, $N. Now I can get to the Auberdine alone. Go to Terenthis, he's waiting for you. Thanks for the help!",12,0,100,0,0,0,"Volcor"),
|
||||
(@ENTRY,3,0,"OK, good luck friend. Thanks for the help.",12,0,100,0,0,0,"Volcor");
|
||||
|
||||
-- Waypoints
|
||||
DELETE FROM `waypoints` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(@ENTRY,1,4606.61,2.96905,69.909,"Volcor"),
|
||||
(@ENTRY,2,4615.56,19.7957,70.7951,"Volcor"),
|
||||
(@ENTRY,3,4626.26,38.1105,69.0281,"Volcor"),
|
||||
(@ENTRY,4,4633.11,48.379,67.5631,"Volcor"),
|
||||
(@ENTRY,5,4637.2,71.7156,63.3412,"Volcor"),
|
||||
(@ENTRY,6,4645.39,88.5048,60.3851,"Volcor"),
|
||||
(@ENTRY,7,4660.2,104.218,58.4603,"Volcor"),
|
||||
(@ENTRY,8,4675.33,115.93,56.8969,"Volcor"),
|
||||
(@ENTRY,9,4688.21,131.397,55.5033,"Volcor"),
|
||||
(@ENTRY,10,4701.45,145.562,53.2203,"Volcor"),
|
||||
(@ENTRY,11,4709.21,155.279,52.0846,"Volcor"),
|
||||
(@ENTRY,12,4716.9,169.528,53.5005,"Volcor"),
|
||||
(@ENTRY,13,4725.44,180.07,54.7346,"Volcor"),
|
||||
(@ENTRY,14,4734.01,194.431,55.3888,"Volcor"),
|
||||
(@ENTRY,15,4747.92,209.436,53.1076,"Volcor");
|
||||
44
sql/old/3.3.5a/2011_12_26_00_world_sai.sql
Normal file
44
sql/old/3.3.5a/2011_12_26_00_world_sai.sql
Normal file
@@ -0,0 +1,44 @@
|
||||
-- [Q] [A/H] Therylune's Escape
|
||||
-- Therylune SAI
|
||||
SET @ENTRY := 3584;
|
||||
SET @QUEST := 945;
|
||||
UPDATE `creature_template` SET `AIName`="SmartAI" WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,1,19,0,100,0,@QUEST,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Therylune - On Quest Accept - Say Line 0"),
|
||||
(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,53,0,@ENTRY,0,0,0,2,1,0,0,0,0,0,0,0,"Therylune - On Quest Accept - Start WP"),
|
||||
(@ENTRY,0,2,3,40,0,100,0,20,@ENTRY,0,0,1,1,0,0,0,0,0,7,0,0,0,0,0,0,0,"Therylune - On WP 20 - Say Line 1"),
|
||||
(@ENTRY,0,3,0,61,0,100,0,0,0,0,0,15,@QUEST,0,0,0,0,7,0,0,0,0,0,0,0,0,"Therylune - On WP 20 - Quest Credit"),
|
||||
(@ENTRY,0,4,0,40,0,100,0,21,@ENTRY,0,0,41,5000,0,0,0,0,1,0,0,0,0,0,0,0,0,"Therylune - On WP 21 - Forced Despawn");
|
||||
-- Texts
|
||||
DELETE FROM `db_script_string` WHERE `entry` IN (2000000017,2000000018);
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Ok, let's go!",12,0,100,0,0,0,"Therylune"),
|
||||
(@ENTRY,1,0,"I can make it the rest of the way, $N. Thanks!",12,0,100,0,0,0,"Therylune");
|
||||
-- Waypoints
|
||||
DELETE FROM `waypoints` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(@ENTRY,1,4520.4,420.235,33.5284,"Therylune"),
|
||||
(@ENTRY,2,4512.26,408.881,32.9308,"Therylune"),
|
||||
(@ENTRY,3,4507.94,396.47,32.9476,"Therylune"),
|
||||
(@ENTRY,4,4507.53,383.781,32.995,"Therylune"),
|
||||
(@ENTRY,5,4512.1,374.02,33.166,"Therylune"),
|
||||
(@ENTRY,6,4519.75,373.241,33.1574,"Therylune"),
|
||||
(@ENTRY,7,4592.41,369.127,31.4893,"Therylune"),
|
||||
(@ENTRY,8,4598.55,364.801,31.4947,"Therylune"),
|
||||
(@ENTRY,9,4602.76,357.649,32.9265,"Therylune"),
|
||||
(@ENTRY,10,4597.88,352.629,34.0317,"Therylune"),
|
||||
(@ENTRY,11,4590.23,350.9,36.2977,"Therylune"),
|
||||
(@ENTRY,12,4581.5,348.254,38.3878,"Therylune"),
|
||||
(@ENTRY,13,4572.05,348.059,42.3539,"Therylune"),
|
||||
(@ENTRY,14,4564.75,344.041,44.2463,"Therylune"),
|
||||
(@ENTRY,15,4556.63,341.003,47.6755,"Therylune"),
|
||||
(@ENTRY,16,4554.38,334.968,48.8003,"Therylune"),
|
||||
(@ENTRY,17,4557.63,329.783,49.9532,"Therylune"),
|
||||
(@ENTRY,18,4563.32,316.829,53.2409,"Therylune"),
|
||||
(@ENTRY,19,4566.09,303.127,55.0396,"Therylune"),
|
||||
(@ENTRY,20,4561.65,295.456,57.0984,"Therylune"),
|
||||
(@ENTRY,21,4551.03,293.333,57.1534,"Therylune");
|
||||
39
sql/old/3.3.5a/2011_12_26_01_world_sai.sql
Normal file
39
sql/old/3.3.5a/2011_12_26_01_world_sai.sql
Normal file
@@ -0,0 +1,39 @@
|
||||
-- [Q] [A/H] Enchanted Azsharite Fel Weaponry
|
||||
-- [Q] [A/H] Expert Blacksmith!
|
||||
-- Galvan the Ancient SAI
|
||||
SET @ENTRY := 7802;
|
||||
SET @QUEST_ENCHANTED := 3625;
|
||||
SET @QUEST_EXPERT_BS := 2765;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id` IN (@QUEST_ENCHANTED,@QUEST_EXPERT_BS);
|
||||
UPDATE `creature` SET `position_x`=-12033.400391,`position_y`=-1003.859985,`position_z`=49.779499,`orientation`=3.910880 WHERE `guid`=384 AND `id`=@ENTRY; -- Galvan the Ancient should be at a different position..
|
||||
DELETE FROM `creature` WHERE `guid`=1864 AND `id`=684; -- Flying panther in the middle of our event spot..
|
||||
DELETE FROM `creature_addon` WHERE `guid`=1864;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id` IN (@QUEST_ENCHANTED,@QUEST_EXPERT_BS);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100,@ENTRY*100+1);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST_ENCHANTED,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,-12040.5,-1008.7,49.4,3.66,"Galvan the Ancient - On Script - Move To Anvil"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,4000,4000,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,4,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,5,0,0,0,100,0,2000,2000,0,0,69,0,0,0,0,0,0,8,0,0,0,-12040.988281,-1007.649170,49.481323,2.364430,"Galvan the Ancient - On Script - Move To Forge"),
|
||||
(@ENTRY*100,9,6,0,0,0,100,0,1000,1000,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,7,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,8,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,9,0,0,0,100,0,2000,2000,0,0,15,@QUEST_ENCHANTED,0,0,0,0,0,7,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Quest Credit"),
|
||||
(@ENTRY*100,9,10,0,0,0,100,0,5000,5000,0,0,69,0,0,0,0,0,0,8,0,0,0,-12033.400391,-1003.859985,49.779499,3.910880,"Galvan the Ancient - On Script - Move To Homeposition"),
|
||||
|
||||
(@ENTRY,0,1,0,19,0,100,0,@QUEST_EXPERT_BS,0,0,0,80,@ENTRY*100+1,0,2,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100+1,9,0,0,0,0,100,0,0,0,0,0,69,0,0,0,0,0,0,8,0,0,0,-12040.5,-1008.7,49.4,3.66,"Galvan the Ancient - On Script - Move To Anvil"),
|
||||
(@ENTRY*100+1,9,1,0,0,0,100,0,4000,4000,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100+1,9,2,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100+1,9,3,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100+1,9,4,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100+1,9,5,0,0,0,100,0,2000,2000,0,0,69,0,0,0,0,0,0,8,0,0,0,-12040.988281,-1007.649170,49.481323,2.364430,"Galvan the Ancient - On Script - Move To Forge"),
|
||||
(@ENTRY*100+1,9,6,0,0,0,100,0,1000,1000,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100+1,9,7,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100+1,9,8,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100+1,9,9,0,0,0,100,0,2000,2000,0,0,15,@QUEST_EXPERT_BS,0,0,0,0,0,7,0,0,0,0,0,0,0,"Galvan the Ancient - On Script - Quest Credit"),
|
||||
(@ENTRY*100+1,9,10,0,0,0,100,0,5000,5000,0,0,69,0,0,0,0,0,0,8,0,0,0,-12033.400391,-1003.859985,49.779499,3.910880,"Galvan the Ancient - On Script - Move To Homeposition");
|
||||
58
sql/old/3.3.5a/2011_12_26_02_world_sai.sql
Normal file
58
sql/old/3.3.5a/2011_12_26_02_world_sai.sql
Normal file
@@ -0,0 +1,58 @@
|
||||
-- [Q] [A/H] The Summoning
|
||||
-- Bath'rah the Windwatcher SAI
|
||||
SET @ENTRY := 6176;
|
||||
SET @QUEST := 1713;
|
||||
SET @SPELL_SUMMON := 8606;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100,@ENTRY*100+1);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Bath'rah the Windwatcher - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,1000,1000,0,0,53,0,@ENTRY,0,0,0,2,1,0,0,0,0,0,0,0,"Bath'rah the Windwatcher - On Script - Start WP"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Bath'rah the Windwatcher - On Script - Say Line 0"),
|
||||
(@ENTRY,0,1,0,0,0,100,0,7,@ENTRY,0,0,80,@ENTRY*100+1,0,2,0,0,0,1,0,0,0,0,0,0,0,"Bath'rah the Windwatcher - On WP 7 - Run Script"),
|
||||
(@ENTRY*100+1,9,0,0,0,0,100,0,0,0,0,0,11,@SPELL_SUMMON,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bath'rah the Windwatcher - On Script - Cast Summon Cyclonian"),
|
||||
(@ENTRY*100+1,9,1,0,0,0,100,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Bath'rah the Windwatcher - On Script - Say Line 1"),
|
||||
(@ENTRY*100+1,9,2,0,0,0,100,0,15000,15000,0,0,53,0,@ENTRY*10,0,0,0,2,1,0,0,0,0,0,0,0,"Bath'rah the Windwatcher - On Script - Start WP");
|
||||
-- Waypoints
|
||||
DELETE FROM `waypoints` WHERE `entry` IN (@ENTRY,@ENTRY*10);
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(@ENTRY,1,253.05,-1459.09,52.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,2,256.87,-1440.35,50.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,3,273.74,-1433.18,50.29,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,4,297.77,-1436.7,46.96,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,5,329.59,-1442.08,40.31,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,6,332.73,-1455.6,42.24,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,7,323.83,-1468.92,42.24,"Bath'rah the Windwatcher"),
|
||||
|
||||
(@ENTRY*10,1,332.73,-1455.6,42.24,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY*10,2,329.59,-1442.08,40.31,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY*10,3,297.77,-1436.7,46.96,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY*10,4,273.74,-1433.18,50.29,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY*10,5,256.87,-1440.35,50.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY*10,6,253.05,-1459.09,52.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY*10,7,250.84,-1470.58,55.4491,"Bath'rah the Windwatcher");
|
||||
-- Texts
|
||||
DELETE FROM `db_script_string` WHERE `entry` IN (2000000029,2000000043);
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Follow me, $N. I will soon begin the summoning.",12,0,100,0,0,0,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,1,0,"%s begins a spell of summoning...",41,0,100,0,0,0,"Bath'rah the Windwatcher");
|
||||
-- Waypoints
|
||||
DELETE FROM `waypoints` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(@ENTRY,1,253.05,-1459.09,52.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,2,256.87,-1440.35,50.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,3,273.74,-1433.18,50.29,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,4,297.77,-1436.7,46.96,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,5,329.59,-1442.08,40.31,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,6,332.73,-1455.6,42.24,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,7,323.83,-1468.92,42.24,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,8,332.73,-1455.6,42.24,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,9,329.59,-1442.08,40.31,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,10,297.77,-1436.7,46.96,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,11,273.74,-1433.18,50.29,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,12,256.87,-1440.35,50.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,13,253.05,-1459.09,52.09,"Bath'rah the Windwatcher"),
|
||||
(@ENTRY,14,250.84,-1470.58,55.4491,"Bath'rah the Windwatcher");
|
||||
25
sql/old/3.3.5a/2011_12_26_03_world_sai.sql
Normal file
25
sql/old/3.3.5a/2011_12_26_03_world_sai.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- [Q] [A/H] Freed from the Hive
|
||||
-- Zukk'ash Pod SAI
|
||||
SET @ENTRY := 164954;
|
||||
SET @QUEST := 4265;
|
||||
UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=1;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,1,0,0,19,0,100,0,@QUEST,0,0,0,12,9546,1,25000,0,0,0,8,0,0,0,-5314.81,430.89,11.79,3.46,"Zukk'ash Pod - On Quest Accept - Summon Raschal the Courier");
|
||||
-- Raschal the Courier SAI
|
||||
SET @ENTRY := 9546;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,54,0,100,0,0,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Raschal the Courier - Just Summoned - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,2000,2000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Raschal the Courier - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,6000,6000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Raschal the Courier - On Script - Say Line 1"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,8000,8000,0,0,15,@QUEST,0,0,0,0,7,0,0,0,0,0,0,0,0,"Raschal the Courier - On Script - Quest Credit"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,2000,2000,0,0,41,0,0,0,0,0,1,0,0,0,0,0,0,0,0,"Raschal the Courier - On Script - Forced Despawn");
|
||||
-- Text
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Oh man, I thought I was dead for sure. Ugh... still dizzy...",12,0,100,0,0,0,"Raschal the Courier"),
|
||||
(@ENTRY,1,0,"I can get back to the Stronghold on my own, I think. Now that you bought me some time, I should be able to stealth out of here. Who ever you are... thank you. May Elune bless you always!",12,0,100,0,0,0,"Raschal the Courier");
|
||||
28
sql/old/3.3.5a/2011_12_26_04_world_sai.sql
Normal file
28
sql/old/3.3.5a/2011_12_26_04_world_sai.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
-- [Q] [A] The Touch of Zanzil
|
||||
-- Doc Mixilpixil SAI
|
||||
SET @ENTRY := 7207;
|
||||
SET @QUEST := 2608;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Doc Mixilpixil - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,1000,1000,0,0,5,353,0,0,0,0,0,1,0,0,0,0,0,0,0,"Doc Mixilpixil - On Script - Emote STATE_SPELLKNEELSTART"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,2000,2000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Doc Mixilpixil - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,3000,3000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Doc Mixilpixil - On Script - Say Line 1"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,3000,3000,0,0,53,0,@ENTRY,0,0,0,2,1,0,0,0,0,0,0,0,"Doc Mixilpixil - On Script - Start WP"),
|
||||
(@ENTRY,0,1,2,40,0,100,0,3,@ENTRY,0,0,41,5000,0,0,0,0,1,0,0,0,0,0,0,0,0,"Doc Mixilpixil - On WP 3 - Make Ready To Despawn"),
|
||||
(@ENTRY,0,2,0,61,0,100,0,0,0,0,0,15,@QUEST,0,0,0,0,7,0,0,0,0,0,0,0,0,"Doc Mixilpixil - On WP 3 - Quest Credit");
|
||||
-- Text
|
||||
DELETE FROM `db_script_string` WHERE `entry` IN (2000000020,2000000021);
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"That's interesting...",12,0,100,0,0,0,"Doc Mixilpixil"),
|
||||
(@ENTRY,1,0,"I need to consult Noram and Horatio.",12,0,100,0,0,0,"Doc Mixilpixil");
|
||||
-- Waypoints
|
||||
DELETE FROM `waypoints` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES
|
||||
(@ENTRY,1,-8805.29,338.5,95.09,"Doc Mixilpixil"),
|
||||
(@ENTRY,2,-8804.15,325.58,95.09,"Doc Mixilpixil"),
|
||||
(@ENTRY,3,-8805.56,331.96,95.09,"Doc Mixilpixil");
|
||||
25
sql/old/3.3.5a/2011_12_26_05_world_sai.sql
Normal file
25
sql/old/3.3.5a/2011_12_26_05_world_sai.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
-- [Q] [A/H] The Torch of Retribution
|
||||
-- Kalaran Windblade SAI
|
||||
SET @ENTRY := 8479;
|
||||
SET @QUEST := 3453;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Kalaran Windblade - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,10000,10000,0,0,11,12511,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kalaran Windblade - On Script - Cast Torch Combine"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,8000,8000,0,0,11,12511,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kalaran Windblade - On Script - Cast Torch Combine"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,7000,7000,0,0,11,12511,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kalaran Windblade - On Script - Cast Torch Combine"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,10000,10000,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Kalaran Windblade - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,4,0,0,0,100,0,5000,5000,0,0,11,12511,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kalaran Windblade - On Script - Cast Torch Combine"),
|
||||
(@ENTRY*100,9,5,0,0,0,100,0,1000,1000,0,0,70,0,0,0,0,0,0,14,24166,149410,0,0,0,0,0,"Kalaran Windblade - On Script - Respawn Light of Retribution (GO)"),
|
||||
(@ENTRY*100,9,6,0,0,0,100,0,2000,2000,0,0,70,0,0,0,0,0,0,14,16762,149047,0,0,0,0,0,"Kalaran Windblade - On Script - Respawn Torch of Retribution (GO)"),
|
||||
(@ENTRY*100,9,7,0,0,0,100,0,7000,7000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Kalaran Windblade - On Script - Say Line 1"),
|
||||
(@ENTRY*100,9,8,0,0,0,100,0,1000,1000,0,0,15,@QUEST,0,0,0,0,0,7,0,0,0,0,0,0,0,"Kalaran Windblade - On Script - Quest Credit");
|
||||
-- Text
|
||||
DELETE FROM `db_script_string` WHERE `entry` IN (2000000019,2000000044);
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Be patient, $N. The torch is almost done.",12,0,100,0,0,0,"Kalaran Windblade"),
|
||||
(@ENTRY,1,0,"It is done...",12,0,100,0,0,0,"Kalaran Windblade");
|
||||
27
sql/old/3.3.5a/2011_12_26_06_world_sai.sql
Normal file
27
sql/old/3.3.5a/2011_12_26_06_world_sai.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- [Q] [A/H] Did You Lose This?
|
||||
-- Trenton Lighthammer SAI
|
||||
SET @ENTRY := 7804;
|
||||
SET @QUEST := 3321;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_end_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,20,0,100,0,@QUEST,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Trenton Lighthammer - On Quest Complete - Say Line 0"),
|
||||
(@ENTRY,0,1,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,1000,1000,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,4,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,5,0,0,0,100,0,2000,2000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,2.842743,"Trenton Lighthammer - On Script - Face Forge"),
|
||||
(@ENTRY*100,9,6,0,0,0,100,0,1000,1000,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,7,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,8,0,0,0,100,0,1500,1500,0,0,5,28,0,0,0,0,0,1,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Emote STATE_WORK_SHEATHED"),
|
||||
(@ENTRY*100,9,9,0,0,0,100,0,2000,2000,0,0,15,@QUEST,0,0,0,0,0,7,0,0,0,0,0,0,0,"Trenton Lighthammer - On Script - Quest Credit");
|
||||
-- Texts
|
||||
DELETE FROM `db_script_string` WHERE `entry`=2000000076;
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Hear ye, denizens of Tanaris! Let it be known $N is an exalted member of the Mithril Order. A blacksmith of honor, dedication, and infinite patience. Three cheers for $N!",14,0,100,0,0,0,"Trenton Lighthammer");
|
||||
18
sql/old/3.3.5a/2011_12_26_07_world_sai.sql
Normal file
18
sql/old/3.3.5a/2011_12_26_07_world_sai.sql
Normal file
@@ -0,0 +1,18 @@
|
||||
-- [Q] [A/H] Scarlet Armies Approach...
|
||||
-- Orbaz Bloodbane SAI
|
||||
SET @ENTRY := 28914;
|
||||
SET @QUEST := 12757;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Orbaz Bloodbane - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,"Orbaz Bloodbane - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,3000,3000,0,0,11,53097,0,0,0,0,0,1,0,0,0,0,0,0,0,"Orbaz Bloodbane - On Script - Cast Portal: Acherus");
|
||||
-- Text
|
||||
DELETE FROM `waypoint_scripts` WHERE `id`=491;
|
||||
DELETE FROM `db_script_string` WHERE `entry`=2000000008;
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Make haste, $N. Use the portal!",12,0,100,25,0,0,"Orbaz Bloodlane");
|
||||
19
sql/old/3.3.5a/2011_12_26_08_world_sai.sql
Normal file
19
sql/old/3.3.5a/2011_12_26_08_world_sai.sql
Normal file
@@ -0,0 +1,19 @@
|
||||
-- [Q] [H] Hinott's Assistance
|
||||
-- Serge Hinott SAI
|
||||
SET @ENTRY := 2391;
|
||||
SET @QUEST := 2480;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST;
|
||||
DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100);
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0,"Serge Hinott - On Quest Accept - Run Script"),
|
||||
(@ENTRY*100,9,0,0,0,0,100,0,2000,2000,0,0,69,0,0,0,0,0,0,8,0,0,0,-4.33,-900.68,57.54,1.54,"Serge Hinott - On Script - Move To Pos"),
|
||||
(@ENTRY*100,9,1,0,0,0,100,0,18000,18000,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Serge Hinott - On Script - Say Line 0"),
|
||||
(@ENTRY*100,9,2,0,0,0,100,0,10000,10000,0,0,15,@QUEST,0,0,0,0,0,7,0,0,0,0,0,0,0,"Serge Hinott - On Script - Quest Credit"),
|
||||
(@ENTRY*100,9,3,0,0,0,100,0,1000,1000,0,0,69,0,0,0,0,0,0,8,0,0,0,-4.66,-903.92,57.54,3.48,"Serge Hinott - On Script - Move To Pos");
|
||||
-- Text
|
||||
DELETE FROM `db_script_string` WHERE `entry`=2000000026;
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,"Whoops!",12,0,100,113,0,0,"Serge Hinott");
|
||||
41
sql/old/3.3.5a/2012_01_02_00_world_sai.sql
Normal file
41
sql/old/3.3.5a/2012_01_02_00_world_sai.sql
Normal file
@@ -0,0 +1,41 @@
|
||||
-- [Q] Plan B (11658)
|
||||
SET @ENTRY_GUARD := 25342; -- Dead Caravan Guard
|
||||
SET @ENTRY_WORKER := 25343; -- Dead Caravan Worker
|
||||
SET @ITEM := 34842; -- Warsong Outfit
|
||||
SET @GOSSIP_1 := 9155;
|
||||
SET @GOSSIP_2 := 9156;
|
||||
SET @QUEST := 11658; -- Plan B
|
||||
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=@GOSSIP_1;
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=@GOSSIP_2;
|
||||
INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES
|
||||
(@GOSSIP_1, 12388),
|
||||
(@GOSSIP_2, 12389);
|
||||
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id`=@GOSSIP_1;
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id`=@GOSSIP_2;
|
||||
INSERT INTO `gossip_menu_option` VALUES
|
||||
(@GOSSIP_1, 0, 0, 'Retrieve Warsong Outfit.', 1, 1, 0, 0, 0, 0, ''),
|
||||
(@GOSSIP_2, 0, 0, 'Retrieve Warsong Outfit.', 1, 1, 0, 0, 0, 0, '');
|
||||
|
||||
UPDATE `creature_template` SET `npcflag`=`npcflag`|1 WHERE `entry` IN (@ENTRY_GUARD, @ENTRY_WORKER);
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=25342 AND `id`=2534201;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=25343 AND `id`=2534301;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (@ENTRY_GUARD, @ENTRY_WORKER);
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY_GUARD AND `source_type`=0;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY_WORKER AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`)
|
||||
VALUES
|
||||
(@ENTRY_GUARD, 0, 0, 1, 62, 0, 100, 0, @GOSSIP_1, 0, 0, 0, 56, @ITEM, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Dead Caravan Guard - On Gossip Select - Add Item Warsong Outfit'),
|
||||
(@ENTRY_GUARD, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dead Caravan Guard - On Gossip Select - Forced Despawn'),
|
||||
(@ENTRY_WORKER, 0, 0, 1, 62, 0, 100, 0, @GOSSIP_2, 0, 0, 0, 56, @ITEM, 1, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 'Dead Caravan Worker - On Gossip Select - Add Item Warsong Outfit'),
|
||||
(@ENTRY_WORKER, 0, 1, 0, 61, 0, 100, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Dead Caravan Worker - On Gossip Select - Forced Despawn');
|
||||
|
||||
-- Conditions
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=@GOSSIP_1;
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=@GOSSIP_2;
|
||||
INSERT INTO `conditions` VALUES
|
||||
(15, @GOSSIP_1, 0, 0, 9, @QUEST, 0, 0, 0, '', 'Only show gossip if player has quest Plan B'),
|
||||
(15, @GOSSIP_2, 0, 0, 9, @QUEST, 0, 0, 0, '', 'Only show gossip if player has quest Plan B'),
|
||||
(15, @GOSSIP_1, 0, 0, 2, @ITEM, 10, 0, 0, '', 'Only show gossip if player has less then 10 outfits'),
|
||||
(15, @GOSSIP_2, 0, 0, 2, @ITEM, 10, 0, 0, '', 'Only show gossip if player has less then 10 outfits');
|
||||
4
sql/old/3.3.5a/2012_01_02_01_world_game_event.sql
Normal file
4
sql/old/3.3.5a/2012_01_02_01_world_game_event.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
-- More Darkmoon Faerie synchronization
|
||||
UPDATE `game_event` SET `start_time`='2012-02-05 00:01:00' WHERE `eventEntry`=3;
|
||||
UPDATE `game_event` SET `start_time`='2012-03-04 00:01:00' WHERE `eventEntry`=4;
|
||||
UPDATE `game_event` SET `start_time`='2012-01-01 00:01:00' WHERE `eventEntry`=5;
|
||||
21
sql/old/3.3.5a/2012_01_02_02_world_creature_template.sql
Normal file
21
sql/old/3.3.5a/2012_01_02_02_world_creature_template.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
-- Kill xp exploit, mobs spawned by portal keepers don't gives xp on retail. (ie mobs 30662, 30664)
|
||||
UPDATE `creature_template` SET `flags_extra`= `flags_extra`|64 WHERE `entry` IN (
|
||||
-- NORMAL
|
||||
30661, -- CREATURE_AZURE_INVADER_1
|
||||
30961, -- CREATURE_AZURE_INVADER_2
|
||||
30662, -- CREATURE_AZURE_SPELLBREAKER_1
|
||||
30962, -- CREATURE_AZURE_SPELLBREAKER_2
|
||||
30663, -- CREATURE_AZURE_BINDER_1
|
||||
30918, -- CREATURE_AZURE_BINDER_2
|
||||
30664, -- CREATURE_AZURE_MAGE_SLAYER_1
|
||||
30963, -- CREATURE_AZURE_MAGE_SLAYER_2
|
||||
-- HEROIC:
|
||||
31487, -- Azure Invader
|
||||
31494, -- Azure Spellbreaker
|
||||
31483, -- Azure Binder
|
||||
31497, -- Azure Mage Slayer
|
||||
31484, -- Azure Binder
|
||||
31488, -- Azure Invader
|
||||
31495, -- Azure Spellbreaker
|
||||
31498 -- Azure Mage Slayer
|
||||
);
|
||||
@@ -0,0 +1,57 @@
|
||||
-- The Oculus hero
|
||||
DELETE FROM `creature_onkill_reputation` WHERE `creature_id` IN (31558, 31561, 31560, 31559, 30901, 30902, 30903, 30904, 30905, 30906, 30907, 30908, 30909, 30910, 30911, 30912, 30913, 30914, 30991, 30915, 30916, 30879);
|
||||
INSERT INTO `creature_onkill_reputation` VALUES
|
||||
(31558, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(31561, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(31560, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(31559, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(30901, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30902, 1037, 1052, 7, 0, 2, 7, 0, 2, 1),
|
||||
(30903, 1037, 1052, 7, 0, 30, 7, 0, 30, 1),
|
||||
(30904, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30905, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30991, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30906, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30907, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30908, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30909, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30910, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30911, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30912, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30913, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30914, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30879, 1037, 1052, 7, 0, 0, 7, 0, 0, 1),
|
||||
(30915, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30916, 1037, 1052, 7, 0, 15, 7, 0, 15, 1);
|
||||
|
||||
-- Utgarde Pinnacle hero
|
||||
DELETE FROM `creature_onkill_reputation` WHERE `creature_id` IN (30774, 30788, 30807, 30810, 30756, 30762, 30764, 30765, 30766, 30767, 30770, 30772, 30779, 30790, 30803, 30775, 30791, 30804, 30806, 30809, 30816, 30817, 30818, 30819, 30820, 30821, 30822, 30823);
|
||||
INSERT INTO `creature_onkill_reputation` VALUES
|
||||
(30774, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(30788, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(30807, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(30810, 1037, 1052, 7, 0, 250, 7, 0, 250, 1),
|
||||
(30756, 1037, 1052, 7, 0, 0, 7, 0, 0, 1),
|
||||
(30762, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30764, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30765, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30766, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30767, 1037, 1052, 7, 0, 2, 7, 0, 2, 1),
|
||||
(30770, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30772, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30779, 1037, 1052, 7, 0, 0, 7, 0, 0, 1),
|
||||
(30790, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30803, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30775, 1037, 1052, 7, 0, 0, 7, 0, 0, 1),
|
||||
(30791, 1037, 1052, 7, 0, 2, 7, 0, 2, 1),
|
||||
(30804, 1037, 1052, 7, 0, 2, 7, 0, 2, 1),
|
||||
(30806, 1037, 1052, 7, 0, 30, 7, 0, 30, 1),
|
||||
(30809, 1037, 1052, 7, 0, 0, 7, 0, 0, 1),
|
||||
(30816, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30817, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30818, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30819, 1037, 1052, 7, 0, 2, 7, 0, 2, 1),
|
||||
(30820, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30821, 1037, 1052, 7, 0, 15, 7, 0, 15, 1),
|
||||
(30822, 1037, 1052, 7, 0, 2, 7, 0, 2, 1),
|
||||
(30823, 1037, 1052, 7, 0, 2, 7, 0, 2, 1);
|
||||
17
sql/old/3.3.5a/2012_01_03_00_world_gossip_menu.sql
Normal file
17
sql/old/3.3.5a/2012_01_03_00_world_gossip_menu.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9918 AND `text_id`=13792;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9918,13792);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9859 AND `text_id`=13650;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9859,13650);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9857 AND `text_id`=13651;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9857,13651);
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10316 WHERE `entry`=33224;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9918 WHERE `entry`=29430;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9859 WHERE `entry`=29434;
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (10316,9857,9917) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(10316,0,0, 'Glad to help, my lady. I''m told you were once the guardian of a fabled sword. Do you know where I might find it?',1,1,10315,0,0,0, ''),
|
||||
(9857,0,0, 'I''m ready - lets get you out of here.',1,1,0,0,0,0, ''),
|
||||
(9917,0,0, 'I am ready to head further into Storm Peaks.',1,1,0,0,0,0, '');
|
||||
1
sql/old/3.3.5a/2012_01_03_01_world_quest_template.sql
Normal file
1
sql/old/3.3.5a/2012_01_03_01_world_quest_template.sql
Normal file
@@ -0,0 +1 @@
|
||||
UPDATE `quest_template` SET `OfferRewardText`='<Getry looks you over.>$B$BThis is all Ickoris could send?' WHERE `id`=11703;
|
||||
27
sql/old/3.3.5a/2012_01_03_02_world_sai.sql
Normal file
27
sql/old/3.3.5a/2012_01_03_02_world_sai.sql
Normal file
@@ -0,0 +1,27 @@
|
||||
-- Add text for Lynn Hyal
|
||||
DELETE FROM `creature_text` WHERE `entry`=23768;
|
||||
INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`) VALUES
|
||||
(23768, 1, 0, 'James? James... No, you\'re not James, but I know who you are...', 12, 0, 100, 0, 0, 0, 'Lynn Hyal'),
|
||||
(23768, 2, 0, 'You\'re the one who tracked down the brutes who did this to us.', 12, 0, 100, 0, 0, 0, 'Lynn Hyal'),
|
||||
(23768, 3, 0, 'I tried so hard to tell Jim... to tell anyone... who was behind this, but I couldn\'t find a way...', 12, 0, 100, 0, 0, 0, 'Lynn Hyal'),
|
||||
(23768, 4, 0, 'Thank you for helping us and for helping Jim. If you see him, tell him little Jimmy and I love him and that we\'re waiting for him.', 12, 0, 100, 0, 0, 0, 'Lynn Hyal'),
|
||||
(23768, 5, 0, 'I don\'t know when we\'ll see Daddy again, Jimmy, but I know he loves you and he misses you very much.', 12, 0, 100, 0, 0, 0, 'Lynn Hyal');
|
||||
-- Add text for Jimmy Hyal
|
||||
DELETE FROM `creature_text` WHERE `entry`=23769;
|
||||
INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`) VALUES
|
||||
(23769, 1, 0, 'Mommy, when will we see Daddy again?', 12, 0, 100, 0, 0, 0, 'Jimmy Hyal');
|
||||
-- add smart ai dialog for Lynn Hyal and quest credit at end of dialog
|
||||
UPDATE `creature_template` SET AIName="SmartAI" WHERE `entry`=23768;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23768;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(23768, 0, 0, 0, 1, 0, 100, 1, 0, 0, 0, 0, 84, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Lynn Hyal - on spawn - talk 1'),
|
||||
(23768, 0, 1, 0, 1, 0, 100, 1, 2000, 2000, 0, 0, 84, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Lynn Hyal - after 2 sec - talk 2'),
|
||||
(23768, 0, 2, 0, 1, 0, 100, 1, 5000, 5000, 0, 0, 84, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Lynn Hyal - after 5 sec - talk 3'),
|
||||
(23768, 0, 3, 0, 1, 0, 100, 1, 8000, 8000, 0, 0, 84, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Lynn Hyal - after 8 sec - talk 4'),
|
||||
(23768, 0, 4, 0, 1, 0, 100, 1, 12000, 12000, 0, 0, 84, 5, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Lynn Hyal - after 12 sec - reply to jimmy'),
|
||||
(23768, 0, 5, 0, 1, 0, 100, 1, 12000, 12000, 0, 0, 33, 23768, 0, 0, 0, 0, 0, 18, 5, 0, 0, 0, 0, 0, 0, 'Lynn Hyal - after 12 sec - kill credit quest complete');
|
||||
-- add smart ai dialog for Jimmy Hyal
|
||||
UPDATE `creature_template` SET AIName="SmartAI" WHERE `entry`=23769;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=23769;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES
|
||||
(23769, 0, 0, 0, 1, 0, 100, 1, 10000, 10000, 0, 0, 84, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Jimmy Hyal - after 10 sec - talk 1');
|
||||
2
sql/old/3.3.5a/2012_01_03_03_world_creature_template.sql
Normal file
2
sql/old/3.3.5a/2012_01_03_03_world_creature_template.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
-- Update faction for Frostmane Troll Whelp "From Sniff"
|
||||
UPDATE `creature_template` SET `faction_A`=7,`faction_H`=7 WHERE `entry`=706;
|
||||
@@ -0,0 +1,8 @@
|
||||
DELETE FROM `gameobject_questrelation` WHERE `quest` IN (12345, 12377);
|
||||
INSERT INTO `gameobject_questrelation` VALUES
|
||||
(190035, 12345),
|
||||
(190079, 12377);
|
||||
DELETE FROM `gameobject_involvedrelation` WHERE `quest` IN (12345, 12377);
|
||||
INSERT INTO `gameobject_involvedrelation` VALUES
|
||||
(190035, 12345),
|
||||
(190079, 12377);
|
||||
180
sql/old/3.3.5a/2012_01_03_05_world_creature.sql
Normal file
180
sql/old/3.3.5a/2012_01_03_05_world_creature.sql
Normal file
@@ -0,0 +1,180 @@
|
||||
SET @GUID := 72707; -- need 62;
|
||||
SET @NPC_WILDSPAWN_SATYR = 11451;
|
||||
SET @NPC_WILDSPAWN_ROGUE := 11452;
|
||||
SET @NPC_WILDSPAWN_BETRAYER := 11454;
|
||||
SET @NPC_WILDSPAWN_FELSWORN := 11455;
|
||||
SET @NPC_WILDSPAWN_SHADOWSTALKER := 11456;
|
||||
SET @NPC_WILDSPAWN_HELLCALLER := 11457;
|
||||
SET @NPC_WARPWOOD_TREANT = 11462;
|
||||
SET @NPC_WARPWOOD_CRUSHER := 13021;
|
||||
SET @NPC_WHIP_LASHER := 13022;
|
||||
SET @NPC_PHASE_LASHER := 13196;
|
||||
SET @NPC_FEL_LASH := 13197;
|
||||
|
||||
-- add movement
|
||||
SET @ENTRY := 56992; -- single Wildspawn Felsworn instance
|
||||
UPDATE creature SET `MovementType`=2 WHERE `guid`=@ENTRY;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@ENTRY;
|
||||
INSERT INTO `creature_addon`(`guid`,`path_id`) VALUES
|
||||
(@ENTRY,@ENTRY*10);
|
||||
|
||||
-- Add waypoints to Wildspawn Felsworn instance
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY*10;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@ENTRY*10,1,57.4000,-737.329,-25.1524,0,0,0,100,0),
|
||||
(@ENTRY*10,2,26.45,-682.69,-24.98,0,0,0,100,0);
|
||||
|
||||
-- Smart AI for Wildspawn Shadowstalker
|
||||
SET @ENTRY := @NPC_WILDSPAWN_SHADOWSTALKER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,11,0,100,0,0,0,0,0,11,22766,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Shadowstalker - On Spawn - cast Sneak on self'),
|
||||
(@ENTRY,0,1,0,0,0,100,0,4000,8000,5000,8000,11,22416,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Shadowstalker - In Combat - Cast Backstab'),
|
||||
(@ENTRY,0,2,0,0,0,100,0,6000,7000,8000,9000,11,7992,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Shadowstalker - In Combat - Cast Slowing Posion');
|
||||
|
||||
-- add movement
|
||||
SET @ENTRY := 56967; -- single Wildspawn Shadowstalker instance
|
||||
UPDATE creature SET `MovementType`=2 WHERE `guid`=@ENTRY;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@ENTRY;
|
||||
INSERT INTO `creature_addon`(`guid`,`path_id`) VALUES
|
||||
(@ENTRY,@ENTRY*10);
|
||||
|
||||
-- Add waypoints to Wildspawn Shadowstalker instance
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY*10;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@ENTRY*10,1,45.4305,-675.9378,-25.1612,0,0,0,100,0),
|
||||
(@ENTRY*10,2,36.5939,-646.3212,-25.1506,0,0,0,100,0),
|
||||
(@ENTRY*10,3,58.3292,-605.7308,-25.0700,0,0,0,100,0),
|
||||
(@ENTRY*10,4,52.3244,-584.9519,-23.3673,0,0,0,100,0),
|
||||
(@ENTRY*10,5,52.1407,-565.7738,-19.4151,0,0,0,100,0),
|
||||
(@ENTRY*10,6,56.5794,-558.3062,-19.2307,0,0,0,100,0),
|
||||
(@ENTRY*10,7,76.8705,-545.9866,-15.2457,0,0,0,100,0),
|
||||
(@ENTRY*10,8,97.9787,-544.0214,-11.0777,0,0,0,100,0),
|
||||
(@ENTRY*10,9,76.8705,-545.9866,-15.2457,0,0,0,100,0),
|
||||
(@ENTRY*10,10,56.5794,-558.3062,-19.2307,0,0,0,100,0),
|
||||
(@ENTRY*10,11,52.1407,-565.7738,-19.4151,0,0,0,100,0),
|
||||
(@ENTRY*10,12,52.3244,-584.9519,-23.3673,0,0,0,100,0),
|
||||
(@ENTRY*10,13,58.3292,-605.7308,-25.0700,0,0,0,100,0),
|
||||
(@ENTRY*10,14,36.5939,-646.3212,-25.1506,0,0,0,100,0),
|
||||
(@ENTRY*10,15,45.4305,-675.9378,-25.1612,0,0,0,100,0),
|
||||
(@ENTRY*10,16,62.53,-681.04,-24.98,0,0,0,100,0);
|
||||
|
||||
-- Spawn the mobs
|
||||
DELETE FROM `creature` WHERE `guid` BETWEEN @GUID AND @GUID+62;
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`) VALUES
|
||||
(@GUID+1,@NPC_WARPWOOD_TREANT,429,1,1,0,0,72.5524,-197.561,-4.14211,3.13356,7200,0,0,7842,0,2),
|
||||
(@GUID+2,@NPC_WARPWOOD_TREANT,429,1,1,0,0,20.3687,-203.068,-4.0968,3.10349,7200,0,0,7842,0,2),
|
||||
(@GUID+3,@NPC_WARPWOOD_TREANT,429,1,1,0,0,30.1582,-195.841,-4.12466,3.01317,7200,0,0,7599,0,2),
|
||||
(@GUID+4,@NPC_WARPWOOD_TREANT,429,1,1,0,0,25.8537,-206.521,-4.06996,3.01317,7200,0,0,7599,0,2),
|
||||
(@GUID+5,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-107.769,-200.032,-4.10429,0.153016,7200,0,0,7842,0,2),
|
||||
(@GUID+6,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-113.89,-195.466,-4.14424,0.0626954,7200,0,0,7842,0,2),
|
||||
(@GUID+7,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-117.388,-207.58,-4.06716,0.0476419,7200,0,0,7842,0,2),
|
||||
(@GUID+8,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-142.675,-350.105,-4.11237,1.70352,7200,0,0,7599,0,2),
|
||||
(@GUID+9,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-145.689,-356.994,-4.13712,1.66338,7200,0,0,7599,0,2),
|
||||
(@GUID+10,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-138.62,-360.106,-4.13313,1.66338,7200,0,0,7599,0,2),
|
||||
(@GUID+11,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-115.225,-347.295,-4.05097,6.26559,7200,0,0,7599,0,2),
|
||||
(@GUID+12,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-109.451,-350.449,-4.07628,6.28064,7200,0,0,7599,0,2),
|
||||
(@GUID+13,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-120.637,-353.502,-4.10136,6.26747,7200,0,0,7842,0,2),
|
||||
(@GUID+14,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-46.8699,-355.781,-4.11898,0.109725,7200,0,0,7599,0,2),
|
||||
(@GUID+15,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-57.5391,-352.691,-4.09353,0.121943,7200,0,0,7842,0,2),
|
||||
(@GUID+16,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-60.9243,-359.466,-4.14508,0.0617289,7200,0,0,7842,0,2),
|
||||
(@GUID+17,@NPC_WARPWOOD_TREANT,429,1,1,0,0,54.2367,-348.114,-4.05781,6.25459,7200,0,0,7599,0,2),
|
||||
(@GUID+18,@NPC_WARPWOOD_TREANT,429,1,1,0,0,43.279,-352.861,-4.0973,0.0633858,7200,0,0,7842,0,2),
|
||||
(@GUID+19,@NPC_WARPWOOD_TREANT,429,1,1,0,0,39.8267,-343.521,-4.02135,6.18098,7200,0,0,7842,0,2),
|
||||
(@GUID+20,@NPC_WARPWOOD_TREANT,429,1,1,0,0,111.859,-366.456,-4.14992,1.56459,7200,0,0,7842,0,2),
|
||||
(@GUID+21,@NPC_WARPWOOD_TREANT,429,1,1,0,0,116.012,-372.374,-4.09262,1.52947,7200,0,0,7842,0,2),
|
||||
(@GUID+22,@NPC_WARPWOOD_TREANT,429,1,1,0,0,107.625,-377.033,-4.07882,1.53449,7200,0,0,7842,0,2),
|
||||
(@GUID+23,@NPC_WARPWOOD_CRUSHER,429,1,1,0,0,141.391,-355.109,-4.15258,3.22692,7200,0,0,16194,0,0),
|
||||
(@GUID+24,@NPC_PHASE_LASHER,429,1,1,0,0,81.2447,-361.592,-4.14699,1.54781,7200,0,0,15684,0,0),
|
||||
(@GUID+25,@NPC_WHIP_LASHER,429,1,1,0,0,34.9898,-347.58,-4.05484,0.017372,7200,0,0,1900,0,0),
|
||||
(@GUID+26,@NPC_WHIP_LASHER,429,1,1,0,0,36.7793,-352.448,-4.09411,0.00231851,7200,0,0,1900,0,0),
|
||||
(@GUID+27,@NPC_WHIP_LASHER,429,1,1,0,0,41.2793,-352.437,-4.09411,0.00231851,7200,0,0,1900,0,0),
|
||||
(@GUID+28,@NPC_WHIP_LASHER,429,1,1,0,0,44.3212,-352.43,-4.09411,0.00231851,7200,0,0,1900,0,0),
|
||||
(@GUID+29,@NPC_WHIP_LASHER,429,1,1,0,0,44.315,-349.742,-4.07234,0.0588672,7200,0,0,1900,0,0),
|
||||
(@GUID+30,@NPC_WHIP_LASHER,429,1,1,0,0,39.4515,-350.029,-4.0749,0.063885,7200,0,0,1900,0,0),
|
||||
(@GUID+31,@NPC_WHIP_LASHER,429,1,1,0,0,39.2745,-347.262,-4.05348,0.063885,7200,0,0,1900,0,0),
|
||||
(@GUID+32,@NPC_WARPWOOD_CRUSHER,429,1,1,0,0,-20.953,-371.52,-4.05577,1.58638,7200,0,0,16194,0,0),
|
||||
(@GUID+33,@NPC_PHASE_LASHER,429,1,1,0,0,-52.0524,-361.703,-4.14598,1.7679,7200,0,0,15684,0,0),
|
||||
(@GUID+34,@NPC_WHIP_LASHER,429,1,1,0,0,-62.1186,-349.8,-4.07015,6.09414,7200,0,0,1900,0,0),
|
||||
(@GUID+35,@NPC_WHIP_LASHER,429,1,1,0,0,-69.5873,-354.282,-4.1069,6.17944,7200,0,0,1900,0,0),
|
||||
(@GUID+36,@NPC_WHIP_LASHER,429,1,1,0,0,-66.7331,-351.805,-4.08577,6.18948,7200,0,0,1900,0,0),
|
||||
(@GUID+37,@NPC_WHIP_LASHER,429,1,1,0,0,-73.9811,-351.124,-4.08116,6.18948,7200,0,0,1900,0,0),
|
||||
(@GUID+38,@NPC_WHIP_LASHER,429,1,1,0,0,-69.8854,-349.117,-4.06468,6.2798,7200,0,0,1900,0,0),
|
||||
(@GUID+39,@NPC_WHIP_LASHER,429,1,1,0,0,-65.6902,-346.108,-4.0402,6.2798,7200,0,0,1900,0,0),
|
||||
(@GUID+40,@NPC_WARPWOOD_CRUSHER,429,1,1,0,0,-73.7821,-346.08,-4.0402,6.2798,7200,0,0,1900,0,0),
|
||||
(@GUID+41,@NPC_WARPWOOD_TREANT,429,1,1,0,0,-93.8011,-363.618,-4.14738,1.65316,7200,0,0,16194,0,0),
|
||||
(@GUID+42,@NPC_PHASE_LASHER,429,1,1,0,0,-131.311,-365.627,-4.15058,1.51265,7200,0,0,15198,0,0),
|
||||
(@GUID+43,@NPC_WHIP_LASHER,429,1,1,0,0,-143.839,-340.391,-4.12014,1.83881,7200,0,0,1900,0,0),
|
||||
(@GUID+44,@NPC_WHIP_LASHER,429,1,1,0,0,-142.296,-336.529,-4.10736,1.85386,7200,0,0,1900,0,0),
|
||||
(@GUID+45,@NPC_WHIP_LASHER,429,1,1,0,0,-138.49,-341.197,-4.07808,1.73845,7200,0,0,1900,0,0),
|
||||
(@GUID+46,@NPC_WHIP_LASHER,429,1,1,0,0,-134.462,-337.194,-4.04726,1.70944,7200,0,0,1900,0,0),
|
||||
(@GUID+47,@NPC_WHIP_LASHER,429,1,1,0,0,-135.424,-330.303,-4.0528,1.70944,7200,0,0,1900,0,0),
|
||||
(@GUID+48,@NPC_WHIP_LASHER,429,1,1,0,0,-142.163,-331.244,-4.1045,1.71445,7200,0,0,1900,0,0),
|
||||
(@GUID+49,@NPC_WHIP_LASHER,429,1,1,0,0,-138.62,-333.245,-4.07944,1.71947,7200,0,0,1900,0,0),
|
||||
(@GUID+50,@NPC_WARPWOOD_CRUSHER,429,1,1,0,0,-138.38,-275.724,-4.07674,3.17049,7200,0,0,16194,0,0),
|
||||
(@GUID+51,@NPC_PHASE_LASHER,429,1,1,0,0,-162.835,-275.863,-4.14791,6.27238,7200,0,0,15684,0,0),
|
||||
(@GUID+52,@NPC_WHIP_LASHER,429,1,1,0,0,-158.318,-204.325,-4.15232,0.0694766,7200,0,0,1900,0,0),
|
||||
(@GUID+53,@NPC_WHIP_LASHER,429,1,1,0,0,-154.646,-204.07,-4.15232,0.0694766,7200,0,0,1900,0,0),
|
||||
(@GUID+54,@NPC_WHIP_LASHER,429,1,1,0,0,-153.089,-196.695,-4.15243,0.0343519,7200,0,0,1900,0,0),
|
||||
(@GUID+55,@NPC_WHIP_LASHER,429,1,1,0,0,-160.393,-196.946,-4.15243,0.0343519,7200,0,0,1900,0,0),
|
||||
(@GUID+56,@NPC_WHIP_LASHER,429,1,1,0,0,-162.052,-201.486,-4.15243,0.0393697,7200,0,0,1900,0,0),
|
||||
(@GUID+57,@NPC_WHIP_LASHER,429,1,1,0,0,-152.686,-201.117,-4.15243,0.0393697,7200,0,0,1900,0,0),
|
||||
(@GUID+58,@NPC_WHIP_LASHER,429,1,1,0,0,-156.996,-199.83,-4.15243,0.059441,7200,0,0,1900,0,0),
|
||||
(@GUID+59,@NPC_PHASE_LASHER,429,1,1,0,0,-86.8965,-210.681,-4.03141,1.56479,7200,0,0,15198,0,0),
|
||||
(@GUID+60,@NPC_WARPWOOD_CRUSHER,429,1,1,0,0,-87.0174,-180.571,-2.71439,4.76202,7200,0,0,16194,0,0),
|
||||
(@GUID+61,@NPC_PHASE_LASHER,429,1,1,0,0,-27.3846,-207.58,-4.06107,0.888256,7200,0,0,15684,0,0),
|
||||
(@GUID+62,@NPC_WARPWOOD_CRUSHER,429,1,1,0,0,-15.3937,-177.684,-2.71439,4.81219,7200,0,0,16194,0,0);
|
||||
|
||||
-- Add movement to some mobs
|
||||
DELETE FROM `creature_addon` WHERE `guid` BETWEEN @GUID+1 AND @GUID+22;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`) VALUES
|
||||
(@GUID+1,(@GUID+1)*10),
|
||||
(@GUID+2,(@GUID+2)*10),
|
||||
(@GUID+3,(@GUID+2)*10),
|
||||
(@GUID+4,(@GUID+2)*10),
|
||||
(@GUID+5,(@GUID+6)*10),
|
||||
(@GUID+6,(@GUID+6)*10),
|
||||
(@GUID+7,(@GUID+6)*10),
|
||||
(@GUID+8,(@GUID+8)*10),
|
||||
(@GUID+9,(@GUID+8)*10),
|
||||
(@GUID+10,(@GUID+8)*10),
|
||||
(@GUID+11,(@GUID+11)*10),
|
||||
(@GUID+12,(@GUID+11)*10),
|
||||
(@GUID+13,(@GUID+11)*10),
|
||||
(@GUID+14,(@GUID+14)*10),
|
||||
(@GUID+15,(@GUID+14)*10),
|
||||
(@GUID+16,(@GUID+14)*10),
|
||||
(@GUID+17,(@GUID+17)*10),
|
||||
(@GUID+18,(@GUID+17)*10),
|
||||
(@GUID+19,(@GUID+17)*10),
|
||||
(@GUID+20,(@GUID+20)*10),
|
||||
(@GUID+21,(@GUID+20)*10),
|
||||
(@GUID+22,(@GUID+20)*10);
|
||||
|
||||
-- Add waypoints to mobs
|
||||
DELETE FROM `waypoint_data` WHERE `id` = (@GUID+1)*10;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
((@GUID+1)*10,1,70.6901,-197.173,-4.14434,0,1,0,100,0),
|
||||
((@GUID+1)*10,2,-104.169,-199.817,-4.12389,0,1,0,100,0),
|
||||
((@GUID+2)*10,1,-73.5443,-202.239,-4.10251,0,1,0,100,0),
|
||||
((@GUID+2)*10,2,35.4205,-201.467,-4.11061,0,1,0,100,0),
|
||||
((@GUID+6)*10,1,-20.2122,-201.982,-4.11082,0,1,0,100,0),
|
||||
((@GUID+6)*10,2,-130.665,-201.733,-4.10813,0,1,0,100,0),
|
||||
((@GUID+8)*10,1,-166.248,-199.501,-4.15228,0,1,0,100,0),
|
||||
((@GUID+8)*10,2,-131.595,-354.127,-4.10839,0,1,0,100,0),
|
||||
((@GUID+11)*10,1,-35.5988,-348.525,-4.06037,0,1,0,100,0),
|
||||
((@GUID+11)*10,2,-21.0353,-356.517,-4.12553,0,1,0,100,0),
|
||||
((@GUID+11)*10,3,4.10672,-354.436,-4.11233,0,1,0,100,0),
|
||||
((@GUID+11)*10,4,-62.8668,-351.204,-4.083,0,1,0,100,0),
|
||||
((@GUID+11)*10,5,-113.908,-346.958,-4.04887,0,1,0,100,0),
|
||||
((@GUID+14)*10,1,49.0152,-351.975,-4.09131,0,1,0,100,0),
|
||||
((@GUID+14)*10,2,-68.801,-355.361,-4.11568,0,1,0,100,0),
|
||||
((@GUID+17)*10,1,140.938,-354.573,-4.15133,0,1,0,100,0),
|
||||
((@GUID+17)*10,2, -17.9066,-352.038,-4.09042,0,1,0,100,0),
|
||||
((@GUID+20)*10,1,134.04,-337.362,-4.14977,0,1,0,100,0),
|
||||
((@GUID+20)*10,2,117.337,-367.835,-4.15199,0,1,0,100,0),
|
||||
((@GUID+20)*10,3,68.2814,-346.911,-4.04935,0,1,0,100,0),
|
||||
((@GUID+20)*10,4,111.089,-364.118,-4.14948,0,1,0,100,0);
|
||||
82
sql/old/3.3.5a/2012_01_03_06_world_sai.sql
Normal file
82
sql/old/3.3.5a/2012_01_03_06_world_sai.sql
Normal file
@@ -0,0 +1,82 @@
|
||||
SET @NPC_WILDSPAWN_SATYR = 11451;
|
||||
SET @NPC_WILDSPAWN_ROGUE := 11452;
|
||||
SET @NPC_WILDSPAWN_BETRAYER := 11454;
|
||||
SET @NPC_WILDSPAWN_FELSWORN := 11455;
|
||||
SET @NPC_WILDSPAWN_SHADOWSTALKER := 11456;
|
||||
SET @NPC_WILDSPAWN_HELLCALLER := 11457;
|
||||
SET @NPC_WARPWOOD_TREANT = 11462;
|
||||
SET @NPC_WARPWOOD_CRUSHER := 13021;
|
||||
SET @NPC_WHIP_LASHER := 13022;
|
||||
SET @NPC_PHASE_LASHER := 13196;
|
||||
SET @NPC_FEL_LASH := 13197;
|
||||
|
||||
-- SmartAI for Wildspawn Hellcaller
|
||||
SET @ENTRY := @NPC_WILDSPAWN_HELLCALLER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - On Aggro - Prevent Combat Movement'),
|
||||
(@ENTRY,0,1,2,4,0,100,0,0,0,0,0,11,15228,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Hellcaller - On Aggro - Cast Fireball '),
|
||||
(@ENTRY,0,2,0,61,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - On Aggro - Set Phase 1'),
|
||||
(@ENTRY,0,3,0,9,1,100,0,0,40,2400,3800,11,15228,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Phase 1 - Cast Fireball'),
|
||||
(@ENTRY,0,4,5,3,1,100,0,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller -In Phase 1 - Start Combat Movement'),
|
||||
(@ENTRY,0,5,0,61,1,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Mana at 15% (Phase 1) - Set Phase 2'),
|
||||
(@ENTRY,0,6,0,9,1,100,0,35,80,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Hellcaller - At 35 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,7,0,9,1,100,0,5,15,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - at 15 Yards (Phase 1) - Prevent Combat Movement '),
|
||||
(@ENTRY,0,8,0,9,1,100,0,0,5,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Below 5 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,9,0,3,2,100,0,0,30,100,100,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Mana is above 30% (Phase 2) - Set Phase 1'),
|
||||
(@ENTRY,0,10,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Set Phase 1 when Mana is above 30% (Phase 2)'),
|
||||
(@ENTRY,0,11,0,0,0,100,0,8000,14000,18000,25000,11,20754,3,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Hellcaller - In Combat - Cast Rain of Fire'),
|
||||
(@ENTRY,0,12,0,2,0,100,1,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - At 15% HP - Start Combat Movement'),
|
||||
(@ENTRY,0,13,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 15% HP - Flee'),
|
||||
(@ENTRY,0,14,0,7,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Evade - Set Phase to 0');
|
||||
|
||||
-- SmartAI for Wildspawn Felsworn
|
||||
SET @ENTRY := @NPC_WILDSPAWN_FELSWORN;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,1,0,100,1,1000,1000,1800000,1800000,11,12542,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Cast Chaotic Focus'),
|
||||
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Aggro - Prevent Combat Movement'),
|
||||
(@ENTRY,0,2,3,4,0,100,0,0,0,0,0,11,15537,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Aggro - Cast Shadow Bolt'),
|
||||
(@ENTRY,0,3,0,61,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Aggro - Set Phase 1'),
|
||||
(@ENTRY,0,4,0,9,1,100,0,0,40,2400,3800,11,15537,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Felsworn - Phase 1 - Cast Shadow Bolt'),
|
||||
(@ENTRY,0,5,6,3,1,100,0,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn -In Phase 1 - Start Combat Movement'),
|
||||
(@ENTRY,0,6,0,61,1,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Mana at 15% (Phase 1) - Set Phase 2'),
|
||||
(@ENTRY,0,7,0,9,1,100,0,35,80,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Felsworn - At 35 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,8,0,9,1,100,0,5,15,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - at 15 Yards (Phase 1) - Prevent Combat Movement '),
|
||||
(@ENTRY,0,9,0,9,1,100,0,0,5,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Below 5 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,10,0,3,2,100,0,0,30,100,100,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Mana is above 30% (Phase 2) - Set Phase 1'),
|
||||
(@ENTRY,0,11,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Felsworn - Set Phase 1 when Mana is above 30% (Phase 2)'),
|
||||
(@ENTRY,0,12,0,0,0,100,0,7000,12000,38000,45000,11,22417,1,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - In Phase 1 - Cast Shadow Shield'),
|
||||
(@ENTRY,0,13,0,0,1,100,0,11000,17000,23000,30000,11,15654,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Felsworn - In Phase 1 - Cast Shadow Word: Pain'),
|
||||
(@ENTRY,0,14,0,0,0,100,0,6000,10000,10000,15000,11,12542,1,0,0,0,0,5,0,0,0,0,0,0,0,'Wildspawn Felsworn - In Combat - Cast Fear (on random target)'),
|
||||
(@ENTRY,0,15,0,7,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Evade - Set Phase to 0');
|
||||
|
||||
-- add movement
|
||||
SET @ENTRY := 56992; -- single Wildspawn Felsworn instance
|
||||
UPDATE creature SET `MovementType`=2 WHERE `guid`=@ENTRY;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@ENTRY;
|
||||
INSERT INTO `creature_addon`(`guid`,`path_id`) VALUES
|
||||
(@ENTRY,@ENTRY*10);
|
||||
|
||||
-- Add waypoints to Wildspawn Felsworn instance
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@ENTRY*10;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@ENTRY*10,1,57.4000,-737.329,-25.1524,0,0,0,100,0),
|
||||
(@ENTRY*10,2,26.45,-682.69,-24.98,0,0,0,100,0);
|
||||
|
||||
-- Smart AI for Wildspawn Shadowstalker
|
||||
SET @ENTRY := @NPC_WILDSPAWN_SHADOWSTALKER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,11,0,100,0,0,0,0,0,11,22766,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Shadowstalker - On Spawn - cast Sneak on self'),
|
||||
(@ENTRY,0,1,0,0,0,100,0,4000,8000,5000,8000,11,22416,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Shadowstalker - In Combat - Cast Backstab'),
|
||||
(@ENTRY,0,2,0,0,0,100,0,6000,7000,8000,9000,11,7992,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Shadowstalker - In Combat - Cast Slowing Posion');
|
||||
46
sql/old/3.3.5a/2012_01_03_07_world_creature.sql
Normal file
46
sql/old/3.3.5a/2012_01_03_07_world_creature.sql
Normal file
@@ -0,0 +1,46 @@
|
||||
-- Spawn & Pathing for Horace Alder Entry: 27704 "Not Spawned"
|
||||
SET @NPC := 1846;
|
||||
DELETE FROM `creature` WHERE `guid` IN (@NPC);
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`) VALUES
|
||||
(@NPC,27704,1,1,1,0,0,-3738.565,-4442.265,56.23981,0.41887,300,0,0,1,0,2);
|
||||
SET @PATH := @NPC * 10;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-3740.015,-4437.762,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,2,-3742.823,-4433.892,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,3,-3746.757,-4431.049,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,4,-3751.263,-4429.58,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,5,-3756.035,-4429.627,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,6,-3760.625,-4431.113,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,7,-3764.42,-4433.888,56.22611,0,0,0,0,100,0),
|
||||
(@PATH,8,-3767.252,-4437.716,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,9,-3768.719,-4442.307,56.23982,0,0,0,0,100,0),
|
||||
(@PATH,10,-3768.664,-4447.081,56.22474,0,0,0,0,100,0),
|
||||
(@PATH,11,-3767.221,-4451.627,56.23982,0,0,0,0,100,0),
|
||||
(@PATH,12,-3764.422,-4455.48,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,13,-3767.221,-4451.627,56.23982,0,0,0,0,100,0),
|
||||
(@PATH,14,-3768.664,-4447.081,56.22474,0,0,0,0,100,0),
|
||||
(@PATH,15,-3768.719,-4442.307,56.23982,0,0,0,0,100,0),
|
||||
(@PATH,16,-3767.255,-4437.724,56.20177,0,0,0,0,100,0),
|
||||
(@PATH,17,-3764.42,-4433.888,56.22611,0,0,0,0,100,0),
|
||||
(@PATH,18,-3760.625,-4431.113,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,19,-3756.035,-4429.627,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,20,-3751.263,-4429.58,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,21,-3746.757,-4431.049,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,22,-3742.823,-4433.892,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,23,-3740.015,-4437.762,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,24,-3738.565,-4442.265,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,25,-3738.577,-4447.063,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,26,-3740.03,-4451.584,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,27,-3742.872,-4455.448,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,28,-3746.699,-4458.252,56.23982,0,0,0,0,100,0),
|
||||
(@PATH,29,-3751.217,-4459.749,56.26265,0,0,0,0,100,0),
|
||||
(@PATH,30,-3756.021,-4459.732,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,31,-3751.217,-4459.749,56.26265,0,0,0,0,100,0),
|
||||
(@PATH,32,-3746.699,-4458.252,56.23982,0,0,0,0,100,0),
|
||||
(@PATH,33,-3742.872,-4455.448,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,34,-3740.03,-4451.584,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,35,-3738.577,-4447.063,56.23981,0,0,0,0,100,0),
|
||||
(@PATH,36,-3738.565,-4442.265,56.23981,0,0,0,0,100,0);
|
||||
@@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS `character_queststatus_seasonal`;
|
||||
CREATE TABLE `character_queststatus_seasonal` (
|
||||
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
`event` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Event Identifier',
|
||||
PRIMARY KEY (`guid`,`quest`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
|
||||
70
sql/old/3.3.5a/2012_01_04_00_world_gossip_menu.sql
Normal file
70
sql/old/3.3.5a/2012_01_04_00_world_gossip_menu.sql
Normal file
@@ -0,0 +1,70 @@
|
||||
-- Update npc_text from sniff
|
||||
UPDATE `npc_text` SET `prob0`=1,`text0_0`='I wandered for the rest of my natural life in search of knowledge, seeing more wonder and meeting more strange and mysterious races than any of my people before me. I travelled across the length and breadth of ancient Kalimdor until there was no more to see, no new lands across the horizon.$B$BYet... there was still so much I did not know as I felt my final journey approaching and I wept for the things I would never know.$B$BAs I fell, my life at an end, that is when they found me.',`WDBVerified`=14545 WHERE `ID`=14121;
|
||||
UPDATE `npc_text` SET `prob0`=1,`text0_0`='The bronze dragonflight. They snatched me from the brink of death and took me before their master, Nozdormu. He said they had been watching me and wanted me to continue my hunt. He granted me immortality as a watcher, tasked to bear witness to the history of Azeroth as one of his agents.$B$BI am Xarantaur the Witness, and it is my duty to preserve the true history of Azeroth lest it be forgotten.',`WDBVerified`=14545 WHERE `ID`=14122;
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=10217 AND `text_id`=14204;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10217,14204);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=10174 AND `text_id`=14118;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10174,14118);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10217 WHERE `entry`=30824;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10038 WHERE `entry`=31261;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10174 WHERE `entry`=30825;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (10026,10174) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(10026,0,0, 'Take me to the ship.',1,1,0,0,0,0, ''),
|
||||
(10174,0,1, 'I want to browse your goods.',3,128,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9806 AND `text_id`=13525;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9806,13525);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9807 AND `text_id`=13526;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9807,13526);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9808 AND `text_id`=13527;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9808,13527);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9809 AND `text_id`=13528;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9809,13528);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9810 AND `text_id`=13529;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9810,13529);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9811 AND `text_id`=13530;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9811,13530);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9812 AND `text_id`=13531;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9812,13531);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9813 AND `text_id`=13534;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9813,13534);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9806 WHERE `entry`=29344;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9813 WHERE `entry`=29396;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (9806,9807,9808,9809,9810,9811,9812) AND `id` IN (0);
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (9808,9809,9810,9811,9812) AND `id` IN (1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(9806,0,0, 'Lord-Commander, I would hear your tale.',1,1,9807,0,0,0, ''),
|
||||
(9807,0,0, '<You nod slightly but do not complete the motion as the lord-commander narrows his eyes before he continues.>',1,1,9808,0,0,0, ''),
|
||||
(9808,0,0, 'I thought that they now called themselves the Scarlet Onslaught?',1,1,9809,0,0,0, ''),
|
||||
(9808,1,0, 'Lord-Commander, would you repeat what you said before?',1,1,9807,0,0,0, ''),
|
||||
(9809,0,0, 'Where did the grand admiral go?',1,1,9810,0,0,0, ''),
|
||||
(9809,1,0, 'Lord-Commander, would you repeat what you said before?',1,1,9808,0,0,0, ''),
|
||||
(9810,0,0, 'That''s fine. When do I start?',1,1,9811,0,0,0, ''),
|
||||
(9810,1,0, 'Lord-Commander, would you repeat what you said before?',1,1,9809,0,0,0, ''),
|
||||
(9811,0,0, 'Let''s finish this!',1,1,9812,0,0,0, ''),
|
||||
(9811,1,0, 'Lord-Commander, would you repeat what you said before?',1,1,9810,0,0,0, ''),
|
||||
(9812,0,0, 'That''s quite a tale, lord-commander.',1,1,0,0,0,0, ''),
|
||||
(9812,1,0, 'Lord-Commander, would you repeat what you said before?',1,1,9811,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9168 AND `text_id`=12427;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9168,12427);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9184 AND `text_id`=12472;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9184,12472);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9168 WHERE `entry`=25504;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9184 WHERE `entry`=25379;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=348 WHERE `entry`=25278;
|
||||
@@ -0,0 +1,386 @@
|
||||
DROP TABLE IF EXISTS `game_event_seasonal_questrelation`;
|
||||
CREATE TABLE `game_event_seasonal_questrelation` (
|
||||
`quest` mediumint(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`event` mediumint(10) NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
PRIMARY KEY (`quest`,`event`),
|
||||
KEY `idx_quest` (`quest`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
|
||||
|
||||
INSERT INTO `game_event_seasonal_questrelation` (`quest`,`event`) VALUES
|
||||
(1657, 12),
|
||||
(1658, 12),
|
||||
(6961, 2),
|
||||
(6962, 2),
|
||||
(6963, 2),
|
||||
(6964, 2),
|
||||
(6983, 3),
|
||||
(6984, 3),
|
||||
(7021, 2),
|
||||
(7022, 2),
|
||||
(7023, 2),
|
||||
(7024, 2),
|
||||
(7025, 2),
|
||||
(7042, 2),
|
||||
(7043, 2),
|
||||
(7045, 2),
|
||||
(7061, 2),
|
||||
(7062, 2),
|
||||
(7063, 2),
|
||||
(8149, 11),
|
||||
(8150, 11),
|
||||
(8311, 12),
|
||||
(8312, 12),
|
||||
(8322, 12),
|
||||
(8353, 12),
|
||||
(8354, 12),
|
||||
(8355, 12),
|
||||
(8356, 12),
|
||||
(8357, 12),
|
||||
(8358, 12),
|
||||
(8359, 12),
|
||||
(8360, 12),
|
||||
(8373, 12),
|
||||
(8409, 12),
|
||||
(8744, 52),
|
||||
(8746, 2),
|
||||
(8762, 2),
|
||||
(8763, 2),
|
||||
(8767, 52),
|
||||
(8768, 52),
|
||||
(8769, 52),
|
||||
(8788, 52),
|
||||
(8799, 2),
|
||||
(8803, 52),
|
||||
(8827, 2),
|
||||
(8828, 2),
|
||||
(8860, 6),
|
||||
(8861, 6),
|
||||
(8868, 7),
|
||||
(8897, 8),
|
||||
(8898, 8),
|
||||
(8899, 8),
|
||||
(8900, 8),
|
||||
(8901, 8),
|
||||
(8902, 8),
|
||||
(8903, 8),
|
||||
(8904, 8),
|
||||
(8971, -1),
|
||||
(8972, -1),
|
||||
(8973, -1),
|
||||
(8974, -1),
|
||||
(8975, -1),
|
||||
(8976, -1),
|
||||
(8979, 8),
|
||||
(8980, 8),
|
||||
(8981, 8),
|
||||
(8982, 8),
|
||||
(8983, 8),
|
||||
(8984, 8),
|
||||
(8993, 8),
|
||||
(9024, 8),
|
||||
(9025, 8),
|
||||
(9026, 8),
|
||||
(9027, 8),
|
||||
(9028, 8),
|
||||
(11131, 12),
|
||||
(11135, 12),
|
||||
(11219, 12),
|
||||
(11220, 12),
|
||||
(11242, 12),
|
||||
(11356, 12),
|
||||
(11357, 12),
|
||||
(11360, 12),
|
||||
(11361, 12),
|
||||
(11392, 12),
|
||||
(11401, 12),
|
||||
(11403, 12),
|
||||
(11404, 12),
|
||||
(11405, 12),
|
||||
(11435, 12),
|
||||
(11439, 12),
|
||||
(11440, 12),
|
||||
(11449, 12),
|
||||
(11450, 12),
|
||||
(11528, 52),
|
||||
(11558, 8),
|
||||
(11580, 1),
|
||||
(11581, 1),
|
||||
(11583, 1),
|
||||
(11584, 1),
|
||||
(11696, 1),
|
||||
(11732, 1),
|
||||
(11734, 1),
|
||||
(11735, 1),
|
||||
(11736, 1),
|
||||
(11737, 1),
|
||||
(11738, 1),
|
||||
(11739, 1),
|
||||
(11740, 1),
|
||||
(11741, 1),
|
||||
(11742, 1),
|
||||
(11743, 1),
|
||||
(11744, 1),
|
||||
(11745, 1),
|
||||
(11746, 1),
|
||||
(11747, 1),
|
||||
(11748, 1),
|
||||
(11749, 1),
|
||||
(11750, 1),
|
||||
(11751, 1),
|
||||
(11752, 1),
|
||||
(11753, 1),
|
||||
(11754, 1),
|
||||
(11755, 1),
|
||||
(11756, 1),
|
||||
(11757, 1),
|
||||
(11758, 1),
|
||||
(11759, 1),
|
||||
(11760, 1),
|
||||
(11761, 1),
|
||||
(11762, 1),
|
||||
(11763, 1),
|
||||
(11764, 1),
|
||||
(11765, 1),
|
||||
(11766, 1),
|
||||
(11767, 1),
|
||||
(11768, 1),
|
||||
(11769, 1),
|
||||
(11770, 1),
|
||||
(11771, 1),
|
||||
(11772, 1),
|
||||
(11773, 1),
|
||||
(11774, 1),
|
||||
(11775, 1),
|
||||
(11776, 1),
|
||||
(11777, 1),
|
||||
(11778, 1),
|
||||
(11779, 1),
|
||||
(11780, 1),
|
||||
(11781, 1),
|
||||
(11782, 1),
|
||||
(11783, 1),
|
||||
(11784, 1),
|
||||
(11785, 1),
|
||||
(11786, 1),
|
||||
(11787, 1),
|
||||
(11799, 1),
|
||||
(11800, 1),
|
||||
(11801, 1),
|
||||
(11802, 1),
|
||||
(11803, 1),
|
||||
(11804, 1),
|
||||
(11805, 1),
|
||||
(11806, 1),
|
||||
(11807, 1),
|
||||
(11808, 1),
|
||||
(11809, 1),
|
||||
(11810, 1),
|
||||
(11811, 1),
|
||||
(11812, 1),
|
||||
(11813, 1),
|
||||
(11814, 1),
|
||||
(11815, 1),
|
||||
(11816, 1),
|
||||
(11817, 1),
|
||||
(11818, 1),
|
||||
(11819, 1),
|
||||
(11820, 1),
|
||||
(11821, 1),
|
||||
(11822, 1),
|
||||
(11823, 1),
|
||||
(11824, 1),
|
||||
(11825, 1),
|
||||
(11826, 1),
|
||||
(11827, 1),
|
||||
(11828, 1),
|
||||
(11829, 1),
|
||||
(11830, 1),
|
||||
(11831, 1),
|
||||
(11832, 1),
|
||||
(11833, 1),
|
||||
(11834, 1),
|
||||
(11835, 1),
|
||||
(11836, 1),
|
||||
(11837, 1),
|
||||
(11838, 1),
|
||||
(11839, 1),
|
||||
(11840, 1),
|
||||
(11841, 1),
|
||||
(11842, 1),
|
||||
(11843, 1),
|
||||
(11844, 1),
|
||||
(11845, 1),
|
||||
(11846, 1),
|
||||
(11847, 1),
|
||||
(11848, 1),
|
||||
(11849, 1),
|
||||
(11850, 1),
|
||||
(11851, 1),
|
||||
(11852, 1),
|
||||
(11853, 1),
|
||||
(11854, 1),
|
||||
(11855, 1),
|
||||
(11856, 1),
|
||||
(11857, 1),
|
||||
(11858, 1),
|
||||
(11859, 1),
|
||||
(11860, 1),
|
||||
(11861, 1),
|
||||
(11862, 1),
|
||||
(11863, 1),
|
||||
(11937, 1),
|
||||
(11976, 1),
|
||||
(12133, 12),
|
||||
(12135, 12),
|
||||
(12139, 12),
|
||||
(12155, 12),
|
||||
(12286, -1),
|
||||
(12313, 24),
|
||||
(12331, 12),
|
||||
(12332, 12),
|
||||
(12333, 12),
|
||||
(12334, 12),
|
||||
(12335, 12),
|
||||
(12336, 12),
|
||||
(12337, 12),
|
||||
(12338, 12),
|
||||
(12339, 12),
|
||||
(12340, 12),
|
||||
(12341, 12),
|
||||
(12342, 12),
|
||||
(12343, 12),
|
||||
(12344, 12),
|
||||
(12345, 12),
|
||||
(12346, 12),
|
||||
(12347, 12),
|
||||
(12348, 12),
|
||||
(12349, 12),
|
||||
(12350, 12),
|
||||
(12351, 12),
|
||||
(12352, 12),
|
||||
(12353, 12),
|
||||
(12354, 12),
|
||||
(12355, 12),
|
||||
(12356, 12),
|
||||
(12357, 12),
|
||||
(12358, 12),
|
||||
(12359, 12),
|
||||
(12360, 12),
|
||||
(12361, 12),
|
||||
(12362, 12),
|
||||
(12363, 12),
|
||||
(12364, 12),
|
||||
(12365, 12),
|
||||
(12366, 12),
|
||||
(12367, 12),
|
||||
(12368, 12),
|
||||
(12369, 12),
|
||||
(12370, 12),
|
||||
(12371, 12),
|
||||
(12373, 12),
|
||||
(12374, 12),
|
||||
(12375, 12),
|
||||
(12376, 12),
|
||||
(12377, 12),
|
||||
(12378, 12),
|
||||
(12379, 12),
|
||||
(12380, 12),
|
||||
(12381, 12),
|
||||
(12382, 12),
|
||||
(12383, 12),
|
||||
(12384, 12),
|
||||
(12385, 12),
|
||||
(12386, 12),
|
||||
(12387, 12),
|
||||
(12388, 12),
|
||||
(12389, 12),
|
||||
(12390, 12),
|
||||
(12391, 12),
|
||||
(12392, 12),
|
||||
(12393, 12),
|
||||
(12394, 12),
|
||||
(12395, 12),
|
||||
(12396, 12),
|
||||
(12397, 12),
|
||||
(12398, 12),
|
||||
(12399, 12),
|
||||
(12400, 12),
|
||||
(12401, 12),
|
||||
(12402, 12),
|
||||
(12403, 12),
|
||||
(12404, 12),
|
||||
(12405, 12),
|
||||
(12406, 12),
|
||||
(12407, 12),
|
||||
(12408, 12),
|
||||
(12409, 12),
|
||||
(12410, 12),
|
||||
(12940, 12),
|
||||
(12941, 12),
|
||||
(12944, 12),
|
||||
(12945, 12),
|
||||
(12946, 12),
|
||||
(12947, 12),
|
||||
(12950, 12),
|
||||
(13203, 52),
|
||||
(13433, 12),
|
||||
(13434, 12),
|
||||
(13435, 12),
|
||||
(13436, 12),
|
||||
(13437, 12),
|
||||
(13438, 12),
|
||||
(13439, 12),
|
||||
(13440, 12),
|
||||
(13441, 12),
|
||||
(13442, 12),
|
||||
(13443, 12),
|
||||
(13444, 12),
|
||||
(13445, 12),
|
||||
(13446, 12),
|
||||
(13447, 12),
|
||||
(13448, 12),
|
||||
(13449, 12),
|
||||
(13450, 12),
|
||||
(13451, 12),
|
||||
(13452, 12),
|
||||
(13453, 12),
|
||||
(13454, 12),
|
||||
(13455, 12),
|
||||
(13456, 12),
|
||||
(13457, 12),
|
||||
(13458, 12),
|
||||
(13459, 12),
|
||||
(13460, 12),
|
||||
(13461, 12),
|
||||
(13462, 12),
|
||||
(13463, 12),
|
||||
(13464, 12),
|
||||
(13465, 12),
|
||||
(13466, 12),
|
||||
(13467, 12),
|
||||
(13468, 12),
|
||||
(13469, 12),
|
||||
(13470, 12),
|
||||
(13471, 12),
|
||||
(13472, 12),
|
||||
(13473, 12),
|
||||
(13474, 12),
|
||||
(13485, 1),
|
||||
(13486, 1),
|
||||
(13487, 1),
|
||||
(13488, 1),
|
||||
(13489, 1),
|
||||
(13490, 1),
|
||||
(13491, 1),
|
||||
(13492, 1),
|
||||
(13493, 1),
|
||||
(13494, 1),
|
||||
(13495, 1),
|
||||
(13496, 1),
|
||||
(13497, 1),
|
||||
(13498, 1),
|
||||
(13499, 1),
|
||||
(13500, 1),
|
||||
(13501, 12),
|
||||
(13548, 12),
|
||||
(13966, 52);
|
||||
29
sql/old/3.3.5a/2012_01_04_02_world_achievements.sql
Normal file
29
sql/old/3.3.5a/2012_01_04_02_world_achievements.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
-- The Undying
|
||||
DELETE FROM `disables` WHERE `sourceType` = 4 AND `entry` IN (13237, 13238, 13239, 13240, 7617); -- Enable criteria
|
||||
DELETE FROM `achievement_criteria_data` WHERE `criteria_id` IN (13237, 13238, 13239, 13240, 7617); -- Enable instance script execution for achievement criteria
|
||||
INSERT INTO `achievement_criteria_data` VALUES
|
||||
(13237, 12, 0, 0, ''),
|
||||
(13237, 18, 0, 0, ''),
|
||||
(13238, 12, 0, 0, ''),
|
||||
(13238, 18, 0, 0, ''),
|
||||
(13239, 12, 0, 0, ''),
|
||||
(13239, 18, 0, 0, ''),
|
||||
(13240, 12, 0, 0, ''),
|
||||
(13240, 18, 0, 0, ''),
|
||||
(7617, 12, 0, 0, ''),
|
||||
(7617, 18, 0, 0, '');
|
||||
|
||||
-- The Immortal
|
||||
DELETE FROM `disables` WHERE `sourceType` = 4 AND `entry` IN (13233, 13234, 13235, 13236, 7616); -- Enable criteria
|
||||
DELETE FROM `achievement_criteria_data` WHERE `criteria_id` IN (13233, 13234, 13235, 13236, 7616); -- Enable instance script execution for achievement criteria
|
||||
INSERT INTO `achievement_criteria_data` VALUES
|
||||
(13233, 12, 1, 0, ''),
|
||||
(13233, 18, 0, 0, ''),
|
||||
(13234, 12, 1, 0, ''),
|
||||
(13234, 18, 0, 0, ''),
|
||||
(13235, 12, 1, 0, ''),
|
||||
(13235, 18, 0, 0, ''),
|
||||
(13236, 12, 1, 0, ''),
|
||||
(13236, 18, 0, 0, ''),
|
||||
(7616, 12, 1, 0, ''),
|
||||
(7616, 18, 0, 0, '');
|
||||
177
sql/old/3.3.5a/2012_01_04_02_world_sai.sql
Normal file
177
sql/old/3.3.5a/2012_01_04_02_world_sai.sql
Normal file
@@ -0,0 +1,177 @@
|
||||
-- spawns for the first part of DM East, along Pusillins path (will make things a bit more fun ;-) )
|
||||
|
||||
SET @NPC_WILDSPAWN_SATYR = 11451;
|
||||
SET @NPC_WILDSPAWN_ROGUE := 11452;
|
||||
SET @NPC_WILDSPAWN_BETRAYER := 11454;
|
||||
SET @NPC_WILDSPAWN_FELSWORN := 11455;
|
||||
SET @NPC_WILDSPAWN_SHADOWSTALKER := 11456;
|
||||
SET @NPC_WILDSPAWN_HELLCALLER := 11457;
|
||||
SET @NPC_WARPWOOD_TREANT = 11462;
|
||||
SET @NPC_WARPWOOD_CRUSHER := 13021;
|
||||
SET @NPC_WHIP_LASHER := 13022;
|
||||
SET @NPC_PHASE_LASHER := 13196;
|
||||
SET @NPC_FEL_LASH := 13197;
|
||||
|
||||
-- SmartAI for Warpwood Treant
|
||||
SET @ENTRY := @NPC_WARPWOOD_TREANT;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,0,0,100,0,3000,5000,5000,7000,11,18368,0,0,0,0,0,2,0,0,0,0,0,0,0,'Warpwood Treant - In Combat - Cast Strike'),
|
||||
(@ENTRY,0,1,0,0,0,100,0,7000,9000,18000,22000,11,14331,0,0,0,0,0,2,0,0,0,0,0,0,0,'Warpwood Treant - In Combat - Cast Vicious Rend'),
|
||||
(@ENTRY,0,2,0,0,0,100,0,10000,12000,9000,14000,11,11428,0,0,0,0,0,2,0,0,0,0,0,0,0,'Warpwood Treant - In Combat - Cast Knockdown');
|
||||
|
||||
-- SmartAI for Warpwood Crusher
|
||||
SET @ENTRY := @NPC_WARPWOOD_CRUSHER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,0,0,100,0,3000,7000,8000,12000,11,22426,0,0,0,0,0,2,0,0,0,0,0,0,0,'Warpwood Crusher - In Combat - Cast Crush Armor');
|
||||
|
||||
-- SmartAI for Whip Lasher
|
||||
SET @ENTRY := @NPC_WHIP_LASHER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=15 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,0,0,100,0,2000,5000,7000,9000,11,21987,0,0,0,0,0,2,0,0,0,0,0,0,0,'Whip Lasher - In Combat - Cast Lash of Pain');
|
||||
|
||||
-- Fel Lash
|
||||
SET @ENTRY := @NPC_FEL_LASH;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=15 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Fel Lash - On Aggro - Prevent Combat Movement'),
|
||||
(@ENTRY,0,1,2,4,0,100,0,0,0,0,0,11,15230,0,0,0,0,0,2,0,0,0,0,0,0,0,'Fel Lash - On Aggro - Cast Arcane Bolt'),
|
||||
(@ENTRY,0,2,0,61,0,100,0,0,0,0,0,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Fel Lash - On Aggro - Set Phase 1'),
|
||||
(@ENTRY,0,3,0,9,1,100,0,0,40,2400,3800,11,15230,0,0,0,0,0,2,0,0,0,0,0,0,0,'Fel Lash - In Phase 1 - Cast Arcane Bolt '),
|
||||
(@ENTRY,0,4,5,3,1,100,0,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Fel Lash - In Phase 1 and Mana at 15% - Start Combat Movement'),
|
||||
(@ENTRY,0,5,0,61,1,100,0,0,0,0,0,22,2,0,0,0,0,0,0,0,0,0,0,0,0,0,'Fel Lash - In Phase 1 and Mana is at 15% - set Phase 2'),
|
||||
(@ENTRY,0,6,0,9,1,100,0,35,80,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Fel Lash - In Phase 1 - Start Combat Movement at 35 Yards'),
|
||||
(@ENTRY,0,7,0,9,1,100,0,5,15,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Fel Lash - In Phase 1 - Prevent Combat Movement at 15 Yards'),
|
||||
(@ENTRY,0,8,0,9,1,100,0,0,5,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Fel Lash - In Phase 1 - Start Combat Movement Below 5 Yards'),
|
||||
(@ENTRY,0,9,0,3,2,100,0,30,100,100,100,22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Fel Lash - Phase 2 - Set Phase 1 when Mana is above 30%'),
|
||||
(@ENTRY,0,10,0,0,0,100,0,9000,15000,11000,16000,11,22271,1,0,0,0,0,1,0,0,0,0,0,0,0,'Fel Lash - In Combat - Cast Arcane Explosion'),
|
||||
(@ENTRY,0,11,0,7,0,100,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Fel Lash - On Evade - Set Phase to 0');
|
||||
|
||||
-- Phase Lasher
|
||||
SET @ENTRY := @NPC_PHASE_LASHER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=15 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - On Aggro - Prevent Combat Movement'),
|
||||
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - On Aggro - Set Phase 1'),
|
||||
(@ENTRY,0,2,0,9,1,100,0,0,30,3400,4800,11,17228,2,0,0,0,0,2,0,0,0,0,0,0,0,'Phase Lasher - On Range - Cast Shadow Bolt Volley (Phase 1)'),
|
||||
(@ENTRY,0,3,0,0,1,100,0,5000,5000,6000,6000,31,2,4,8,16,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - In Phase 1 - Random Select Phase'),
|
||||
(@ENTRY,0,4,5,9,2,100,0,0,40,3400,4800,11,15285,2,0,0,0,0,2,0,0,0,0,0,0,0,'Phase Lasher - In Phase 2 - Cast Fireball Volley'),
|
||||
(@ENTRY,0,5,0,61,2,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - In Phase 2 - Set Phase 1'),
|
||||
(@ENTRY,0,6,7,0,4,100,0,4000,8000,8000,10000,11,22519,2,0,0,0,0,2,0,0,0,0,0,0,0,'Phase Lasher - In Phase 3 - Cast Ice Nova'),
|
||||
(@ENTRY,0,7,0,61,4,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - In Phase 3 - Set Phase 1'),
|
||||
(@ENTRY,0,8,0,0,8,100,0,4000,8000,10000,13000,11,22356,2,0,0,0,0,2,0,0,0,0,0,0,0,'Phase Lasher - In Phase 4 - Cast Slow'),
|
||||
(@ENTRY,0,9,0,61,8,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - In Phase 4 - Set Phase 1'),
|
||||
(@ENTRY,0,10,11,0,16,100,0,4000,8000,6000,8000,11,21749,2,0,0,0,0,2,0,0,0,0,0,0,0,'Phase Lasher - In Phase 5 - Cast Thorn Volley'),
|
||||
(@ENTRY,0,11,0,61,16,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - In Phase 5 - Set Phase 1'),
|
||||
(@ENTRY,0,12,0,7,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - On Evade - Set Phase to 0'),
|
||||
(@ENTRY,0,13,0,6,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Phase Lasher - On Death - Set Phase to 0');
|
||||
|
||||
-- SmartAI for Wildspawn Satyr
|
||||
SET @ENTRY := @NPC_WILDSPAWN_SATYR;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,0,0,100,0,1000,3000,4000,6000,11,15580,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Satyr - In Combat - Cast Strike'),
|
||||
(@ENTRY,0,1,0,0,0,100,0,7000,9000,14000,18000,11,9080,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Satyr - In Combat - Cast Hamstring'),
|
||||
(@ENTRY,0,2,0,0,0,100,0,5000,7000,15000,25000,11,9128,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Satyr - In Combat - Cast Battle Shout'),
|
||||
(@ENTRY,0,3,0,2,0,100,1,0,30,0,0,11,8599,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Satyr - At 30% HP - Cast Enrage'),
|
||||
(@ENTRY,0,4,0,2,0,100,1,0,30,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Satyr - At 30% HP - Say Line 0');
|
||||
|
||||
-- Text for Wildspawn Satyr
|
||||
DELETE FROM `creature_text` WHERE `entry`=@ENTRY;
|
||||
INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES
|
||||
(@ENTRY,0,0,'%s becomes enraged!',16,0,100,0,0,0,'Wildspawn Satyr - At 30% HP - Enraged Text');
|
||||
|
||||
-- SmartAI for Wildspawn Rogue
|
||||
SET @ENTRY := @NPC_WILDSPAWN_ROGUE;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,0,0,0,100,0,5000,7000,12000,16000,11,15583,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Rogue - In Combat - Cast Rupture'),
|
||||
(@ENTRY,0,1,0,0,0,100,0,11000,15000,10000,13000,11,15667,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Rogue - In Combat - Cast Sinister Strike');
|
||||
|
||||
-- SmartAI for Wildspawn Betrayer
|
||||
SET @ENTRY := @NPC_WILDSPAWN_BETRAYER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES
|
||||
(@ENTRY,0,0,1,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - On Spawn - Prevent Combat Movement'),
|
||||
(@ENTRY,0,1,0,61,0,100,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Betrayer - On Spawn - Prevent Melee'),
|
||||
(@ENTRY,0,2,3,4,0,100,0,0,0,0,0,11,16100,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Betrayer - On Aggro - Cast Shoot'),
|
||||
(@ENTRY,0,3,0,61,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - On Aggro - Set Phase 1'),
|
||||
(@ENTRY,0,4,5,9,1,100,0,5,30,2300,3900,11,16100,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Betrayer - In Combat (Phase 1) - Cast Shoot'),
|
||||
(@ENTRY,0,5,0,61,1,100,0,0,0,0,0,40,2,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - In Combat (Phase 1) - Set Ranged Weapon Model'),
|
||||
(@ENTRY,0,6,7,9,1,100,1,25,80,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 25 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,7,0,61,1,100,1,0,0,0,0,20,1,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 25 Yards (Phase 1) - Start Melee'),
|
||||
(@ENTRY,0,8,9,9,1,100,0,0,5,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - Below 5 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,9,10,61,1,100,0,0,0,0,0,40,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - Below 5 Yards (Phase 1) - Set Melee Weapon'),
|
||||
(@ENTRY,0,10,0,61,1,100,0,0,0,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - Below 5 Yards (Phase 1) - Start Melee'),
|
||||
(@ENTRY,0,11,12,9,1,100,0,5,15,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 15 Yards (Phase 1) - Prevent Combat Movement'),
|
||||
(@ENTRY,0,12,0,61,1,100,0,0,0,0,0,20,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 15 Yards (Phase 1) - Prevent Melee'),
|
||||
(@ENTRY,0,13,0,9,1,100,0,5,30,7800,11400,11,18649,40,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Betrayer - In Combat (Phase 1) - Cast Shadow Shot'),
|
||||
(@ENTRY,0,14,0,9,1,100,0,5,30,9900,13600,11,7896,40,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Betrayer - In Combat (Phase 1) - Cast Exploding Shot'),
|
||||
(@ENTRY,0,15,0,0,1,100,0,5000,8000,8000,11000,11,11428,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Betrayer - In Combat (Phase 1) - Cast Knockdown'),
|
||||
(@ENTRY,0,16,0,2,0,100,1,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 15% HP - Start Combat Movement'),
|
||||
(@ENTRY,0,17,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 15% HP - Flee'),
|
||||
(@ENTRY,0,18,19,7,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - On Evade - Set Phase to 0'),
|
||||
(@ENTRY,0,19,0,61,0,100,0,0,0,0,0,40,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - On Evade - Set Melee Weapon Model');
|
||||
|
||||
-- SmartAI for Wildspawn Hellcaller
|
||||
SET @ENTRY := @NPC_WILDSPAWN_HELLCALLER;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES(@ENTRY,0,0,0,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - On Aggro - Prevent Combat Movement'),
|
||||
(@ENTRY,0,1,2,4,0,100,0,0,0,0,0,11,15228,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Hellcaller - On Aggro - Cast Fireball '),(@ENTRY,0,2,0,61,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - On Aggro - Set Phase 1'),(@ENTRY,0,3,0,9,1,100,0,0,40,2400,3800,11,15228,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Phase 1 - Cast Fireball'),
|
||||
(@ENTRY,0,4,5,3,1,100,0,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller -In Phase 1 - Start Combat Movement'),
|
||||
(@ENTRY,0,5,0,61,1,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Mana at 15% (Phase 1) - Set Phase 2'),
|
||||
(@ENTRY,0,6,0,9,1,100,0,35,80,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Hellcaller - At 35 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,7,0,9,1,100,0,5,15,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - at 15 Yards (Phase 1) - Prevent Combat Movement '),
|
||||
(@ENTRY,0,8,0,9,1,100,0,0,5,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Below 5 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,9,0,3,2,100,0,0,30,100,100,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Mana is above 30% (Phase 2) - Set Phase 1'),
|
||||
(@ENTRY,0,10,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Hellcaller - Set Phase 1 when Mana is above 30% (Phase 2)'),
|
||||
(@ENTRY,0,11,0,0,0,100,0,8000,14000,18000,25000,11,20754,3,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Hellcaller - In Combat - Cast Rain of Fire'),
|
||||
(@ENTRY,0,12,0,2,0,100,1,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Hellcaller - At 15% HP - Start Combat Movement'),
|
||||
(@ENTRY,0,13,0,2,0,100,1,0,15,0,0,25,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Betrayer - At 15% HP - Flee'),(@ENTRY,0,14,0,7,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Evade - Set Phase to 0');
|
||||
|
||||
-- SmartAI for Wildspawn Felsworn
|
||||
SET @ENTRY := @NPC_WILDSPAWN_FELSWORN;
|
||||
DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY;
|
||||
UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY;
|
||||
UPDATE creature SET `MovementType`=1,`spawndist`=3 WHERE `id`=@ENTRY;
|
||||
DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0;
|
||||
INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES(@ENTRY,0,0,0,1,0,100,1,1000,1000,1800000,1800000,11,12542,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Cast Chaotic Focus'),
|
||||
(@ENTRY,0,1,0,4,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Aggro - Prevent Combat Movement'),
|
||||
(@ENTRY,0,2,3,4,0,100,0,0,0,0,0,11,15537,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Aggro - Cast Shadow Bolt'),
|
||||
(@ENTRY,0,3,0,61,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Aggro - Set Phase 1'),(@ENTRY,0,4,0,9,1,100,0,0,40,2400,3800,11,15537,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Felsworn - Phase 1 - Cast Shadow Bolt'),
|
||||
(@ENTRY,0,5,6,3,1,100,0,0,15,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn -In Phase 1 - Start Combat Movement'),
|
||||
(@ENTRY,0,6,0,61,1,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Mana at 15% (Phase 1) - Set Phase 2'),
|
||||
(@ENTRY,0,7,0,9,1,100,0,35,80,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Felsworn - At 35 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,8,0,9,1,100,0,5,15,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - at 15 Yards (Phase 1) - Prevent Combat Movement '),
|
||||
(@ENTRY,0,9,0,9,1,100,0,0,5,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Below 5 Yards (Phase 1) - Start Combat Movement'),
|
||||
(@ENTRY,0,10,0,3,2,100,0,0,30,100,100,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - Mana is above 30% (Phase 2) - Set Phase 1'),
|
||||
(@ENTRY,0,11,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'Wildspawn Felsworn - Set Phase 1 when Mana is above 30% (Phase 2)'),
|
||||
(@ENTRY,0,12,0,0,0,100,0,7000,12000,38000,45000,11,22417,1,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - In Phase 1 - Cast Shadow Shield'),(@ENTRY,0,13,0,0,1,100,0,11000,17000,23000,30000,11,15654,0,0,0,0,0,2,0,0,0,0,0,0,0,'Wildspawn Felsworn - In Phase 1 - Cast Shadow Word: Pain'),(@ENTRY,0,14,0,0,0,100,0,6000,10000,10000,15000,11,12542,1,0,0,0,0,5,0,0,0,0,0,0,0,'Wildspawn Felsworn - In Combat - Cast Fear (on random target)'),
|
||||
(@ENTRY,0,15,0,7,0,100,0,0,0,0,0,22,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Wildspawn Felsworn - On Evade - Set Phase to 0');
|
||||
@@ -0,0 +1,2 @@
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 53385;
|
||||
INSERT INTO `spell_script_names` VALUES (53385, 'spell_pal_divine_storm');
|
||||
10
sql/old/3.3.5a/2012_01_04_04_world_creature.sql
Normal file
10
sql/old/3.3.5a/2012_01_04_04_world_creature.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
-- fix earlier typo in guid (recovered 1846)
|
||||
DELETE FROM `creature` WHERE `guid` = 1864;
|
||||
INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`) VALUES
|
||||
(1864,1096,0,1,1,7197,0,-11958.5,-484.88,17.0796,5.15875,300,0,0,1160,1067,0);
|
||||
|
||||
DELETE FROM `creature_addon` WHERE `guid`=1864;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES
|
||||
(1864,0,0,0,4097,0,'');
|
||||
|
||||
|
||||
8
sql/old/3.3.5a/2012_01_04_04_world_creature_template.sql
Normal file
8
sql/old/3.3.5a/2012_01_04_04_world_creature_template.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
-- [Q] Garments of the Moon (5621) and Garments of the Light (5625)
|
||||
SET @ENTRY_SHAYA := 12429; -- Sentinel Shaya
|
||||
SET @ENTRY_DOLF := 12427; -- Mountaineer Dolf
|
||||
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|8 WHERE `entry` IN (@ENTRY_SHAYA, @ENTRY_DOLF);
|
||||
|
||||
-- [Q] Garments of Darkness (5650)
|
||||
SET @ENTRY_KEL := 12428; -- Deathguard Kel (has to be +8 so in total 36872)
|
||||
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|8|4096|32768 WHERE `entry` IN (@ENTRY_KEL);
|
||||
476
sql/old/3.3.5a/2012_01_04_05_world_waypoint_data.sql
Normal file
476
sql/old/3.3.5a/2012_01_04_05_world_waypoint_data.sql
Normal file
@@ -0,0 +1,476 @@
|
||||
-- Some Hinterlands fixups.
|
||||
|
||||
-- Waypoint Script guids
|
||||
SET @SCRIPTGUID := 55; -- 12 required
|
||||
|
||||
-- Fixup Revantusk Watcher add Invisibility and Stealth Detection aura
|
||||
UPDATE creature SET `modelid`=0,`curhealth`=1 WHERE id=14730;
|
||||
UPDATE `creature_addon` SET `bytes2`=257,`auras`=18950 WHERE guid IN (SELECT guid FROM creature WHERE id=14730);
|
||||
|
||||
-- Revantusk Drummer add emote
|
||||
DELETE FROM `creature_addon` WHERE `guid` IN (92886,92887,92888);
|
||||
DELETE FROM `creature_template_addon` WHERE `entry`=14734;
|
||||
INSERT INTO `creature_template_addon` (`entry`,`bytes2`,`emote`) VALUES (14734,1,36);
|
||||
|
||||
-- Pathing for Smith Slagtree Entry: 14737
|
||||
SET @NPC := 92909;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-589.9536,`position_y`=-4548.458,`position_z`=9.161489 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-591.6767,-4554.789,9.161489,0,0,0,0,100,0),
|
||||
(@PATH,2,-595.7503,-4559.671,9.161489,0,6000,0,929090,100,0),
|
||||
(@PATH,3,-589.9536,-4548.458,9.161489,0,29000,0,929091,100,0);
|
||||
DELETE FROM `waypoint_scripts` WHERE `id` IN (929090,929091);
|
||||
INSERT INTO `waypoint_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`o`,`guid`) VALUES
|
||||
(929090,1,30,0,0,3.228859,@SCRIPTGUID),
|
||||
(929090,2,2,74,8,0,@SCRIPTGUID+1),
|
||||
(929090,5,2,74,0,0,@SCRIPTGUID+2),
|
||||
(929091,1,30,0,0,0.6108652,@SCRIPTGUID+3),
|
||||
(929091,2,15,23488,1,0,@SCRIPTGUID+4),
|
||||
(929091,5,2,83,233,0,@SCRIPTGUID+5),
|
||||
(929091,24,2,83,69,0,@SCRIPTGUID+6);
|
||||
|
||||
-- Pathing for Mystic Yayo'jin Entry: 14739
|
||||
SET @NPC := 92911;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-541.7078,`position_y`=-4608.892,`position_z`=13.12271 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-538.0938,-4609.549,13.11275,0,500,0,0,100,0),
|
||||
(@PATH,2,-538.0938,-4609.549,13.11275,5.986479,8000,0,0,100,0),
|
||||
(@PATH,3,-539.3364,-4606.846,13.11516,0,500,0,0,100,0),
|
||||
(@PATH,4,-539.3364,-4606.846,13.11516,0.9773844,10000,0,0,100,0),
|
||||
(@PATH,5,-542.105,-4606.523,13.12286,0,500,0,0,100,0),
|
||||
(@PATH,6,-542.105,-4606.523,13.12286,1.815142,9000,0,0,100,0),
|
||||
(@PATH,7,-543.7079,-4611.147,13.15176,0,0,0,0,100,0),
|
||||
(@PATH,8,-540.0343,-4611.84,13.11918,0,0,0,0,100,0),
|
||||
(@PATH,9,-539.916,-4609.014,13.11769,0,0,0,0,100,0),
|
||||
(@PATH,10,-541.7078,-4608.892,13.12271,0,500,0,0,100,0),
|
||||
(@PATH,11,-541.7078,-4608.892,13.12271,2.86234,48000,0,929110,100,0);
|
||||
DELETE FROM `waypoint_scripts` WHERE `id`=929110;
|
||||
INSERT INTO `waypoint_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`guid`) VALUES
|
||||
(929110,2,2,74,1,@SCRIPTGUID+7),
|
||||
(929110,39,2,74,0,@SCRIPTGUID+8),
|
||||
(929110,41,2,83,133,@SCRIPTGUID+9);
|
||||
|
||||
-- Pathing for Revantusk Watcher Entry: 14730
|
||||
SET @NPC := 92898;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-621.9691,`position_y`=-4670.079,`position_z`=5.061154 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,257,0, '18950');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-614.1932,-4653.834,5.040805,0,0,0,0,100,0),
|
||||
(@PATH,2,-620.4515,-4667.109,5.066647,0,0,0,0,100,0),
|
||||
(@PATH,3,-630.2896,-4686.361,5.086016,0,0,0,0,100,0),
|
||||
(@PATH,4,-644.1071,-4714.346,5.219747,0,9000,0,928980,100,0);
|
||||
DELETE FROM `waypoint_scripts` WHERE `id` IN (928980);
|
||||
INSERT INTO `waypoint_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`x`,`y`,`z`,`o`,`guid`) VALUES
|
||||
(928980,8,6,0,1,-621.9691,-4670.079,5.061154,1.098353,@SCRIPTGUID+10);
|
||||
|
||||
-- Pathing for Revantusk Watcher Entry: 14730
|
||||
SET @NPC := 92899;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-619.3934,`position_y`=-4664.687,`position_z`=5.057855 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,257,0, '18950');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-615.9739,-4657.611,5.048162,0,0,0,0,100,0),
|
||||
(@PATH,2,-617.2744,-4660.37,5.053535,0,0,0,0,100,0),
|
||||
(@PATH,3,-618.5742,-4663.127,5.058907,0,0,0,0,100,0),
|
||||
(@PATH,4,-619.8167,-4665.867,5.066616,0,0,0,0,100,0),
|
||||
(@PATH,5,-621.2051,-4668.584,5.066684,0,0,0,0,100,0),
|
||||
(@PATH,6,-622.5936,-4671.301,5.066746,0,0,0,0,100,0),
|
||||
(@PATH,7,-623.9827,-4674.019,5.066799,0,0,0,0,100,0),
|
||||
(@PATH,8,-625.2844,-4676.566,5.066853,0,0,0,0,100,0),
|
||||
(@PATH,9,-626.7726,-4679.479,5.060135,0,0,0,0,100,0),
|
||||
(@PATH,10,-628.1486,-4682.171,5.07026,0,0,0,0,100,0),
|
||||
(@PATH,11,-629.5447,-4684.852,5.078729,0,0,0,0,100,0),
|
||||
(@PATH,12,-630.8968,-4687.591,5.091967,0,0,0,0,100,0),
|
||||
(@PATH,13,-632.2471,-4690.326,5.105191,0,10000,0,928990,100,0);
|
||||
DELETE FROM `waypoint_scripts` WHERE `id` IN (928990);
|
||||
INSERT INTO `waypoint_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`x`,`y`,`z`,`o`,`guid`) VALUES
|
||||
(928990,9,6,0,1,-619.3934,-4664.687,5.057855,1.120319,@SCRIPTGUID+11);
|
||||
|
||||
-- Pathing for Revantusk Watcher Entry: 14730
|
||||
SET @NPC := 92946;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-583.7281,`position_y`=-4567.89,`position_z`=9.120717 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,257,0, '18950');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-576.5599,-4568.717,9.161489,0,0,0,0,100,0),
|
||||
(@PATH,2,-570.6282,-4570.051,9.286489,0,0,0,0,100,0),
|
||||
(@PATH,3,-564.2906,-4571.396,9.480314,0,0,0,0,100,0),
|
||||
(@PATH,4,-559.9419,-4573.958,9.605314,0,0,0,0,100,0),
|
||||
(@PATH,5,-554.7994,-4581.686,9.740568,0,0,0,0,100,0),
|
||||
(@PATH,6,-552.841,-4589.281,9.605314,0,0,0,0,100,0),
|
||||
(@PATH,7,-555.0905,-4596.873,9.605314,0,0,0,0,100,0),
|
||||
(@PATH,8,-555.7503,-4601.974,9.614173,0,0,0,0,100,0),
|
||||
(@PATH,9,-559.4357,-4608.517,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,10,-563.2764,-4613.221,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,11,-566.1555,-4615.88,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,12,-566.157,-4619.973,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,13,-565.7682,-4621.338,10.5361,0,0,0,0,100,0),
|
||||
(@PATH,14,-564.9091,-4624.298,12.33652,0,0,0,0,100,0),
|
||||
(@PATH,15,-564.4247,-4626.619,13.21042,0,0,0,0,100,0),
|
||||
(@PATH,16,-565.8718,-4628.861,13.21023,0,0,0,0,100,0),
|
||||
(@PATH,17,-568.9028,-4629.674,13.21105,0,0,0,0,100,0),
|
||||
(@PATH,18,-571.7204,-4630.63,14.69388,0,0,0,0,100,0),
|
||||
(@PATH,19,-576.4782,-4631.931,17.15172,0,0,0,0,100,0),
|
||||
(@PATH,20,-581.1254,-4634.227,19.03236,0,0,0,0,100,0),
|
||||
(@PATH,21,-585.7308,-4639.775,21.21893,0,0,0,0,100,0),
|
||||
(@PATH,22,-585.2182,-4645.189,22.94262,0,0,0,0,100,0),
|
||||
(@PATH,23,-582.2473,-4647.843,24.75424,0,0,0,0,100,0),
|
||||
(@PATH,24,-576.8602,-4648.417,26.25482,0,0,0,0,100,0),
|
||||
(@PATH,25,-572.6866,-4646.474,28.46729,0,0,0,0,100,0),
|
||||
(@PATH,26,-569.6187,-4644.834,30.25781,0,0,0,0,100,0),
|
||||
(@PATH,27,-565.1738,-4641.978,30.34623,0,0,0,0,100,0),
|
||||
(@PATH,28,-561.8621,-4639.479,30.34518,0,0,0,0,100,0),
|
||||
(@PATH,29,-559.1216,-4640.588,30.34381,0,0,0,0,100,0),
|
||||
(@PATH,30,-561.8621,-4639.479,30.34518,0,0,0,0,100,0),
|
||||
(@PATH,31,-568.164,-4644.291,30.34578,0,0,0,0,100,0),
|
||||
(@PATH,32,-572.6866,-4646.474,28.46729,0,0,0,0,100,0),
|
||||
(@PATH,33,-576.8602,-4648.417,26.25482,0,0,0,0,100,0),
|
||||
(@PATH,34,-582.2473,-4647.843,24.75424,0,0,0,0,100,0),
|
||||
(@PATH,35,-585.2182,-4645.189,22.94262,0,0,0,0,100,0),
|
||||
(@PATH,36,-585.7538,-4639.803,21.22803,0,0,0,0,100,0),
|
||||
(@PATH,37,-581.134,-4634.237,19.03649,0,0,0,0,100,0),
|
||||
(@PATH,38,-576.6482,-4631.978,17.23644,0,0,0,0,100,0),
|
||||
(@PATH,39,-572.6212,-4631.001,15.44738,0,0,0,0,100,0),
|
||||
(@PATH,40,-568.9028,-4629.674,13.21105,0,0,0,0,100,0),
|
||||
(@PATH,41,-565.8718,-4628.861,13.21023,0,0,0,0,100,0),
|
||||
(@PATH,42,-564.4247,-4626.619,13.21042,0,0,0,0,100,0),
|
||||
(@PATH,43,-564.7512,-4625.108,12.77208,0,0,0,0,100,0),
|
||||
(@PATH,44,-565.6238,-4622.17,11.06051,0,0,0,0,100,0),
|
||||
(@PATH,45,-566.157,-4619.973,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,46,-566.1555,-4615.88,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,47,-563.2764,-4613.221,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,48,-559.4357,-4608.517,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,49,-555.7503,-4601.974,9.614173,0,0,0,0,100,0),
|
||||
(@PATH,50,-555.0905,-4596.873,9.605314,0,0,0,0,100,0),
|
||||
(@PATH,51,-552.841,-4589.281,9.605314,0,0,0,0,100,0),
|
||||
(@PATH,52,-554.7994,-4581.686,9.740568,0,0,0,0,100,0),
|
||||
(@PATH,53,-559.9419,-4573.958,9.605314,0,0,0,0,100,0),
|
||||
(@PATH,54,-564.2906,-4571.396,9.480314,0,0,0,0,100,0),
|
||||
(@PATH,55,-570.6282,-4570.051,9.286489,0,0,0,0,100,0),
|
||||
(@PATH,56,-576.5599,-4568.717,9.161489,0,0,0,0,100,0),
|
||||
(@PATH,57,-583.7281,-4567.89,9.120717,0,0,0,0,100,0),
|
||||
(@PATH,58,-589.5422,-4571.942,9.482045,0,0,0,0,100,0),
|
||||
(@PATH,59,-595.0231,-4573.951,9.786489,0,0,0,0,100,0),
|
||||
(@PATH,60,-589.5422,-4571.942,9.482045,0,0,0,0,100,0),
|
||||
(@PATH,61,-583.7281,-4567.89,9.120717,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Revantusk Watcher Entry: 14730
|
||||
SET @NPC := 92903;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-587.9592,`position_y`=-4565.161,`position_z`=9.161489 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,257,0, '18950');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-589.1211,-4560.011,9.161489,0,0,0,0,100,0),
|
||||
(@PATH,2,-586.8055,-4558.024,9.161489,0,0,0,0,100,0),
|
||||
(@PATH,3,-582.1091,-4557.421,9.418232,0,0,0,0,100,0),
|
||||
(@PATH,4,-563.0848,-4567.083,9.617765,0,0,0,0,100,0),
|
||||
(@PATH,5,-564.0873,-4565.243,9.636915,0,0,0,0,100,0),
|
||||
(@PATH,6,-554.4955,-4549.669,10.38081,0,0,0,0,100,0),
|
||||
(@PATH,7,-551.9146,-4546.659,10.20161,0,0,0,0,100,0),
|
||||
(@PATH,8,-530.5864,-4534.892,10.88507,0,0,0,0,100,0),
|
||||
(@PATH,9,-528.0935,-4540.74,10.68414,0,0,0,0,100,0),
|
||||
(@PATH,10,-548.4247,-4552.033,10.33687,0,0,0,0,100,0),
|
||||
(@PATH,11,-559.3554,-4571.553,9.605396,0,0,0,0,100,0),
|
||||
(@PATH,12,-558.353,-4572.357,9.734953,0,0,0,0,100,0),
|
||||
(@PATH,13,-552.0048,-4585.105,9.830168,0,0,0,0,100,0),
|
||||
(@PATH,14,-551.9355,-4589.406,9.685699,0,0,0,0,100,0),
|
||||
(@PATH,15,-559.1077,-4612.717,9.864173,0,0,0,0,100,0),
|
||||
(@PATH,16,-563.384,-4614.937,9.739216,0,0,0,0,100,0),
|
||||
(@PATH,17,-587.5415,-4618.487,9.456761,0,0,0,0,100,0),
|
||||
(@PATH,18,-596.1833,-4629.224,9.796849,0,0,0,0,100,0),
|
||||
(@PATH,19,-601.0118,-4628.754,9.411202,0,0,0,0,100,0),
|
||||
(@PATH,20,-592.4224,-4616.147,9.359911,0,0,0,0,100,0),
|
||||
(@PATH,21,-588.6967,-4613.219,9.55808,0,0,0,0,100,0),
|
||||
(@PATH,22,-567.4048,-4614.91,9.729955,0,0,0,0,100,0),
|
||||
(@PATH,23,-566.9582,-4615.76,9.628169,0,0,0,0,100,0),
|
||||
(@PATH,24,-557.4971,-4586.748,9.730397,0,0,0,0,100,0),
|
||||
(@PATH,25,-565.1426,-4573.827,9.526945,0,0,0,0,100,0),
|
||||
(@PATH,26,-587.9592,-4565.161,9.161489,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Revantusk Watcher Entry: 14730
|
||||
SET @NPC := 92904;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-563.7853,`position_y`=-4572.203,`position_z`=9.480314 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,257,0, '18950');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-589.0695,-4562.6,9.161489,0,0,0,0,100,0),
|
||||
(@PATH,2,-584.3304,-4558.535,9.161489,0,0,0,0,100,0),
|
||||
(@PATH,3,-563.9773,-4568.874,9.527922,0,0,0,0,100,0),
|
||||
(@PATH,4,-551.5903,-4548.764,10.15376,0,0,0,0,100,0),
|
||||
(@PATH,5,-529.4497,-4536.548,11.02155,0,0,0,0,100,0),
|
||||
(@PATH,6,-549.9079,-4550.587,9.985304,0,0,0,0,100,0),
|
||||
(@PATH,7,-561.3011,-4570.924,9.605314,0,0,0,0,100,0),
|
||||
(@PATH,8,-553.2903,-4587.01,9.647795,0,0,0,0,100,0),
|
||||
(@PATH,9,-561.1612,-4612.59,9.864173,0,0,0,0,100,0),
|
||||
(@PATH,10,-588.2601,-4616.572,9.456761,0,0,0,0,100,0),
|
||||
(@PATH,11,-599.4961,-4630.079,9.579808,0,0,0,0,100,0),
|
||||
(@PATH,12,-589.3387,-4615.174,9.456761,0,0,0,0,100,0),
|
||||
(@PATH,13,-565.2857,-4617.084,9.739173,0,0,0,0,100,0),
|
||||
(@PATH,14,-555.2867,-4586.42,9.730314,0,0,0,0,100,0),
|
||||
(@PATH,15,-563.7853,-4572.203,9.480314,0,0,0,0,100,0);
|
||||
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID`=92903;
|
||||
INSERT INTO `creature_formations` (`leaderGUID`,`memberGUID`,`dist`,`angle`,`groupAI`) VALUES
|
||||
(92903,92903,0,0,2),
|
||||
(92903,92904,2,300,2);
|
||||
|
||||
-- Pathing for Vilebranch Headhunter Entry: 2641
|
||||
SET @NPC := 93747;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-334.7697,`position_y`=-4118.176,`position_z`=152.1513 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-333.2237,-4134.225,152.0622,0,0,0,0,100,0),
|
||||
(@PATH,2,-339.8373,-4147.746,152.1256,0,0,0,0,100,0),
|
||||
(@PATH,3,-346.6712,-4160.327,152.1256,0,0,0,0,100,0),
|
||||
(@PATH,4,-345.9421,-4177.107,152.2871,0,0,0,0,100,0),
|
||||
(@PATH,5,-346.2449,-4195.276,152.2244,0,0,0,0,100,0),
|
||||
(@PATH,6,-345.7937,-4206.436,152.1899,0,0,0,0,100,0),
|
||||
(@PATH,7,-341.1774,-4208.535,152.0649,0,0,0,0,100,0),
|
||||
(@PATH,8,-337.7476,-4206.129,152.1899,0,1000,0,0,100,0),
|
||||
(@PATH,9,-341.1774,-4208.535,152.0649,0,0,0,0,100,0),
|
||||
(@PATH,10,-345.7937,-4206.436,152.1899,0,0,0,0,100,0),
|
||||
(@PATH,11,-346.2449,-4195.276,152.2244,0,0,0,0,100,0),
|
||||
(@PATH,12,-345.9421,-4177.107,152.2871,0,0,0,0,100,0),
|
||||
(@PATH,13,-346.6712,-4160.327,152.1256,0,0,0,0,100,0),
|
||||
(@PATH,14,-339.8373,-4147.746,152.1256,0,0,0,0,100,0),
|
||||
(@PATH,15,-333.2237,-4134.225,152.0622,0,0,0,0,100,0),
|
||||
(@PATH,16,-334.7697,-4118.176,152.1513,0,0,0,0,100,0),
|
||||
(@PATH,17,-345.4443,-4114.745,151.9538,0,0,0,0,100,0),
|
||||
(@PATH,18,-358.0292,-4116.998,154.2687,0,0,0,0,100,0),
|
||||
(@PATH,19,-345.4443,-4114.745,151.9538,0,0,0,0,100,0),
|
||||
(@PATH,20,-334.7697,-4118.176,152.1513,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Vilebranch Headhunter Entry: 2641
|
||||
SET @NPC := 93634;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-304.2423,`position_y`=-4087.691,`position_z`=152.2971 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-295.6881,-4087.868,152.4837,0,0,0,0,100,0),
|
||||
(@PATH,2,-284.571,-4085.302,152.14,0,0,0,0,100,0),
|
||||
(@PATH,3,-272.7595,-4092.214,152.5167,0,0,0,0,100,0),
|
||||
(@PATH,4,-284.571,-4085.302,152.14,0,0,0,0,100,0),
|
||||
(@PATH,5,-295.6881,-4087.868,152.4837,0,0,0,0,100,0),
|
||||
(@PATH,6,-304.2423,-4087.691,152.2971,0,0,0,0,100,0),
|
||||
(@PATH,7,-314.2382,-4088.344,152.2971,0,0,0,0,100,0),
|
||||
(@PATH,8,-322.7508,-4087.331,152.5894,0,0,0,0,100,0),
|
||||
(@PATH,9,-331.1907,-4082.108,152.5066,0,0,0,0,100,0),
|
||||
(@PATH,10,-338.1729,-4086.666,153.3141,0,0,0,0,100,0),
|
||||
(@PATH,11,-342.3202,-4093.814,152.2581,0,0,0,0,100,0),
|
||||
(@PATH,12,-338.1729,-4086.666,153.3141,0,0,0,0,100,0),
|
||||
(@PATH,13,-331.1907,-4082.108,152.5066,0,0,0,0,100,0),
|
||||
(@PATH,14,-322.7508,-4087.331,152.5894,0,0,0,0,100,0),
|
||||
(@PATH,15,-314.2382,-4088.344,152.2971,0,0,0,0,100,0),
|
||||
(@PATH,16,-304.2423,-4087.691,152.2971,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Vilebranch Headhunter Entry: 2641
|
||||
SET @NPC := 93755;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-334.7697,`position_y`=-4118.176,`position_z`=152.1513 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-345.4443,-4114.745,151.9538,0,0,0,0,100,0),
|
||||
(@PATH,2,-334.7697,-4118.176,152.1513,0,0,0,0,100,0),
|
||||
(@PATH,3,-333.2237,-4134.225,152.0622,0,0,0,0,100,0),
|
||||
(@PATH,4,-339.8373,-4147.746,152.1256,0,0,0,0,100,0),
|
||||
(@PATH,5,-345.9421,-4177.107,152.2871,0,0,0,0,100,0),
|
||||
(@PATH,6,-346.2449,-4195.276,152.2244,0,0,0,0,100,0),
|
||||
(@PATH,7,-345.7937,-4206.436,152.1899,0,0,0,0,100,0),
|
||||
(@PATH,8,-341.1774,-4208.535,152.0649,0,0,0,0,100,0),
|
||||
(@PATH,9,-337.7476,-4206.129,152.1899,0,3000,0,0,100,0),
|
||||
(@PATH,10,-341.1774,-4208.535,152.0649,0,0,0,0,100,0),
|
||||
(@PATH,11,-345.7937,-4206.436,152.1899,0,0,0,0,100,0),
|
||||
(@PATH,12,-346.2449,-4195.276,152.2244,0,7000,0,0,100,0),
|
||||
(@PATH,13,-345.9421,-4177.107,152.2871,0,0,0,0,100,0),
|
||||
(@PATH,14,-339.8373,-4147.746,152.1256,0,0,0,0,100,0),
|
||||
(@PATH,15,-333.2237,-4134.225,152.0622,0,0,0,0,100,0),
|
||||
(@PATH,16,-334.7697,-4118.176,152.1513,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Green Sludge Entry: 2655
|
||||
SET @NPC := 92995;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=367.4861,`position_y`=-3892.534,`position_z`=103.3926 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,362.0923,-3869.861,106.0149,0,0,0,0,100,0),
|
||||
(@PATH,2,359.729,-3842.23,107.0658,0,0,0,0,100,0),
|
||||
(@PATH,3,362.0923,-3869.861,106.0149,0,0,0,0,100,0),
|
||||
(@PATH,4,367.4861,-3892.534,103.3926,0,0,0,0,100,0),
|
||||
(@PATH,5,388.8041,-3900.64,99.87824,0,0,0,0,100,0),
|
||||
(@PATH,6,399.8027,-3882.644,97.61748,0,0,0,0,100,0),
|
||||
(@PATH,7,390.798,-3860.872,95.97817,0,0,0,0,100,0),
|
||||
(@PATH,8,379.3473,-3843.385,96.72575,0,0,0,0,100,0),
|
||||
(@PATH,9,389.2842,-3825.799,98.92686,0,0,0,0,100,0),
|
||||
(@PATH,10,399.2549,-3789.222,102.3659,0,0,0,0,100,0),
|
||||
(@PATH,11,389.2842,-3825.799,98.92686,0,0,0,0,100,0),
|
||||
(@PATH,12,379.3473,-3843.385,96.72575,0,0,0,0,100,0),
|
||||
(@PATH,13,390.7259,-3860.698,95.98909,0,0,0,0,100,0),
|
||||
(@PATH,14,399.8027,-3882.644,97.61748,0,0,0,0,100,0),
|
||||
(@PATH,15,388.8041,-3900.64,99.87824,0,0,0,0,100,0),
|
||||
(@PATH,16,367.4861,-3892.534,103.3926,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Jade Ooze Entry: 2656
|
||||
SET @NPC := 93068;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=386.5382,`position_y`=-3767.701,`position_z`=103.1262 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,382.7473,-3754.237,102.4903,0,0,0,0,100,0),
|
||||
(@PATH,2,376.4646,-3738.252,105.2092,0,0,0,0,100,0),
|
||||
(@PATH,3,365.8063,-3725.304,105.9001,0,0,0,0,100,0),
|
||||
(@PATH,4,348.4052,-3720.816,105.9374,0,0,0,0,100,0),
|
||||
(@PATH,5,319.9912,-3724.497,106.8615,0,0,0,0,100,0),
|
||||
(@PATH,6,312.3986,-3744.087,106.7072,0,0,0,0,100,0),
|
||||
(@PATH,7,318.8742,-3761.253,106.802,0,0,0,0,100,0),
|
||||
(@PATH,8,343.6207,-3757.014,106.9888,0,0,0,0,100,0),
|
||||
(@PATH,9,318.8742,-3761.253,106.802,0,0,0,0,100,0),
|
||||
(@PATH,10,312.3907,-3744.138,106.7072,0,0,0,0,100,0),
|
||||
(@PATH,11,319.9912,-3724.497,106.8615,0,0,0,0,100,0),
|
||||
(@PATH,12,348.4052,-3720.816,105.9374,0,0,0,0,100,0),
|
||||
(@PATH,13,365.8063,-3725.304,105.9001,0,0,0,0,100,0),
|
||||
(@PATH,14,376.4646,-3738.252,105.2092,0,0,0,0,100,0),
|
||||
(@PATH,15,382.7473,-3754.237,102.4903,0,0,0,0,100,0),
|
||||
(@PATH,16,386.5382,-3767.701,103.1262,0,0,0,0,100,0),
|
||||
(@PATH,17,398.7607,-3775.05,102.3659,0,0,0,0,100,0),
|
||||
(@PATH,18,403.8524,-3788.918,102.2382,0,0,0,0,100,0),
|
||||
(@PATH,19,398.7607,-3775.05,102.3659,0,0,0,0,100,0),
|
||||
(@PATH,20,386.5382,-3767.701,103.1262,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Green Sludge Entry: 2655
|
||||
SET @NPC := 93068;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=353.2792,`position_y`=-3775.147,`position_z`=126.7992 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,337.8778,-3781.475,127.0284,0,0,0,0,100,0),
|
||||
(@PATH,2,348.2281,-3797.657,127.2243,0,0,0,0,100,0),
|
||||
(@PATH,3,337.8778,-3781.475,127.0284,0,0,0,0,100,0),
|
||||
(@PATH,4,353.2792,-3775.147,126.7992,0,0,0,0,100,0),
|
||||
(@PATH,5,360.8041,-3764.615,126.8099,0,0,0,0,100,0),
|
||||
(@PATH,6,384.1081,-3758.339,126.8203,0,0,0,0,100,0),
|
||||
(@PATH,7,398.6287,-3760.762,126.0662,0,0,0,0,100,0),
|
||||
(@PATH,8,421.6737,-3776.188,122.9383,0,0,0,0,100,0),
|
||||
(@PATH,9,439.5612,-3795.414,120.8122,0,0,0,0,100,0),
|
||||
(@PATH,10,416.8036,-3816.887,120.3546,0,0,0,0,100,0),
|
||||
(@PATH,11,400.8517,-3822.608,118.5542,0,0,0,0,100,0),
|
||||
(@PATH,12,381.2686,-3822.9,114.8412,0,0,0,0,100,0),
|
||||
(@PATH,13,372.0157,-3806.465,111.9946,0,0,0,0,100,0),
|
||||
(@PATH,14,363.0406,-3792.427,111.5014,0,0,0,0,100,0),
|
||||
(@PATH,15,374.681,-3774.967,106.5569,0,0,0,0,100,0),
|
||||
(@PATH,16,363.0406,-3792.427,111.5014,0,0,0,0,100,0),
|
||||
(@PATH,17,372.0157,-3806.465,111.9946,0,0,0,0,100,0),
|
||||
(@PATH,18,381.2686,-3822.9,114.8412,0,0,0,0,100,0),
|
||||
(@PATH,19,400.8517,-3822.608,118.5542,0,0,0,0,100,0),
|
||||
(@PATH,20,416.8036,-3816.887,120.3546,0,0,0,0,100,0),
|
||||
(@PATH,21,439.5612,-3795.414,120.8122,0,0,0,0,100,0),
|
||||
(@PATH,22,421.6737,-3776.188,122.9383,0,0,0,0,100,0),
|
||||
(@PATH,23,398.6287,-3760.762,126.0662,0,0,0,0,100,0),
|
||||
(@PATH,24,384.1081,-3758.339,126.8203,0,0,0,0,100,0),
|
||||
(@PATH,25,360.8041,-3764.615,126.8099,0,0,0,0,100,0),
|
||||
(@PATH,26,353.2792,-3775.147,126.7992,0,0,0,0,100,0);
|
||||
|
||||
-- Pathing for Vilebranch Warrior Entry: 4465
|
||||
SET @NPC := 93742;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-300.8814,`position_y`=-4190.363,`position_z`=136.5622 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-299.2402,-4199.432,136.8216,0,0,0,0,100,0),
|
||||
(@PATH,2,-294.703,-4206.721,136.5972,0,0,0,0,100,0),
|
||||
(@PATH,3,-284.916,-4203.682,136.7266,0,0,0,0,100,0),
|
||||
(@PATH,4,-281.4611,-4198.692,136.5716,0,0,0,0,100,0),
|
||||
(@PATH,5,-278.4128,-4187.48,136.5716,0,0,0,0,100,0),
|
||||
(@PATH,6,-279.7527,-4179.343,136.4959,0,0,0,0,100,0),
|
||||
(@PATH,7,-282.9599,-4172.346,136.5655,0,0,0,0,100,0),
|
||||
(@PATH,8,-291.1088,-4159.861,136.5396,0,0,0,0,100,0),
|
||||
(@PATH,9,-296.5112,-4150.362,136.5396,0,0,0,0,100,0),
|
||||
(@PATH,10,-297.4698,-4136.667,136.5396,0,0,0,0,100,0),
|
||||
(@PATH,11,-296.116,-4127.808,136.4748,0,0,0,0,100,0),
|
||||
(@PATH,12,-287.9145,-4123.469,136.6125,0,0,0,0,100,0),
|
||||
(@PATH,13,-276.8211,-4123.947,137.0688,0,0,0,0,100,0),
|
||||
(@PATH,14,-268.0964,-4124.016,135.5265,0,0,0,0,100,0),
|
||||
(@PATH,15,-259.8373,-4124.032,128.8418,0,0,0,0,100,0),
|
||||
(@PATH,16,-253.119,-4123.896,124.6126,0,0,0,0,100,0),
|
||||
(@PATH,17,-245.0412,-4124.756,119.3458,0,0,0,0,100,0),
|
||||
(@PATH,18,-231.2207,-4124.845,117.8142,0,0,0,0,100,0),
|
||||
(@PATH,19,-213.4383,-4132.925,118.0337,0,0,0,0,100,0),
|
||||
(@PATH,20,-231.2207,-4124.845,117.8142,0,0,0,0,100,0),
|
||||
(@PATH,21,-245.0412,-4124.756,119.3458,0,0,0,0,100,0),
|
||||
(@PATH,22,-253.119,-4123.896,124.6126,0,0,0,0,100,0),
|
||||
(@PATH,23,-259.8373,-4124.032,128.8418,0,0,0,0,100,0),
|
||||
(@PATH,24,-268.0964,-4124.016,135.5265,0,0,0,0,100,0),
|
||||
(@PATH,25,-276.8211,-4123.947,137.0688,0,0,0,0,100,0),
|
||||
(@PATH,26,-287.9145,-4123.469,136.6125,0,0,0,0,100,0),
|
||||
(@PATH,27,-296.116,-4127.808,136.4748,0,0,0,0,100,0),
|
||||
(@PATH,28,-297.4698,-4136.667,136.5396,0,0,0,0,100,0),
|
||||
(@PATH,29,-296.5112,-4150.362,136.5396,0,0,0,0,100,0),
|
||||
(@PATH,30,-291.1088,-4159.861,136.5396,0,0,0,0,100,0),
|
||||
(@PATH,31,-282.9599,-4172.346,136.5655,0,0,0,0,100,0),
|
||||
(@PATH,32,-279.7527,-4179.343,136.4959,0,0,0,0,100,0),
|
||||
(@PATH,33,-278.4128,-4187.48,136.5716,0,0,0,0,100,0),
|
||||
(@PATH,34,-281.4611,-4198.692,136.5716,0,0,0,0,100,0),
|
||||
(@PATH,35,-284.916,-4203.682,136.7266,0,0,0,0,100,0),
|
||||
(@PATH,36,-294.703,-4206.721,136.5972,0,0,0,0,100,0),
|
||||
(@PATH,37,-299.2402,-4199.432,136.8216,0,0,0,0,100,0),
|
||||
(@PATH,38,-300.8814,-4190.363,136.5622,0,0,0,0,100,0);
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=6059 AND `text_id`=7211;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (6059,7211);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=6087 AND `text_id`=7241;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (6087,7241);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=6088 AND `text_id`=7242;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (6088,7242);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=6086 AND `text_id`=7240;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (6086,7240);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6059 WHERE `entry`=14731;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6087 WHERE `entry`=14740;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6088 WHERE `entry`=14741;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6086 WHERE `entry`=14739;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (6059,6087,6086) AND `id` IN (0);
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (6059,6087) AND `id` IN (1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(6059,0,5, 'Make this inn your home.',8,65536,0,0,0,0, ''),
|
||||
(6059,1,1, 'Let me browse your goods.',3,128,0,0,0,0, ''),
|
||||
(6087,0,1, 'I would like to buy from you.',3,128,0,0,0,0, ''),
|
||||
(6087,1,3, 'What can you teach me?',5,16,0,0,0,0, ''),
|
||||
(6086,0,1, 'I would like to buy from you.',3,128,0,0,0,0, '');
|
||||
|
||||
22
sql/old/3.3.5a/2012_01_04_06_world_waypoint_data.sql
Normal file
22
sql/old/3.3.5a/2012_01_04_06_world_waypoint_data.sql
Normal file
@@ -0,0 +1,22 @@
|
||||
-- Pathing for King Dred Entry: 27483 "Drak'Tharon Keep"
|
||||
SET @NPC := 127507;
|
||||
SET @PATH := @NPC * 10;
|
||||
UPDATE `creature` SET `spawndist`=0,`MovementType`=2,`position_x`=-544.874,`position_y`=-696.9735,`position_z`=30.29507 WHERE `guid`=@NPC;
|
||||
DELETE FROM `creature_addon` WHERE `guid`=@NPC;
|
||||
INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, '');
|
||||
DELETE FROM `waypoint_data` WHERE `id`=@PATH;
|
||||
INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`orientation`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES
|
||||
(@PATH,1,-529.7952,-711.4729,30.37141,0,1000,0,0,100,0),
|
||||
(@PATH,2,-544.874,-696.9735,30.29507,0,0,0,0,100,0),
|
||||
(@PATH,3,-550.9299,-694.043,30.49649,0,0,0,0,100,0),
|
||||
(@PATH,4,-554.3631,-689.458,30.83389,0,0,0,0,100,0),
|
||||
(@PATH,5,-554.6004,-681.4241,30.67007,0,0,0,0,100,0),
|
||||
(@PATH,6,-550.1124,-674.5519,30.67007,0,0,0,0,100,0),
|
||||
(@PATH,7,-540.9714,-671.0374,30.29507,0,0,0,0,100,0),
|
||||
(@PATH,8,-535.8426,-664.3137,30.29507,0,1000,0,0,100,0),
|
||||
(@PATH,9,-540.9714,-671.0374,30.29507,0,0,0,0,100,0),
|
||||
(@PATH,10,-550.1124,-674.5519,30.67007,0,0,0,0,100,0),
|
||||
(@PATH,11,-554.6004,-681.4241,30.67007,0,0,0,0,100,0),
|
||||
(@PATH,12,-554.3631,-689.458,30.83389,0,0,0,0,100,0),
|
||||
(@PATH,13,-550.9299,-694.043,30.49649,0,0,0,0,100,0),
|
||||
(@PATH,14,-544.874,-696.9735,30.29507,0,0,0,0,100,0);
|
||||
17
sql/old/3.3.5a/2012_01_04_07_world_gossip_menu.sql
Normal file
17
sql/old/3.3.5a/2012_01_04_07_world_gossip_menu.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9918 AND `text_id`=13792;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9918,13792);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9859 AND `text_id`=13650;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9859,13650);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9857 AND `text_id`=13651;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9857,13651);
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10316 WHERE `entry`=33224;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9918 WHERE `entry`=29430;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9859 WHERE `entry`=29434;
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (10316,9857,9917) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(10316,0,0, 'Glad to help, my lady. I''m told you were once the guardian of a fabled sword. Do you know where I might find it?',1,1,10315,0,0,0, ''),
|
||||
(9857,0,0, 'I''m ready - lets get you out of here.',1,1,0,0,0,0, ''),
|
||||
(9917,0,0, 'I am ready to head further into Storm Peaks.',1,1,0,0,0,0, '');
|
||||
164
sql/old/3.3.5a/2012_01_04_08_world_gossip_menu.sql
Normal file
164
sql/old/3.3.5a/2012_01_04_08_world_gossip_menu.sql
Normal file
@@ -0,0 +1,164 @@
|
||||
-- Some Gossip updates
|
||||
UPDATE `creature_template` SET `npcflag`=`npcflag`&~1 WHERE `entry` IN (239,353,658,1215,1233,2079);
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5241 WHERE `entry` IN (22658,32099);
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5124 WHERE `entry` IN (22571,32080);
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5442 WHERE `entry` IN (22628);
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6500 WHERE `entry` IN (22656);
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7499 WHERE `entry` IN (20548);
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9695 WHERE `entry` IN (31210);
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=1632 AND `text_id`=2289;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (1632,2289);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4322 AND `text_id`=5494;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4322,5494);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=2801 AND `text_id`=3494;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (2801,3494);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=2831 AND `text_id`=3523;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (2831,3523);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=1632 WHERE `entry`=1340;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4322 WHERE `entry`=2057;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=2801 WHERE `entry`=1154;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=2831 WHERE `entry`=1156;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (2831) AND `id` IN (0,1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(2831,0,5, 'Make this inn your home.',8,65536,0,0,0,0, ''),
|
||||
(2831,1,1, 'Let me browse your goods.',3,128,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9838 AND `text_id`=13349;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9838,13349);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=10854 AND `text_id`=15066;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10854,15066);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=10147 AND `text_id`=14091;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10147,14091);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9873 AND `text_id`=13690;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9873,13690);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9838 WHERE `entry`=28774;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9832 WHERE `entry`=28776;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10854 WHERE `entry`=36856;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10180 WHERE `entry`=29478;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10147 WHERE `entry`=31136;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9873 WHERE `entry`=28701;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (9838,9873) AND `id` IN (0);
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (9838,9873,10180) AND `id` IN (1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(9838,0,8, 'I want to create a guild crest.',11,524288,0,0,0,0, ''),
|
||||
(9838,1,7, 'How do I form a guild?',10,262144,0,0,0,0, ''),
|
||||
(10180,1,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(9873,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(9873,1,1, 'May I browse your epic gem recipes?',3,128,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=2061 AND `text_id`=2713;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (2061,2713);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5818 AND `text_id`=6991;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5818,6991);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=2061 WHERE `entry`=9563;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5818 WHERE `entry`=14437;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10188 WHERE `entry`=31051;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
-- You must manually add delete statement
|
||||
-- DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (5818) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(5818,0,1, 'Gorzeeki, I wish to make a purchase.',3,128,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8023 AND `text_id`=9899;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8023,9899);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8021 AND `text_id`=9896;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8021,9896);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8021 WHERE `entry`=19679;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (8023,8021,4005) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(8023,0,0, '<Push a random button.>',1,1,8023,0,0,0, ''),
|
||||
(8021,0,1, 'Show me what you have for sale, "Slim."',3,128,0,0,0,0, ''),
|
||||
(4005,0,1, 'I would like to buy from you.',3,128,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4143 AND `text_id`=5136;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4143,5136);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=6229 AND `text_id`=7403;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (6229,7403);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9781 WHERE `entry`=29143;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4143 WHERE `entry`=2857;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6229 WHERE `entry`=7010;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9107 WHERE `entry`=24930;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9108 WHERE `entry`=25081;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9107 WHERE `entry`=24931;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9106 WHERE `entry`=24926;
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4667 WHERE `entry`=906;
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4644 AND `text_id`=5716;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4644,5716);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4045 AND `text_id`=4935;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4045,4935);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=3926 AND `text_id`=4786;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (3926,4786);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4006 AND `text_id`=4862;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4006,4862);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4012 AND `text_id`=4998;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4012,4998);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4185 AND `text_id`=5287;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4185,5287);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4045 WHERE `entry`=2980;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5856 WHERE `entry`=5939;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10181 WHERE `entry`=3079;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (4644,3926,4006) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(4644,0,3, 'I seek further druidic training to have a closer understanding of the Earth Mother''s will.',5,16,0,0,0,0, ''),
|
||||
(3926,0,3, 'I seek training as a druid.',5,16,0,0,0,0, ''),
|
||||
(4006,0,1, 'I would like to buy from you.',3,128,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7369 AND `text_id`=8805;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7369,8805);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7369 WHERE `entry`=17109;
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4486 AND `text_id`=538;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4486,538);
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (4486) AND `id` IN (0,1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(4486,0,3, 'I am interested in mage training.',5,16,0,0,0,0, ''),
|
||||
(4486,1,0, 'I wish to unlearn my talents.',16,16,0,0,0,0, '');
|
||||
|
||||
-- Gossip conditions
|
||||
SET @ID := 4486;
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=@ID;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(14,@ID,538,0,15,8,0,0,0,'','Show gossip text if player is mage');
|
||||
-- Gossip option conditions
|
||||
SET @ID := 4486;
|
||||
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=@ID;
|
||||
INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES
|
||||
(15,@ID,0,0,15,8,0,0,0,'','Show gossip option if player is mage'),
|
||||
(15,@ID,1,0,15,8,0,0,0,'','Show gossip option if player is mage');
|
||||
56
sql/old/3.3.5a/2012_01_04_09_world_gossip_menu.sql
Normal file
56
sql/old/3.3.5a/2012_01_04_09_world_gossip_menu.sql
Normal file
@@ -0,0 +1,56 @@
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=6768 AND `text_id`=6194;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (6768,6194);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8703 AND `text_id`=10948;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8703,10948);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8672 AND `text_id`=10910;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8672,10910);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8673 AND `text_id`=10911;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8673,10911);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8678 AND `text_id`=10916;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8678,10916);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8677 AND `text_id`=10921;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8677,10921);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8677 AND `text_id`=10913;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8677,10913); -- Needs condition of 10 Apexis Shards
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8676 AND `text_id`=10914;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8676,10914);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8704 AND `text_id`=10949;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8704,10949);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8681 AND `text_id`=10927;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8681,10927);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8671 AND `text_id`=10951;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8671,10951);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8680 AND `text_id`=10923;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8680,10923);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6768 WHERE `entry`=13418;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8678 WHERE `entry`=23316;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8681 WHERE `entry`=23233;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8680 WHERE `entry`=23300;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (6768,8703,8672,8673,8677,8676,8704) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(6768,0,1, 'Let me browse your seasonal fare.',3,128,0,0,0,0, ''),
|
||||
(8703,0,0, 'Insert an Apexis Shard, and begin!',1,1,0,0,0,0, ''),
|
||||
(8672,0,0, 'Purchase 1 Unstable Flask of the Beast for the cost of 10 Apexis Shards',1,1,8673,0,0,0, ''), -- Needs condition of 10 Apexis Shards
|
||||
(8673,0,0, 'Use the fel crystalforge to make another purchase.',1,1,8672,0,0,0, ''),
|
||||
(8677,0,0, 'Purchase 1 Unstable Flask of the Sorcerer for the cost of 10 Apexis Shards',1,1,8676,0,0,0, ''), -- Needs condition of 10 Apexis Shards
|
||||
(8676,0,0, 'Use the Bash''ir crystalforge to make another purchase.',1,1,8677,0,0,0, ''),
|
||||
(8704,0,0, 'Insert 35 Apexis Shards, and begin!',1,1,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8689 AND `text_id`=10931;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8689,10931);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8669 AND `text_id`=10938;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8669,10938);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8669 WHERE `entry`=23334;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (8689) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(8689,0,0, 'Place 35 Apexis Shards near the dragon egg to crack it open.',1,1,0,0,0,0, '');
|
||||
131
sql/old/3.3.5a/2012_01_04_10_world_gossip_menu.sql
Normal file
131
sql/old/3.3.5a/2012_01_04_10_world_gossip_menu.sql
Normal file
@@ -0,0 +1,131 @@
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4005 AND `text_id`=4869;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4005,4869);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4005 WHERE `entry`=4731;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (4005) AND `id` IN (1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(4005,1,1, 'I would like to buy from you.',3,128,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=940 AND `text_id`=1513;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (940,1513);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=941 AND `text_id`=1517;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (941,1517);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=940 WHERE `entry`=7607;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=941 WHERE `entry`=7604;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (941) AND `id` IN (1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(941,1,0, 'That''s it! I''m tired of helping you out. It''s time we settled things on the battlefield!',1,1,0,0,0,0, '');
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6944 WHERE `entry`=28621;
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5710 AND `text_id`=6878;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5710,6878);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5711 AND `text_id`=6879;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5711,6879);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5712 AND `text_id`=6880;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5712,6880);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5713 AND `text_id`=6881;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5713,6881);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=3623 WHERE `entry`=11556; -- 3624 in db. possible different gossip depending on faction?
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5710 WHERE `entry`=14354;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (5710,5711,5712,5713) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(5710,0,0, 'Why you little...',1,1,0,0,0,0, ''),
|
||||
(5711,0,0, 'Mark my words, I will catch you, imp. And when I do!',1,1,0,0,0,0, ''),
|
||||
(5712,0,0, 'DIE!',1,1,0,0,0,0, ''),
|
||||
(5713,0,0, 'Prepare to meet your maker.',1,1,0,0,0,0, '');
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8310 AND `text_id`=10373;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8310,10373);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8310 WHERE `entry`=20977;
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8006 AND `text_id`=9871;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8006,9871);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8007 AND `text_id`=9872;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8007,9872);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8036 AND `text_id`=9922;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8036,9922);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8036 AND `text_id`=10045;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8036,10045);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8082 AND `text_id`=9990;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8082,9990);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8038 AND `text_id`=9925;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8038,9925);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7829 AND `text_id`=9579;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7829,9579);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7831 AND `text_id`=9580;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7831,9580);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7840 AND `text_id`=9597;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7840,9597);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=7852 AND `text_id`=9613;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (7852,9613);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8006 WHERE `entry`=19468;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8082 WHERE `entry`=20162;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8038 WHERE `entry`=19840;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=7852 WHERE `entry`=18887;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (8036,8082,7830,7829,7831,7840,7852) AND `id` IN (0);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(8036,0,0, '<Begin emergency shutdown.>',1,1,8036,0,0,0, ''),
|
||||
(8082,0,0, 'I''m as ready as I''ll ever be.',1,1,0,0,0,0, ''),
|
||||
(7830,0,0, 'Taretha cannot see you, Thrall.',1,1,7829,0,0,0, ''),
|
||||
(7829,0,0, 'The situation is rather complicated, Thrall. It would be best for you to head into the mountains now, before more of Blackmoore''s men show up. We''ll make sure Taretha is safe.',1,1,7831,0,0,0, ''),
|
||||
(7831,0,0, 'Tarren Mill.',1,1,0,0,0,0, ''),
|
||||
(7840,0,0, 'We''re ready, Thrall.',1,1,0,0,0,0, ''),
|
||||
(7852,0,0, 'We''ll get you out, Taretha. Don''t worry. I doubt the wizard would wander too far away.',1,1,0,0,0,0, '');
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
UPDATE `gossip_menu_option` SET `action_menu_id`=7829 WHERE `menu_id`=7830 AND `id`=0;
|
||||
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9185 AND `text_id`=12475;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9185,12475);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=9248 AND `text_id`=12556;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9248,12556);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9185 WHERE `entry`=25381;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9248 WHERE `entry`=26158;
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5232 AND `text_id`=6250;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5232,6250);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=6813 AND `text_id`=8139;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (6813,8139);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5232 WHERE `entry`=13445;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6813 WHERE `entry`=15760;
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=6944 WHERE `entry`=6026;
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=10171 AND `text_id`=14115;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10171,14115);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10171 WHERE `entry`=32301;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (10026) AND `id` IN (1);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(10026,1,0, 'Take me to the ship.',1,1,0,0,0,0, '');
|
||||
223
sql/old/3.3.5a/2012_01_04_11_world_gossip_menu.sql
Normal file
223
sql/old/3.3.5a/2012_01_04_11_world_gossip_menu.sql
Normal file
@@ -0,0 +1,223 @@
|
||||
-- Gossip Menu insert from sniff
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=341 AND `text_id`=820;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (341,820);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=1041 AND `text_id`=1123;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (1041,1123);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=643 AND `text_id`=1203;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (643,1203);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=645 AND `text_id`=1206;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (645,1206);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=648 AND `text_id`=1208;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (648,1208);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=657 AND `text_id`=1221;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (657,1221);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=660 AND `text_id`=1226;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (660,1226);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=682 AND `text_id`=1232;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (682,1232);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=683 AND `text_id`=1233;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (683,1233);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=692 AND `text_id`=1242;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (692,1242);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=693 AND `text_id`=1243;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (693,1243);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=698 AND `text_id`=1249;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (698,1249);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=705 AND `text_id`=1257;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (705,1257);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=706 AND `text_id`=1258;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (706,1258);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=10392 AND `text_id`=1259;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10392,1259);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=708 AND `text_id`=1260;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (708,1260);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=2943 AND `text_id`=3657;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (2943,3657);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4469 AND `text_id`=3977;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4469,3977);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4470 AND `text_id`=3977;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4470,3977);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4471 AND `text_id`=3977;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4471,3977);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4466 AND `text_id`=4434;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4466,4434);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4467 AND `text_id`=4434;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4467,4434);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4468 AND `text_id`=4434;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4468,4434);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=12537 AND `text_id`=4437;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (12537,4437);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4508 AND `text_id`=4783;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4508,4783);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4502 AND `text_id`=4837;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4502,4837);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5061 AND `text_id`=4837;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5061,4837);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4472 AND `text_id`=5000;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4472,5000);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4473 AND `text_id`=5000;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4473,5000);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4474 AND `text_id`=5000;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4474,5000);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4201 AND `text_id`=5016;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4201,5016);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4112 AND `text_id`=5019;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4112,5019);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4139 AND `text_id`=5124;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4139,5124);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4146 AND `text_id`=5147;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4146,5147);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4161 AND `text_id`=5207;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4161,5207);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4173 AND `text_id`=5260;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4173,5260);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4203 AND `text_id`=5320;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4203,5320);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4262 AND `text_id`=5416;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4262,5416);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4344 AND `text_id`=5519;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4344,5519);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4353 AND `text_id`=5561;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4353,5561);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4482 AND `text_id`=5721;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4482,5721);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4475 AND `text_id`=5721;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4475,5721);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4481 AND `text_id`=5721;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4481,5721);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4504 AND `text_id`=5722;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4504,5722);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4505 AND `text_id`=5722;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4505,5722);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4503 AND `text_id`=5722;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4503,5722);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=4941 AND `text_id`=5994;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (4941,5994);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5641 AND `text_id`=6755;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5641,6755);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=5849 AND `text_id`=7011;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (5849,7011);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8110 AND `text_id`=10040;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8110,10040);
|
||||
DELETE FROM `gossip_menu` WHERE `entry`=8631 AND `text_id`=10821;
|
||||
INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (8631,10821);
|
||||
|
||||
-- Creature Gossip_menu_id Update from sniff
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=341 WHERE `entry`=3628;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=581 WHERE `entry`=5511;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=645 WHERE `entry`=5493;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=648 WHERE `entry`=1292;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=657 WHERE `entry`=2327;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=660 WHERE `entry`=5513;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=681 WHERE `entry`=1312;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=681 WHERE `entry`=1315;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=681 WHERE `entry`=1314;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=681 WHERE `entry`=1307;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=681 WHERE `entry`=1313;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=681 WHERE `entry`=1309;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=681 WHERE `entry`=1310;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=682 WHERE `entry`=1304;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=683 WHERE `entry`=5503;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=684 WHERE `entry`=1347;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=685 WHERE `entry`=5494;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=687 WHERE `entry`=1298;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=688 WHERE `entry`=1319;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=688 WHERE `entry`=1323;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=688 WHERE `entry`=1333;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=689 WHERE `entry`=1341;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=689 WHERE `entry`=1339;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=690 WHERE `entry`=1324;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=691 WHERE `entry`=1350;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=691 WHERE `entry`=1349;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=692 WHERE `entry`=1351;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=693 WHERE `entry`=5510;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=693 WHERE `entry`=5512;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=693 WHERE `entry`=5509;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=693 WHERE `entry`=5514;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=698 WHERE `entry`=5519;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=701 WHERE `entry`=1305;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=703 WHERE `entry`=1303;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=703 WHERE `entry`=1302;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=705 WHERE `entry`=1326;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=706 WHERE `entry`=1325;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=708 WHERE `entry`=4974;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=1041 WHERE `entry`=7232;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=2745 WHERE `entry`=957;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=2943 WHERE `entry`=10782;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4112 WHERE `entry`=5500;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4139 WHERE `entry`=11026;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4146 WHERE `entry`=5518;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4161 WHERE `entry`=1317;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4173 WHERE `entry`=11096;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4201 WHERE `entry`=5499;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4203 WHERE `entry`=5564;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4262 WHERE `entry`=1300;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4344 WHERE `entry`=5567;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4353 WHERE `entry`=1346;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4466 WHERE `entry`=376;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4467 WHERE `entry`=5489;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4468 WHERE `entry`=5484;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4469 WHERE `entry`=5491;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4470 WHERE `entry`=5492;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4471 WHERE `entry`=928;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4472 WHERE `entry`=5517;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4473 WHERE `entry`=5516;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4474 WHERE `entry`=5515;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4475 WHERE `entry`=914;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4481 WHERE `entry`=5480;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4482 WHERE `entry`=5479;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4502 WHERE `entry`=918;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4503 WHERE `entry`=461;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4504 WHERE `entry`=5496;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4505 WHERE `entry`=5495;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4508 WHERE `entry`=5504;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4783 WHERE `entry`=2879;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=4941 WHERE `entry`=332;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5061 WHERE `entry`=13283;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5641 WHERE `entry`=6122;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=5849 WHERE `entry`=14450;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8110 WHERE `entry`=20407;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=8631 WHERE `entry`=23050;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9729 WHERE `entry`=28650;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=9823 WHERE `entry`=29725;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10392 WHERE `entry`=5193;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10606 WHERE `entry`=34998;
|
||||
UPDATE `creature_template` SET `gossip_menu_id`=10606 WHERE `entry`=34997;
|
||||
|
||||
-- Creature Gossip_menu_option Update from sniff
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (341,581,645,648,657,660,682,683,684,687,688,689,690,692,693,698,701,702,703,705,706,4146,4161,4201,4203,4353,9823) AND `id` IN (0);
|
||||
DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (9823) AND `id` IN (4);
|
||||
INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES
|
||||
(341,0,5, 'Make this inn your home.',8,65536,0,0,0,0, ''),
|
||||
(581,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(645,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(648,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(657,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(660,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(682,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(683,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(684,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(687,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(688,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(689,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(690,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(692,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(693,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(698,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(701,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(702,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(703,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(705,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(706,0,1, 'I want to browse your goods.',3,128,0,0,0,0, ''),
|
||||
(4146,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(4161,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(4201,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(4203,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(4353,0,3, 'Train me.',5,16,0,0,0,0, ''),
|
||||
(9823,0,0, 'I''ve lost my key to Scholomance.',1,1,0,0,0,0, ''),
|
||||
(9823,4,0, 'I''ve lost my Shadowforge Key.',1,1,0,0,0,0, '');
|
||||
|
||||
-- Insert npc_text from sniff
|
||||
DELETE FROM `npc_text` WHERE `ID` IN (1123);
|
||||
INSERT INTO `npc_text` (`ID`,`prob0`,`text0_0`,`text0_1`,`lang0`,`em0_0`,`em0_1`,`em0_2`,`em0_3`,`em0_4`,`em0_5`,`prob1`,`text1_0`,`text1_1`,`lang1`,`em1_0`,`em1_1`,`em1_2`,`em1_3`,`em1_4`,`em1_5`,`prob2`,`text2_0`,`text2_1`,`lang2`,`em2_0`,`em2_1`,`em2_2`,`em2_3`,`em2_4`,`em2_5`,`prob3`,`text3_0`,`text3_1`,`lang3`,`em3_0`,`em3_1`,`em3_2`,`em3_3`,`em3_4`,`em3_5`,`prob4`,`text4_0`,`text4_1`,`lang4`,`em4_0`,`em4_1`,`em4_2`,`em4_3`,`em4_4`,`em4_5`,`prob5`,`text5_0`,`text5_1`,`lang5`,`em5_0`,`em5_1`,`em5_2`,`em5_3`,`em5_4`,`em5_5`,`prob6`,`text6_0`,`text6_1`,`lang6`,`em6_0`,`em6_1`,`em6_2`,`em6_3`,`em6_4`,`em6_5`,`prob7`,`text7_0`,`text7_1`,`lang7`,`em7_0`,`em7_1`,`em7_2`,`em7_3`,`em7_4`,`em7_5`,`WDBVerified`) VALUES
|
||||
(1123,100,'Can''t ye see I''m busy? This had better be good.','',7,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,1);
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user