Skip to content

Commit

Permalink
Update Pack 407 has been released!
Browse files Browse the repository at this point in the history
Update Pack 407, for CMaNGOS  12670 for 3.3.5a, SQL for ScripDev2 3041.

Lots of NPCs, Quests, gossips, items, events and Instances were fixed.
Please, read the CHANGELOG.txt file for list of changes.

Thanks to all the contributors for their reports, fixes and tests.
  • Loading branch information
Grz3s committed Sep 15, 2014
1 parent 609b32a commit 3fc6a28
Show file tree
Hide file tree
Showing 7 changed files with 16,547 additions and 7 deletions.
72 changes: 72 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,75 @@
======================================================================
Update pack 407, for CMaNGOS 12735 for 3.3.5a, SQL for ScriptDev2 3041
======================================================================
Main changes:
* Shadowmoon Valley - almost finished (spawns/movements/etc) @ Grz3s
* Druids flight form chain -- quest chain completed (all scripts/movements/events etc) @Grz3s
* Lots of spawns/gossips/waypoints/scripts/events added.
* Fixes from forum.
* Achievements
* New "Buddy" system - implemented @ Grz3s
* Creature_movement(template) prepared for unnused colums drop - completed @ Grz3s
* First part of "New STATS system" - implemented @ Grz3s
* Missing vehicle data @ Xfurry (based on YTDB)
* Instances: 100% redone and completed by @ X-Savior
-- Tempest Keep: The Arcatraz
-- Tempest Keep: The Botanica
-- Tempest Keep: The Mechanar
-- Hellfire Citadel: Hellfire Ramparts
* Raid and dungeon updates by @ Xfurry
-- Ulduar
-- Sunwell Plateau
-- Ruby Sanctum
-- Zul'Farrak
-- Karazhan (Chess event)
-- Culling of Stratholme (Intro event)
* Quests List:
-- Demonic Crystal Prisons(q.10528) -H -A
-- The Attack!(q.434) -A
-- Challenge to the Black Flight(q.11165)
-- Vyletongue Corruption (q.7029) -H (q.7041) -A
-- Counting Out Time (q.4973)
-- Laying Waste to the Unwanted(q.10078) -A
-- Burn It Up... For the Horde!(q.10087) -H
-- Mission: Gateways Murketh and Shaadraz(q.10129) -H
-- Mission: The Murketh and Shaadraz Gateways(q.10146) -A
-- Zuluhed the Whacked(q.10866) -H -A
-- Ally of the Netherwing(q.10870) -A -H
-- The Soul Cannon of Reth'hedron (q.11089) -H -A
-- The Great Murkblood Revolt (q.11081) -H -A
-- Peace at Last (q.11152)
-- Raptor Horns(q.865)
-- All Clear!(q.10436)
-- Netherwing rep. quest chain - 90% completed (all racess . quests needs core support)
-- druids flight form chain -- quest chain completed:
-- quest 10961 'The Ward of Wakening' - Druid
-- quest 10964 'Waking the Sleeper' - Druid
-- quest 10987 'To Catch A Sparrowhawk' - Druid
-- quest 10988 'The Raven Stones' - Druid
-- quest 10988 'The Eagle's Essence' - Druid
-- quest 10991 'The Falcon's Essence' - Druid
-- quest 10992 'The Hawk's Essence' - Druid
-- quest 10994 'Chasing the Moonstone' - Druid
-- Minshina's Skull(q.808)
-- Report to Orgnil(q.823)
-- Dark Storms(q.806) - update (now completed)
-- An Apexis Relic(q.11058, q.11080)
-- Summon Ahune (q.11691)
-- Call the Headless Horseman (q.11405)
-- Gerenzo's Orders (q.1090)
-- One Shot. One Kill. (q.5713)
-- Death From Below (q.667)
-- All Is Well That Ends Well (q.13631, q.13819)
-- Slim Pickings (q.12075)
-- A Carver and a Croaker (q.11476)
-- Vyletongue Corruption (q.7041)
-- The Thane of Voldrune (q.12255, q.12259)
-- Take Down Tethyr! (q.11198)
-- Rise, Obsidion! (q.3566)
-- The Exorcism of Colonel Jules (q.10935)
-- The Cipher of Damnation - Ar'tor's Charge (q.10540) -H -A


======================================================================
Update pack 406, for CMaNGOS 12444 for 3.3.5a, SQL for ScriptDev2 2857
======================================================================
Expand Down
7 changes: 7 additions & 0 deletions Current_Release/InstallFullUDB.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,13 @@ $MYSQL_COMMAND < ${ADDITIONAL_PATH}Updates/0.12.2_additions/406_corepatch_mangos
$MYSQL_COMMAND < ${ADDITIONAL_PATH}Updates/0.12.2_additions/406_updatepack_mangos.sql
[[ $? != 0 ]] && exit 1

## 407
echo "Process Updatepack 407"
$MYSQL_COMMAND < ${ADDITIONAL_PATH}Updates/0.12.2_additions/407_corepatch_mangos_12445_to_12670.sql
[[ $? != 0 ]] && exit 1
$MYSQL_COMMAND < ${ADDITIONAL_PATH}Updates/0.12.2_additions/407_updatepack_mangos.sql
[[ $? != 0 ]] && exit 1

LAST_CORE_REV="12444"
LAST_SD2_REV="2857"
# process future release folders
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
-- 12487
ALTER TABLE character_db_version CHANGE COLUMN required_12339_02_characters_calendar_invites required_12487_01_characters_characters bit;

UPDATE characters SET drunk = (drunk / 256) & 0xFF;

ALTER TABLE characters CHANGE drunk drunk tinyint(3) unsigned NOT NULL DEFAULT '0';

-- 12562
ALTER TABLE character_db_version CHANGE COLUMN required_12487_01_characters_characters required_12562_01_characters_various_tables bit;

ALTER TABLE character_queststatus_daily DROP INDEX idx_guid;
ALTER TABLE character_queststatus_monthly DROP INDEX idx_guid;
ALTER TABLE character_queststatus_weekly DROP INDEX idx_guid;
ALTER TABLE character_social DROP INDEX friend;
ALTER TABLE character_social DROP INDEX guid;
ALTER TABLE character_talent DROP INDEX guid_key;
ALTER TABLE guild_bank_eventlog DROP INDEX guildid_key;
ALTER TABLE guild_bank_item DROP INDEX guildid_key;
ALTER TABLE guild_bank_right DROP INDEX guildid_key;
ALTER TABLE guild_bank_tab DROP INDEX guildid_key;
ALTER TABLE guild_member DROP INDEX guildid_key;
Loading

0 comments on commit 3fc6a28

Please sign in to comment.