diff options
1472 files changed, 6353 insertions, 2668 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 905d92996bf..56ea65e5d7a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/PreLoad.cmake b/PreLoad.cmake index 55b8a9dad80..f7cf5a1ebe6 100644 --- a/PreLoad.cmake +++ b/PreLoad.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/README.md b/README.md index 71c78873b03..1cf137ea9f9 100644 --- a/README.md +++ b/README.md @@ -32,15 +32,13 @@ website at [TrinityCore.org](http://www.trinitycore.org). + CMake ≥ 2.8.11.2 / 2.8.9 (Windows / Linux) + OpenSSL ≥ 1.0.0 + GCC ≥ 4.7.2 (Linux only) -+ MS Visual Studio ≥ 12 (2013) (Windows only) ++ MS Visual Studio ≥ 12 (2013 Update 3) (Windows only) ## Install -Detailed installation guides are available in the wiki for -[Windows](http://collab.kpsn.org/display/tc/Win), -[Linux](http://collab.kpsn.org/display/tc/Linux) and -[Mac OSX](http://collab.kpsn.org/display/tc/Mac). +Detailed installation guides are available in the [wiki](http://collab.kpsn.org/display/tc/Installation+Guide) for +Windows, Linux and Mac OSX. ## Reporting issues diff --git a/cmake/compiler/msvc/settings.cmake b/cmake/compiler/msvc/settings.cmake index 412452f3b82..0924a235aea 100644 --- a/cmake/compiler/msvc/settings.cmake +++ b/cmake/compiler/msvc/settings.cmake @@ -1,10 +1,10 @@ # set up output paths for executable binaries (.exe-files, and .dll-files on DLL-capable platforms) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) -set(MSVC_EXPECTED_VERSION 18.0) +set(MSVC_EXPECTED_VERSION 18.0.30723) # MSVC Update 3 if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS MSVC_EXPECTED_VERSION) - message(FATAL_ERROR "MSVC: TrinityCore requires version ${MSVC_EXPECTED_VERSION} (MSVC 2013) to build but found ${CMAKE_CXX_COMPILER_VERSION}") + message(FATAL_ERROR "MSVC: TrinityCore requires version ${MSVC_EXPECTED_VERSION} (MSVC 2013 Update 3) to build but found ${CMAKE_CXX_COMPILER_VERSION}") endif() # set up output paths ofr static libraries etc (commented out - shown here as an example only) diff --git a/cmake/genrev.cmake b/cmake/genrev.cmake index 26c26d8ad62..c34e9d75973 100644 --- a/cmake/genrev.cmake +++ b/cmake/genrev.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/cmake/macros/CheckBuildDir.cmake b/cmake/macros/CheckBuildDir.cmake index aff1caf362d..9a89de0b29d 100644 --- a/cmake/macros/CheckBuildDir.cmake +++ b/cmake/macros/CheckBuildDir.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/cmake/macros/FindGit.cmake b/cmake/macros/FindGit.cmake index d8b82cb04fe..f5b0c6a9a3b 100644 --- a/cmake/macros/FindGit.cmake +++ b/cmake/macros/FindGit.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/cmake/options.cmake b/cmake/options.cmake index 3002658a729..e55ae7e6041 100644 --- a/cmake/options.cmake +++ b/cmake/options.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/contrib/conf_merge/tc-conf-merger.pl b/contrib/conf_merge/tc-conf-merger.pl index bc0dd44e689..074689979af 100644 --- a/contrib/conf_merge/tc-conf-merger.pl +++ b/contrib/conf_merge/tc-conf-merger.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl -w -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # Author: leak # Date: 2010-12-06 # Note: Based on conf file format of rev 10507 diff --git a/dep/CMakeLists.txt b/dep/CMakeLists.txt index 9d186c796f5..1341696d57f 100644 --- a/dep/CMakeLists.txt +++ b/dep/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/bzip2/CMakeLists.txt b/dep/bzip2/CMakeLists.txt index 1a7082c42d8..37f44be7686 100644 --- a/dep/bzip2/CMakeLists.txt +++ b/dep/bzip2/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/g3dlite/CMakeLists.txt b/dep/g3dlite/CMakeLists.txt index 1914e66f7c4..67564ee699a 100644 --- a/dep/g3dlite/CMakeLists.txt +++ b/dep/g3dlite/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/gsoap/CMakeLists.txt b/dep/gsoap/CMakeLists.txt index 0897b60fa72..e339ccb00ea 100644 --- a/dep/gsoap/CMakeLists.txt +++ b/dep/gsoap/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/jemalloc/CMakeLists.txt b/dep/jemalloc/CMakeLists.txt index c197c45cf75..db3c18dbb02 100644 --- a/dep/jemalloc/CMakeLists.txt +++ b/dep/jemalloc/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/recastnavigation/Detour/CMakeLists.txt b/dep/recastnavigation/Detour/CMakeLists.txt index 5f3542e96b9..9aebeacd892 100644 --- a/dep/recastnavigation/Detour/CMakeLists.txt +++ b/dep/recastnavigation/Detour/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/recastnavigation/Recast/CMakeLists.txt b/dep/recastnavigation/Recast/CMakeLists.txt index f4869bf8773..ab6772aa031 100644 --- a/dep/recastnavigation/Recast/CMakeLists.txt +++ b/dep/recastnavigation/Recast/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/zlib/CMakeLists.txt b/dep/zlib/CMakeLists.txt index 013917fbea7..d91b2c202b7 100644 --- a/dep/zlib/CMakeLists.txt +++ b/dep/zlib/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/dep/zmqpp/CMakeLists.txt b/dep/zmqpp/CMakeLists.txt index 6b6bd35b6e7..4166d4fd8b3 100644 --- a/dep/zmqpp/CMakeLists.txt +++ b/dep/zmqpp/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/doc/UnixInstall.txt b/doc/UnixInstall.txt index 043994c856f..171b30873e6 100644 --- a/doc/UnixInstall.txt +++ b/doc/UnixInstall.txt @@ -1,5 +1,5 @@ = TrinityCore -- Linux installation = -Copyright (C) 2008-2014 TrinityCore (http://www.trinitycore.org) +Copyright (C) 2008-2015 TrinityCore (http://www.trinitycore.org/) ========================================================= WARNING: THIS DOCUMENTATION IS NOT ALWAYS UP TO DATE. diff --git a/revision.h.in.cmake b/revision.h.in.cmake index 895575c1a6b..f50c8022062 100644 --- a/revision.h.in.cmake +++ b/revision.h.in.cmake @@ -4,7 +4,7 @@ #define _DATE "@rev_date@" #define _BRANCH "@rev_branch@" #define VER_COMPANYNAME_STR "TrinityCore Developers" - #define VER_LEGALCOPYRIGHT_STR "(c)2008-2014 TrinityCore" + #define VER_LEGALCOPYRIGHT_STR "(c)2008-2015 TrinityCore" #define VER_FILEVERSION 0,0,0 #define VER_FILEVERSION_STR "@rev_hash@ @rev_date@ (@rev_branch@ branch)" #define VER_PRODUCTVERSION VER_FILEVERSION diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index ae2d2b3f7a3..4fcc88a3a7d 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -408,7 +408,7 @@ DROP TABLE IF EXISTS `character_achievement_progress`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_achievement_progress` ( `guid` bigint(20) unsigned NOT NULL, - `criteria` smallint(5) unsigned NOT NULL, + `criteria` int(10) unsigned NOT NULL, `counter` bigint(20) unsigned NOT NULL, `date` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`criteria`) @@ -1818,7 +1818,7 @@ DROP TABLE IF EXISTS `guild_achievement_progress`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `guild_achievement_progress` ( `guildId` bigint(20) unsigned NOT NULL, - `criteria` smallint(5) unsigned NOT NULL, + `criteria` int(10) unsigned NOT NULL, `counter` bigint(20) unsigned NOT NULL, `date` int(10) unsigned NOT NULL DEFAULT '0', `completedGuid` bigint(20) unsigned NOT NULL DEFAULT '0', diff --git a/sql/updates/characters/2014_12_31_00_characters.sql b/sql/updates/characters/2014_12_31_00_characters.sql new file mode 100644 index 00000000000..2c7ec570d3d --- /dev/null +++ b/sql/updates/characters/2014_12_31_00_characters.sql @@ -0,0 +1,3608 @@ +RENAME TABLE `character_achievement_progress` TO `character_achievement_progress_old`; +ALTER TABLE `character_achievement_progress_old` ADD `new_criteria_id` int(10) unsigned; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=`criteria`; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=34; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=35; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=36; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=37; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=38; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=39; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=40; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=41; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=73; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17411 WHERE `criteria`=100; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5896 WHERE `criteria`=102; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5899 WHERE `criteria`=140; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5896 WHERE `criteria`=166; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=168; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5896 WHERE `criteria`=176; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5899 WHERE `criteria`=177; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5377 WHERE `criteria`=189; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5381 WHERE `criteria`=195; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5443 WHERE `criteria`=199; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5459 WHERE `criteria`=203; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5463 WHERE `criteria`=209; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5467 WHERE `criteria`=211; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5452 WHERE `criteria`=215; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5455 WHERE `criteria`=218; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5899 WHERE `criteria`=221; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5897 WHERE `criteria`=222; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5897 WHERE `criteria`=223; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17411 WHERE `criteria`=224; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17411 WHERE `criteria`=225; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=230; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=231; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=232; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=233; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=234; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=236; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=306 WHERE `criteria`=307; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=329; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=330; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=331; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=332; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=333; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=334; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=335; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=336; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=337; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5100 WHERE `criteria`=351; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5110 WHERE `criteria`=357; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5104 WHERE `criteria`=365; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5120 WHERE `criteria`=372; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5122 WHERE `criteria`=379; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5123 WHERE `criteria`=381; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=382; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=439 WHERE `criteria`=416; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=440 WHERE `criteria`=417; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=438 WHERE `criteria`=418; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=436 WHERE `criteria`=420; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=473; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=474; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=475; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=476; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5137 WHERE `criteria`=520; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=521; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=523; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18522 WHERE `criteria`=524; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=19213 WHERE `criteria`=525; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18524 WHERE `criteria`=526; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18525 WHERE `criteria`=527; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=24413 WHERE `criteria`=528; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18527 WHERE `criteria`=529; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18529 WHERE `criteria`=530; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18528 WHERE `criteria`=531; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=24977 WHERE `criteria`=532; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18531 WHERE `criteria`=538; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3265 WHERE `criteria`=539; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18532 WHERE `criteria`=540; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18533 WHERE `criteria`=541; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3266 WHERE `criteria`=542; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18534 WHERE `criteria`=544; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18536 WHERE `criteria`=552; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3239 WHERE `criteria`=555; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3240 WHERE `criteria`=556; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3243 WHERE `criteria`=557; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3241 WHERE `criteria`=558; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3242 WHERE `criteria`=559; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3245 WHERE `criteria`=560; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3246 WHERE `criteria`=561; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3247 WHERE `criteria`=562; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3248 WHERE `criteria`=563; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3249 WHERE `criteria`=564; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3250 WHERE `criteria`=565; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3251 WHERE `criteria`=566; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3252 WHERE `criteria`=567; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3253 WHERE `criteria`=568; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3244 WHERE `criteria`=573; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3273 WHERE `criteria`=594; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3272 WHERE `criteria`=595; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3274 WHERE `criteria`=596; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18891 WHERE `criteria`=598; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3254 WHERE `criteria`=599; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3256 WHERE `criteria`=601; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3257 WHERE `criteria`=602; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3258 WHERE `criteria`=603; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18537 WHERE `criteria`=604; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3259 WHERE `criteria`=605; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3260 WHERE `criteria`=606; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3261 WHERE `criteria`=607; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5739 WHERE `criteria`=608; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=616; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=728 WHERE `criteria`=708; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=729 WHERE `criteria`=709; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=732 WHERE `criteria`=712; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=733 WHERE `criteria`=713; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=736 WHERE `criteria`=722; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=739 WHERE `criteria`=725; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=740 WHERE `criteria`=726; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=707 WHERE `criteria`=727; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=710 WHERE `criteria`=730; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=711 WHERE `criteria`=731; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=714 WHERE `criteria`=734; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=721 WHERE `criteria`=735; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=723 WHERE `criteria`=737; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=724 WHERE `criteria`=738; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4617 WHERE `criteria`=741; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4494 WHERE `criteria`=742; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8146 WHERE `criteria`=746; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2002 WHERE `criteria`=752; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=977; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=978; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=979; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=980; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=981; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=984; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=985; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5318 WHERE `criteria`=986; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5333 WHERE `criteria`=987; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5319 WHERE `criteria`=988; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5334 WHERE `criteria`=989; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5320 WHERE `criteria`=990; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5335 WHERE `criteria`=991; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5322 WHERE `criteria`=1003; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5336 WHERE `criteria`=1009; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=306 WHERE `criteria`=1829; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=306 WHERE `criteria`=1830; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=1870; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=1871; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=1873; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4760 WHERE `criteria`=1875; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4756 WHERE `criteria`=1877; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4761 WHERE `criteria`=1878; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4755 WHERE `criteria`=1879; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5337 WHERE `criteria`=1880; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4757 WHERE `criteria`=1881; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5321 WHERE `criteria`=1882; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4758 WHERE `criteria`=1883; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4763 WHERE `criteria`=1884; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5706 WHERE `criteria`=1886; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5702 WHERE `criteria`=1891; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20777 WHERE `criteria`=1902; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2011 WHERE `criteria`=2014; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2011 WHERE `criteria`=2017; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4737 WHERE `criteria`=2022; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5328 WHERE `criteria`=2032; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4738 WHERE `criteria`=2035; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4739 WHERE `criteria`=2036; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4740 WHERE `criteria`=2037; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5436 WHERE `criteria`=2041; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4750 WHERE `criteria`=2051; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4766 WHERE `criteria`=2052; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4767 WHERE `criteria`=2053; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2204 WHERE `criteria`=2211; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2232; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2233; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2234; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2235; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2236; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=2239; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4741 WHERE `criteria`=2415; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4742 WHERE `criteria`=2416; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4743 WHERE `criteria`=2417; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=2428; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=2429; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3354; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4092 WHERE `criteria`=3355; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4091 WHERE `criteria`=3361; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=3381; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=3382; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=3383; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3431 WHERE `criteria`=3416; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3506; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3507; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3510; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3511; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3512; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4092 WHERE `criteria`=3513; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8885 WHERE `criteria`=3527; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18619 WHERE `criteria`=3542; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5448 WHERE `criteria`=3574; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5439 WHERE `criteria`=3578; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5447 WHERE `criteria`=3582; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3912 WHERE `criteria`=3583; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8889 WHERE `criteria`=3594; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3629 WHERE `criteria`=3680; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5111 WHERE `criteria`=3834; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6403 WHERE `criteria`=3837; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5133 WHERE `criteria`=3841; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6410 WHERE `criteria`=3844; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5135 WHERE `criteria`=3847; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3623 WHERE `criteria`=3865; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3585 WHERE `criteria`=3913; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3586 WHERE `criteria`=3914; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4225 WHERE `criteria`=4219; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3268 WHERE `criteria`=4439; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5898 WHERE `criteria`=4501; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5898 WHERE `criteria`=4502; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=4985; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=75 WHERE `criteria`=5040; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=78 WHERE `criteria`=5041; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=74 WHERE `criteria`=5042; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=76 WHERE `criteria`=5044; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2260 WHERE `criteria`=5079; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6430 WHERE `criteria`=5101; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6403 WHERE `criteria`=5103; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6426 WHERE `criteria`=5112; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6428 WHERE `criteria`=5113; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6425 WHERE `criteria`=5114; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6406 WHERE `criteria`=5127; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6410 WHERE `criteria`=5130; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6409 WHERE `criteria`=5131; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6405 WHERE `criteria`=5132; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=5139; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=5223; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=5224; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=5227; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=5240; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=5241; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=5242; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=5243; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=5244; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=5249; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=5250; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=5251; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=5252; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=5253; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=5254; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=5255; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=5256; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=5257; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2024 WHERE `criteria`=5306; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5500 WHERE `criteria`=5507; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5499 WHERE `criteria`=5508; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5501 WHERE `criteria`=5509; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5502 WHERE `criteria`=5510; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5503 WHERE `criteria`=5511; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5536 WHERE `criteria`=5544; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5537 WHERE `criteria`=5545; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5538 WHERE `criteria`=5546; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5539 WHERE `criteria`=5547; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5540 WHERE `criteria`=5548; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=5562; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5380 WHERE `criteria`=5621; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=845 WHERE `criteria`=5662; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5278 WHERE `criteria`=5680; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5137 WHERE `criteria`=5692; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=5711; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=5712; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=5713; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=5714; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=5715; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=5717; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=5719; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8594 WHERE `criteria`=5731; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8593 WHERE `criteria`=5732; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8591 WHERE `criteria`=5733; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5739 WHERE `criteria`=5734; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8589 WHERE `criteria`=5736; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8590 WHERE `criteria`=5737; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8587 WHERE `criteria`=5738; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5729 WHERE `criteria`=5740; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=104 WHERE `criteria`=5741; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5898 WHERE `criteria`=5746; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5756; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5757; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5758; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5759; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5760; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5761; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=847 WHERE `criteria`=5763; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5831 WHERE `criteria`=5818; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12635 WHERE `criteria`=6159; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6181 WHERE `criteria`=6174; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8705 WHERE `criteria`=6332; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6250 WHERE `criteria`=6342; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8745 WHERE `criteria`=6384; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8744 WHERE `criteria`=6385; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8744 WHERE `criteria`=6395; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8745 WHERE `criteria`=6396; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5124 WHERE `criteria`=6397; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=6413; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5117 WHERE `criteria`=6416; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9178 WHERE `criteria`=6440; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6450 WHERE `criteria`=6600; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11960 WHERE `criteria`=6608; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11961 WHERE `criteria`=6613; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6751; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6752; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6753; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6754; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6755; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1832 WHERE `criteria`=6758; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6790; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6791; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6792; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6793; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6794; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6795; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6796; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6797; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6798; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5613 WHERE `criteria`=6855; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5138 WHERE `criteria`=7184; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7266; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7267; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7268; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7269; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7270; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6436 WHERE `criteria`=7365; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7404; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7405; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7406; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7407; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9720 WHERE `criteria`=7415; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9719 WHERE `criteria`=7418; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=7550; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=7551; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=7552; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7152 WHERE `criteria`=7608; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7165 WHERE `criteria`=7609; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7654 WHERE `criteria`=7642; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9758 WHERE `criteria`=7722; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9119 WHERE `criteria`=9120; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=9223; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=9224; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=9598; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5328 WHERE `criteria`=9678; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5332 WHERE `criteria`=9679; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5329 WHERE `criteria`=9680; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5330 WHERE `criteria`=9681; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5331 WHERE `criteria`=9682; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5314 WHERE `criteria`=9683; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5313 WHERE `criteria`=9684; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5317 WHERE `criteria`=9685; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5315 WHERE `criteria`=9686; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5316 WHERE `criteria`=9687; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11320 WHERE `criteria`=9773; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11321 WHERE `criteria`=9774; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11322 WHERE `criteria`=9775; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11323 WHERE `criteria`=9776; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11324 WHERE `criteria`=9777; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11326 WHERE `criteria`=9784; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11328 WHERE `criteria`=9786; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11329 WHERE `criteria`=9787; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9863 WHERE `criteria`=9871; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2024 WHERE `criteria`=9898; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2024 WHERE `criteria`=9904; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9968 WHERE `criteria`=9938; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9972 WHERE `criteria`=9940; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9974 WHERE `criteria`=9941; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9978 WHERE `criteria`=9943; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9992 WHERE `criteria`=9950; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9994 WHERE `criteria`=9951; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9996 WHERE `criteria`=9952; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9969 WHERE `criteria`=9954; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9971 WHERE `criteria`=9955; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9973 WHERE `criteria`=9956; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9993 WHERE `criteria`=9966; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9995 WHERE `criteria`=9967; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9968 WHERE `criteria`=9999; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9969 WHERE `criteria`=10003; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9948 WHERE `criteria`=10023; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9964 WHERE `criteria`=10025; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=23416 WHERE `criteria`=10133; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10800 WHERE `criteria`=10289; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=23417 WHERE `criteria`=10290; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10558 WHERE `criteria`=10303; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10561 WHERE `criteria`=10310; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10801 WHERE `criteria`=10314; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9996 WHERE `criteria`=10338; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10542 WHERE `criteria`=10339; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10560 WHERE `criteria`=10408; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10279 WHERE `criteria`=10417; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10562 WHERE `criteria`=10453; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13363 WHERE `criteria`=10520; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10565 WHERE `criteria`=10567; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10566 WHERE `criteria`=10569; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10580 WHERE `criteria`=10578; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10581 WHERE `criteria`=10579; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10566 WHERE `criteria`=10698; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=10718; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11266 WHERE `criteria`=10940; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6208 WHERE `criteria`=10961; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4749 WHERE `criteria`=11278; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5327 WHERE `criteria`=11279; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17904 WHERE `criteria`=11418; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17904 WHERE `criteria`=11419; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13325 WHERE `criteria`=11478; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13344 WHERE `criteria`=11479; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11749 WHERE `criteria`=11502; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12231 WHERE `criteria`=11542; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12230 WHERE `criteria`=11679; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13326 WHERE `criteria`=11684; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12229 WHERE `criteria`=11689; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13325 WHERE `criteria`=11902; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13344 WHERE `criteria`=11903; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13368 WHERE `criteria`=11958; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17904 WHERE `criteria`=11959; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13326 WHERE `criteria`=12228; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13327 WHERE `criteria`=12232; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13347 WHERE `criteria`=12234; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13348 WHERE `criteria`=12238; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11420 WHERE `criteria`=12302; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12539 WHERE `criteria`=12310; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12539 WHERE `criteria`=12318; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6824 WHERE `criteria`=12418; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12545 WHERE `criteria`=12547; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13345 WHERE `criteria`=12559; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13315 WHERE `criteria`=12738; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13317 WHERE `criteria`=12740; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13320 WHERE `criteria`=12742; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13167 WHERE `criteria`=12745; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13182 WHERE `criteria`=12747; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13177 WHERE `criteria`=12750; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13138 WHERE `criteria`=12818; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13137 WHERE `criteria`=12825; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13138 WHERE `criteria`=12826; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13324 WHERE `criteria`=12827; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13343 WHERE `criteria`=12828; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13029 WHERE `criteria`=13030; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13029 WHERE `criteria`=13031; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13090 WHERE `criteria`=13039; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13116 WHERE `criteria`=13043; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13122 WHERE `criteria`=13046; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13125 WHERE `criteria`=13048; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13091 WHERE `criteria`=13050; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13117 WHERE `criteria`=13054; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13123 WHERE `criteria`=13057; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13126 WHERE `criteria`=13059; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13071 WHERE `criteria`=13061; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13075 WHERE `criteria`=13066; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13331 WHERE `criteria`=13089; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13351 WHERE `criteria`=13092; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13332 WHERE `criteria`=13093; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13333 WHERE `criteria`=13094; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13334 WHERE `criteria`=13095; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13336 WHERE `criteria`=13096; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13337 WHERE `criteria`=13097; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13339 WHERE `criteria`=13098; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13335 WHERE `criteria`=13099; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13338 WHERE `criteria`=13100; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13340 WHERE `criteria`=13101; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13341 WHERE `criteria`=13102; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13342 WHERE `criteria`=13103; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13352 WHERE `criteria`=13105; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13324 WHERE `criteria`=13107; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13343 WHERE `criteria`=13108; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13353 WHERE `criteria`=13109; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13354 WHERE `criteria`=13112; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13356 WHERE `criteria`=13115; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13357 WHERE `criteria`=13118; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13359 WHERE `criteria`=13121; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13355 WHERE `criteria`=13124; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13358 WHERE `criteria`=13127; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13360 WHERE `criteria`=13130; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13361 WHERE `criteria`=13133; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13362 WHERE `criteria`=13136; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13254 WHERE `criteria`=13255; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13260 WHERE `criteria`=13261; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13467 WHERE `criteria`=13452; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13468 WHERE `criteria`=13454; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=13498; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14520 WHERE `criteria`=13661; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14521 WHERE `criteria`=13662; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14517 WHERE `criteria`=13669; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14518 WHERE `criteria`=13670; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14519 WHERE `criteria`=13672; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13692; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13713; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13724; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13735; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13758; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13769; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13784; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13785; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13786; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13787; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13788; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13789; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13790; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13791; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13792; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13793; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13794; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13806; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13807; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13808; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13809; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13810; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13811; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13813; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13814; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13815; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13816; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13817; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13818; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13975 WHERE `criteria`=13841; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13980 WHERE `criteria`=13843; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15475 WHERE `criteria`=13879; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=13880; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14794 WHERE `criteria`=13881; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5798 WHERE `criteria`=13920; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13836 WHERE `criteria`=13973; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13845 WHERE `criteria`=13982; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13848 WHERE `criteria`=13983; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13607 WHERE `criteria`=13984; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14068 WHERE `criteria`=14037; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5213 WHERE `criteria`=14173; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=14174; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5214 WHERE `criteria`=14175; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5215 WHERE `criteria`=14176; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5216 WHERE `criteria`=14177; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5217 WHERE `criteria`=14178; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5218 WHERE `criteria`=14179; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5219 WHERE `criteria`=14180; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5018 WHERE `criteria`=14181; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5220 WHERE `criteria`=14182; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5221 WHERE `criteria`=14183; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14596 WHERE `criteria`=14267; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4991 WHERE `criteria`=14280; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16776 WHERE `criteria`=14347; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16778 WHERE `criteria`=14348; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16784 WHERE `criteria`=14349; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16780 WHERE `criteria`=14350; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16782 WHERE `criteria`=14351; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16786 WHERE `criteria`=14352; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16788 WHERE `criteria`=14353; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16789 WHERE `criteria`=14372; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16790 WHERE `criteria`=14382; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16254 WHERE `criteria`=14385; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16258 WHERE `criteria`=14398; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16262 WHERE `criteria`=14399; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16266 WHERE `criteria`=14400; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14401 WHERE `criteria`=14402; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16268 WHERE `criteria`=14406; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16274 WHERE `criteria`=14407; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16278 WHERE `criteria`=14408; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16248 WHERE `criteria`=14409; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16282 WHERE `criteria`=14410; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16284 WHERE `criteria`=14411; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16288 WHERE `criteria`=14412; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16290 WHERE `criteria`=14413; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16296 WHERE `criteria`=14414; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14219 WHERE `criteria`=14419; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5318 WHERE `criteria`=14454; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2048 WHERE `criteria`=14457; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5333 WHERE `criteria`=14458; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14517 WHERE `criteria`=14501; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=14758; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5020 WHERE `criteria`=14773; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5031 WHERE `criteria`=14784; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=14807; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15703 WHERE `criteria`=14808; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14596 WHERE `criteria`=14809; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16512 WHERE `criteria`=14815; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16512 WHERE `criteria`=14816; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14869 WHERE `criteria`=14817; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14871 WHERE `criteria`=14818; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5601 WHERE `criteria`=14829; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5603 WHERE `criteria`=14831; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16510 WHERE `criteria`=14867; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16512 WHERE `criteria`=14868; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16511 WHERE `criteria`=14872; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16513 WHERE `criteria`=14873; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15475 WHERE `criteria`=14899; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14918 WHERE `criteria`=14900; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14918 WHERE `criteria`=14908; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16513 WHERE `criteria`=14926; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16513 WHERE `criteria`=14927; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14500 WHERE `criteria`=14998; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=14999; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=15000; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=15001; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=15002; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15005; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15006; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15691 WHERE `criteria`=15043; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15691 WHERE `criteria`=15044; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14812 WHERE `criteria`=15045; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15204 WHERE `criteria`=15188; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15286; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15287; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15288; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15290; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15291; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15292; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15293; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15294; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15295; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15296; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15297; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15298; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15299; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15301; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15302; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15303; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15304; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15305; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15306; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15307; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15309; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15310; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15311; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15312; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15313; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15314; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15315; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15316; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15317; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15318; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15319; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15320; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15321; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15308 WHERE `criteria`=15322; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15323; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=15326; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=15362; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=15373; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=15374; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=15375; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=15376; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=15377; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=15378; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=15379; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=15380; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=15381; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=15382; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=15383; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=15384; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=15385; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=15386; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=15387; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=15388; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13878 WHERE `criteria`=15427; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13864 WHERE `criteria`=15428; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15697 WHERE `criteria`=15443; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15699 WHERE `criteria`=15444; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15701 WHERE `criteria`=15445; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13829 WHERE `criteria`=15446; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13829 WHERE `criteria`=15452; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15458 WHERE `criteria`=15465; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15464 WHERE `criteria`=15467; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13757 WHERE `criteria`=15474; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=15476; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13576 WHERE `criteria`=15672; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=15688; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=15689; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15705 WHERE `criteria`=15704; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14812 WHERE `criteria`=15706; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=15711; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13611 WHERE `criteria`=16019; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13550 WHERE `criteria`=16050; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16191 WHERE `criteria`=16192; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16191 WHERE `criteria`=16193; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16194 WHERE `criteria`=16195; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16194 WHERE `criteria`=16196; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16305 WHERE `criteria`=16306; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16305 WHERE `criteria`=16307; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16305 WHERE `criteria`=16308; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16309 WHERE `criteria`=16310; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16309 WHERE `criteria`=16311; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16309 WHERE `criteria`=16312; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16528 WHERE `criteria`=16514; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16521 WHERE `criteria`=16529; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16515 WHERE `criteria`=16532; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16522 WHERE `criteria`=16533; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16516 WHERE `criteria`=16534; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16518 WHERE `criteria`=16536; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16517 WHERE `criteria`=16538; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16524 WHERE `criteria`=16539; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16552 WHERE `criteria`=16608; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=16773; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=16819; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4092 WHERE `criteria`=16820; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16872 WHERE `criteria`=16863; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16871 WHERE `criteria`=16864; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17002 WHERE `criteria`=16887; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17001 WHERE `criteria`=16897; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17004 WHERE `criteria`=17005; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17004 WHERE `criteria`=17006; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17412 WHERE `criteria`=17414; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=24125 WHERE `criteria`=17415; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18074 WHERE `criteria`=17436; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18070 WHERE `criteria`=17438; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18066 WHERE `criteria`=17440; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18058 WHERE `criteria`=17442; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18050 WHERE `criteria`=17444; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18054 WHERE `criteria`=17446; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18062 WHERE `criteria`=17448; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=17546; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=17547; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18103 WHERE `criteria`=18105; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18144; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18199 WHERE `criteria`=18204; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18644 WHERE `criteria`=18270; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18649 WHERE `criteria`=18278; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18294 WHERE `criteria`=18293; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18093 WHERE `criteria`=18333; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13256 WHERE `criteria`=18348; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18590 WHERE `criteria`=18453; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18575 WHERE `criteria`=18454; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18573 WHERE `criteria`=18456; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18571 WHERE `criteria`=18458; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18569 WHERE `criteria`=18460; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18567 WHERE `criteria`=18462; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18565 WHERE `criteria`=18464; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18563 WHERE `criteria`=18466; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18561 WHERE `criteria`=18468; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18542 WHERE `criteria`=18472; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18544 WHERE `criteria`=18473; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18543 WHERE `criteria`=18474; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18488; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18489 WHERE `criteria`=18491; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18544 WHERE `criteria`=18501; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=19213 WHERE `criteria`=18523; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15308 WHERE `criteria`=18864; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15308 WHERE `criteria`=18865; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6845 WHERE `criteria`=170; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5378 WHERE `criteria`=190; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5382 WHERE `criteria`=196; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5444 WHERE `criteria`=200; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5460 WHERE `criteria`=205; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5465 WHERE `criteria`=207; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5468 WHERE `criteria`=213; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5456 WHERE `criteria`=220; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6430 WHERE `criteria`=352; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6425 WHERE `criteria`=358; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6426 WHERE `criteria`=366; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5108 WHERE `criteria`=373; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=19263 WHERE `criteria`=549; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18471 WHERE `criteria`=551; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5735 WHERE `criteria`=609; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5313 WHERE `criteria`=995; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=1007; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=1010; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5707 WHERE `criteria`=1887; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5703 WHERE `criteria`=1892; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5337 WHERE `criteria`=2013; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5321 WHERE `criteria`=2016; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5332 WHERE `criteria`=2034; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5437 WHERE `criteria`=2042; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=2046; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3432 WHERE `criteria`=3417; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8884 WHERE `criteria`=3528; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18622 WHERE `criteria`=3543; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5449 WHERE `criteria`=3575; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5440 WHERE `criteria`=3579; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8878 WHERE `criteria`=3595; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4762 WHERE `criteria`=3610; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5126 WHERE `criteria`=3835; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6406 WHERE `criteria`=3838; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5128 WHERE `criteria`=3842; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5125 WHERE `criteria`=3845; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4480 WHERE `criteria`=4481; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4474 WHERE `criteria`=4485; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4474 WHERE `criteria`=4486; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=744 WHERE `criteria`=4497; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=744 WHERE `criteria`=4498; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5019 WHERE `criteria`=5043; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2270 WHERE `criteria`=5089; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2419 WHERE `criteria`=5307; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=5563; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=5568; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5464 WHERE `criteria`=5631; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5279 WHERE `criteria`=5681; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5138 WHERE `criteria`=5691; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5832 WHERE `criteria`=5819; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2070 WHERE `criteria`=5820; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=106 WHERE `criteria`=5892; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6182 WHERE `criteria`=6175; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8706 WHERE `criteria`=6333; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8739 WHERE `criteria`=6348; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=6414; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9179 WHERE `criteria`=6441; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6715 WHERE `criteria`=6601; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12078 WHERE `criteria`=6609; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12079 WHERE `criteria`=6614; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5615 WHERE `criteria`=6858; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7412 WHERE `criteria`=7416; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9720 WHERE `criteria`=7419; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7655 WHERE `criteria`=7643; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9759 WHERE `criteria`=7723; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3228 WHERE `criteria`=7767; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5735 WHERE `criteria`=8588; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8907 WHERE `criteria`=8909; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=9160; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11320 WHERE `criteria`=9658; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11321 WHERE `criteria`=9659; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11322 WHERE `criteria`=9660; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11323 WHERE `criteria`=9661; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11324 WHERE `criteria`=9662; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9783 WHERE `criteria`=9663; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11326 WHERE `criteria`=9664; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9785 WHERE `criteria`=9665; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11328 WHERE `criteria`=9666; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11329 WHERE `criteria`=9667; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9864 WHERE `criteria`=9872; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9673 WHERE `criteria`=9899; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9668 WHERE `criteria`=9905; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9939 WHERE `criteria`=10000; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9971 WHERE `criteria`=10004; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9978 WHERE `criteria`=10008; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9959 WHERE `criteria`=10016; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9994 WHERE `criteria`=10024; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9995 WHERE `criteria`=10026; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10558 WHERE `criteria`=10438; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10561 WHERE `criteria`=10454; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13364 WHERE `criteria`=10521; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6210 WHERE `criteria`=10965; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11330 WHERE `criteria`=11331; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12179 WHERE `criteria`=11498; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12235 WHERE `criteria`=11546; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13347 WHERE `criteria`=11680; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13327 WHERE `criteria`=11685; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12233 WHERE `criteria`=11690; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12298 WHERE `criteria`=12303; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12545 WHERE `criteria`=12311; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12545 WHERE `criteria`=12319; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6830 WHERE `criteria`=12419; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13316 WHERE `criteria`=12739; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13318 WHERE `criteria`=12741; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13168 WHERE `criteria`=12746; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13173 WHERE `criteria`=12748; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13321 WHERE `criteria`=12990; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13179 WHERE `criteria`=12991; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13104 WHERE `criteria`=13040; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13119 WHERE `criteria`=13044; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13131 WHERE `criteria`=13047; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13134 WHERE `criteria`=13049; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13106 WHERE `criteria`=13051; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13120 WHERE `criteria`=13055; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13132 WHERE `criteria`=13058; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13135 WHERE `criteria`=13060; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13072 WHERE `criteria`=13062; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13076 WHERE `criteria`=13067; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=13259; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13986 WHERE `criteria`=13664; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13682; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13693; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13714; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13725; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13736; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13759; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13770; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13819; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5799 WHERE `criteria`=13921; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=22241 WHERE `criteria`=14340; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14220 WHERE `criteria`=14420; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5319 WHERE `criteria`=14455; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5334 WHERE `criteria`=14459; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14518 WHERE `criteria`=14502; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2049 WHERE `criteria`=14597; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5021 WHERE `criteria`=14774; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5032 WHERE `criteria`=14785; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14919 WHERE `criteria`=14901; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14919 WHERE `criteria`=14909; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15205 WHERE `criteria`=15189; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13865 WHERE `criteria`=15429; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13830 WHERE `criteria`=15447; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13830 WHERE `criteria`=15453; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16267 WHERE `criteria`=15656; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16255 WHERE `criteria`=15657; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16259 WHERE `criteria`=15658; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16263 WHERE `criteria`=15659; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16269 WHERE `criteria`=15660; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16275 WHERE `criteria`=15661; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16249 WHERE `criteria`=15662; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16279 WHERE `criteria`=15663; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16283 WHERE `criteria`=15664; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16285 WHERE `criteria`=15665; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16289 WHERE `criteria`=15666; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16291 WHERE `criteria`=15667; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16297 WHERE `criteria`=15668; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15972 WHERE `criteria`=15979; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15698 WHERE `criteria`=16023; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15700 WHERE `criteria`=16024; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15702 WHERE `criteria`=16025; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20778 WHERE `criteria`=16026; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13551 WHERE `criteria`=16051; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=16091; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16096; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16098; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16100; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16102; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16498 WHERE `criteria`=16507; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16553 WHERE `criteria`=16609; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16945 WHERE `criteria`=16888; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16954 WHERE `criteria`=16898; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18075 WHERE `criteria`=17437; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18071 WHERE `criteria`=17439; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18067 WHERE `criteria`=17441; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18059 WHERE `criteria`=17443; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18051 WHERE `criteria`=17445; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18055 WHERE `criteria`=17447; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18063 WHERE `criteria`=17449; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17909 WHERE `criteria`=17454; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18429 WHERE `criteria`=17625; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17683 WHERE `criteria`=17705; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18104 WHERE `criteria`=18106; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6552 WHERE `criteria`=18253; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18645 WHERE `criteria`=18266; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18650 WHERE `criteria`=18272; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18576 WHERE `criteria`=18455; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18574 WHERE `criteria`=18457; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18572 WHERE `criteria`=18459; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18570 WHERE `criteria`=18461; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18568 WHERE `criteria`=18463; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18566 WHERE `criteria`=18465; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18564 WHERE `criteria`=18467; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18562 WHERE `criteria`=18469; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18490 WHERE `criteria`=18492; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6846 WHERE `criteria`=171; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5379 WHERE `criteria`=191; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5383 WHERE `criteria`=197; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5445 WHERE `criteria`=201; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5461 WHERE `criteria`=204; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5466 WHERE `criteria`=208; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5469 WHERE `criteria`=212; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5453 WHERE `criteria`=216; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5457 WHERE `criteria`=219; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5102 WHERE `criteria`=353; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5117 WHERE `criteria`=359; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6428 WHERE `criteria`=367; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18535 WHERE `criteria`=547; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8589 WHERE `criteria`=610; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5314 WHERE `criteria`=992; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=1006; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=1012; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1825 WHERE `criteria`=1826; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5708 WHERE `criteria`=1888; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5704 WHERE `criteria`=1893; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4757 WHERE `criteria`=2012; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4757 WHERE `criteria`=2015; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5438 WHERE `criteria`=2043; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3433 WHERE `criteria`=3418; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8883 WHERE `criteria`=3529; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5450 WHERE `criteria`=3576; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5441 WHERE `criteria`=3580; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8888 WHERE `criteria`=3596; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6405 WHERE `criteria`=3836; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5124 WHERE `criteria`=3839; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6409 WHERE `criteria`=3843; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3624 WHERE `criteria`=3866; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4474 WHERE `criteria`=4470; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4490 WHERE `criteria`=4483; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5336 WHERE `criteria`=4752; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=325 WHERE `criteria`=4789; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2261 WHERE `criteria`=5080; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2420 WHERE `criteria`=5308; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=5564; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5462 WHERE `criteria`=5630; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5123 WHERE `criteria`=5647; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5280 WHERE `criteria`=5682; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5833 WHERE `criteria`=5821; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=105 WHERE `criteria`=5893; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6184 WHERE `criteria`=6177; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7339 WHERE `criteria`=6291; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8708 WHERE `criteria`=6334; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=6415; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6738 WHERE `criteria`=6602; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12080 WHERE `criteria`=6610; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12081 WHERE `criteria`=6615; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9167 WHERE `criteria`=6668; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5610 WHERE `criteria`=6850; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7805 WHERE `criteria`=7192; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7806 WHERE `criteria`=7193; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7656 WHERE `criteria`=7644; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9760 WHERE `criteria`=7724; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5730 WHERE `criteria`=8592; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7412 WHERE `criteria`=9718; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9869 WHERE `criteria`=9877; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9674 WHERE `criteria`=9900; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9669 WHERE `criteria`=9906; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9939 WHERE `criteria`=9970; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9974 WHERE `criteria`=10001; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9957 WHERE `criteria`=10005; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9992 WHERE `criteria`=10010; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9993 WHERE `criteria`=10018; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10559 WHERE `criteria`=10444; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10563 WHERE `criteria`=10455; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13365 WHERE `criteria`=10522; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12181 WHERE `criteria`=11500; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11751 WHERE `criteria`=11504; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12239 WHERE `criteria`=11678; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13348 WHERE `criteria`=11681; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12236 WHERE `criteria`=11686; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12237 WHERE `criteria`=11691; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12299 WHERE `criteria`=12304; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12320 WHERE `criteria`=12312; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10041 WHERE `criteria`=12420; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13323 WHERE `criteria`=12743; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13319 WHERE `criteria`=12744; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13175 WHERE `criteria`=12749; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13181 WHERE `criteria`=12751; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=12999; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=13001; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13110 WHERE `criteria`=13041; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13128 WHERE `criteria`=13045; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13111 WHERE `criteria`=13052; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13129 WHERE `criteria`=13056; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13073 WHERE `criteria`=13063; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13077 WHERE `criteria`=13068; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13987 WHERE `criteria`=13665; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13683; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13694; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13715; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13726; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13737; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13760; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13771; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13820; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13918 WHERE `criteria`=13919; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1020 WHERE `criteria`=14038; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14221 WHERE `criteria`=14421; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5320 WHERE `criteria`=14456; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5335 WHERE `criteria`=14460; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13671 WHERE `criteria`=14503; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4767 WHERE `criteria`=14598; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5022 WHERE `criteria`=14775; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5033 WHERE `criteria`=14786; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14920 WHERE `criteria`=14902; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14920 WHERE `criteria`=14910; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15206 WHERE `criteria`=15190; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13866 WHERE `criteria`=15430; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13832 WHERE `criteria`=15448; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13832 WHERE `criteria`=15454; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15973 WHERE `criteria`=15980; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20779 WHERE `criteria`=16027; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13562 WHERE `criteria`=16052; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16097; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16099; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16101; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16103; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16499 WHERE `criteria`=16502; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16554 WHERE `criteria`=16610; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16946 WHERE `criteria`=16889; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16955 WHERE `criteria`=16899; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17661 WHERE `criteria`=17638; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17684 WHERE `criteria`=17706; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18198 WHERE `criteria`=18201; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7313 WHERE `criteria`=18248; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18646 WHERE `criteria`=18267; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18651 WHERE `criteria`=18274; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5380 WHERE `criteria`=192; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5384 WHERE `criteria`=198; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5462 WHERE `criteria`=206; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5464 WHERE `criteria`=210; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5454 WHERE `criteria`=217; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3503 WHERE `criteria`=228; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5119 WHERE `criteria`=360; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5317 WHERE `criteria`=996; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=1008; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=1011; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5458 WHERE `criteria`=1827; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5709 WHERE `criteria`=1889; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5705 WHERE `criteria`=1894; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5329 WHERE `criteria`=2033; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3434 WHERE `criteria`=3419; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8878 WHERE `criteria`=3531; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18621 WHERE `criteria`=3545; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5451 WHERE `criteria`=3577; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5442 WHERE `criteria`=3581; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8886 WHERE `criteria`=3597; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5608 WHERE `criteria`=3704; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5134 WHERE `criteria`=3840; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4437 WHERE `criteria`=4269; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4487 WHERE `criteria`=4477; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5322 WHERE `criteria`=4753; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=326 WHERE `criteria`=4790; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2271 WHERE `criteria`=5090; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5609 WHERE `criteria`=5248; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2421 WHERE `criteria`=5309; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9994 WHERE `criteria`=5643; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5281 WHERE `criteria`=5683; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=23502 WHERE `criteria`=5809; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5834 WHERE `criteria`=5822; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5610 WHERE `criteria`=5878; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5743 WHERE `criteria`=5894; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6185 WHERE `criteria`=6178; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8707 WHERE `criteria`=6335; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6433 WHERE `criteria`=6381; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6433 WHERE `criteria`=6432; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9181 WHERE `criteria`=6445; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6961 WHERE `criteria`=6461; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7093 WHERE `criteria`=6603; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12082 WHERE `criteria`=6611; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12083 WHERE `criteria`=6616; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6434 WHERE `criteria`=6808; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5616 WHERE `criteria`=6834; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5614 WHERE `criteria`=6842; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5611 WHERE `criteria`=6854; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5617 WHERE `criteria`=6862; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5618 WHERE `criteria`=6866; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7338 WHERE `criteria`=7334; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7657 WHERE `criteria`=7645; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9761 WHERE `criteria`=7726; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9261 WHERE `criteria`=9099; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7412 WHERE `criteria`=9721; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9870 WHERE `criteria`=9878; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9675 WHERE `criteria`=9901; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9670 WHERE `criteria`=9907; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9995 WHERE `criteria`=9998; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9972 WHERE `criteria`=10002; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9973 WHERE `criteria`=10006; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9947 WHERE `criteria`=10014; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9963 WHERE `criteria`=10456; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13367 WHERE `criteria`=10523; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=10879; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11752 WHERE `criteria`=11505; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12243 WHERE `criteria`=11547; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12242 WHERE `criteria`=11682; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12240 WHERE `criteria`=11687; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12241 WHERE `criteria`=11692; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12300 WHERE `criteria`=12305; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12543 WHERE `criteria`=12313; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12543 WHERE `criteria`=12321; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11617 WHERE `criteria`=12421; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13000; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=13002; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13113 WHERE `criteria`=13042; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13114 WHERE `criteria`=13053; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13074 WHERE `criteria`=13064; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13078 WHERE `criteria`=13069; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13988 WHERE `criteria`=13666; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13684; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13695; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13716; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13727; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13738; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13761; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13772; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13821; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1314 WHERE `criteria`=14039; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14222 WHERE `criteria`=14422; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14520 WHERE `criteria`=14504; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4766 WHERE `criteria`=14599; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5023 WHERE `criteria`=14776; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5034 WHERE `criteria`=14787; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14921 WHERE `criteria`=14903; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14921 WHERE `criteria`=14911; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15207 WHERE `criteria`=15191; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13867 WHERE `criteria`=15431; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13833 WHERE `criteria`=15449; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13833 WHERE `criteria`=15455; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15974 WHERE `criteria`=15981; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20780 WHERE `criteria`=16028; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13568 WHERE `criteria`=16053; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16301; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16302; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16303; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16304; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16500 WHERE `criteria`=16503; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16535 WHERE `criteria`=16523; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16555 WHERE `criteria`=16611; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16947 WHERE `criteria`=16890; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16956 WHERE `criteria`=16900; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17911 WHERE `criteria`=17457; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17685 WHERE `criteria`=17707; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18197 WHERE `criteria`=18200; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6567 WHERE `criteria`=18254; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18647 WHERE `criteria`=18268; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5315 WHERE `criteria`=993; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=1005; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=1013; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5710 WHERE `criteria`=1890; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5330 WHERE `criteria`=2031; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2144 WHERE `criteria`=2146; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3435 WHERE `criteria`=3420; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9014 WHERE `criteria`=3534; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18623 WHERE `criteria`=3546; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9014 WHERE `criteria`=3598; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3625 WHERE `criteria`=3867; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4488 WHERE `criteria`=4478; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5337 WHERE `criteria`=4754; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5072 WHERE `criteria`=5057; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2262 WHERE `criteria`=5081; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=5570; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5458 WHERE `criteria`=5629; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5282 WHERE `criteria`=5684; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8587 WHERE `criteria`=5810; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5836 WHERE `criteria`=5824; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5615 WHERE `criteria`=5883; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5747 WHERE `criteria`=5895; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8160 WHERE `criteria`=6190; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12084 WHERE `criteria`=6612; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12085 WHERE `criteria`=6617; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7340 WHERE `criteria`=7336; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7658 WHERE `criteria`=7646; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9765 WHERE `criteria`=7729; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7859 WHERE `criteria`=7860; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=318 WHERE `criteria`=9578; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9865 WHERE `criteria`=9873; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9676 WHERE `criteria`=9902; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9671 WHERE `criteria`=9908; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9957 WHERE `criteria`=9975; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13366 WHERE `criteria`=10524; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=10878; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11753 WHERE `criteria`=11506; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12247 WHERE `criteria`=11549; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12246 WHERE `criteria`=11683; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12244 WHERE `criteria`=11688; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12245 WHERE `criteria`=11693; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12301 WHERE `criteria`=12306; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12541 WHERE `criteria`=12314; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12541 WHERE `criteria`=12322; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12504 WHERE `criteria`=12506; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13003; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=13004; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12244 WHERE `criteria`=13308; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12246 WHERE `criteria`=13310; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13685; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13696; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13717; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13728; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13739; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13762; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13773; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13822; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1407 WHERE `criteria`=14040; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14223 WHERE `criteria`=14423; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14521 WHERE `criteria`=14505; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4750 WHERE `criteria`=14600; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5024 WHERE `criteria`=14777; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5035 WHERE `criteria`=14788; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14922 WHERE `criteria`=14904; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14922 WHERE `criteria`=14912; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15208 WHERE `criteria`=15192; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13868 WHERE `criteria`=15432; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13834 WHERE `criteria`=15450; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13834 WHERE `criteria`=15456; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15950 WHERE `criteria`=15956; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15975 WHERE `criteria`=15982; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20781 WHERE `criteria`=16029; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13552 WHERE `criteria`=16054; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16314; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16315; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16316; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16317; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16556 WHERE `criteria`=16612; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16678 WHERE `criteria`=16677; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16948 WHERE `criteria`=16891; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16957 WHERE `criteria`=16901; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17663 WHERE `criteria`=17640; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8030 WHERE `criteria`=18255; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18648 WHERE `criteria`=18269; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18298 WHERE `criteria`=18292; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5316 WHERE `criteria`=994; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5331 WHERE `criteria`=2030; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3436 WHERE `criteria`=3421; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8882 WHERE `criteria`=3535; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18620 WHERE `criteria`=3547; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8882 WHERE `criteria`=3599; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4489 WHERE `criteria`=4479; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2272 WHERE `criteria`=5091; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5454 WHERE `criteria`=5628; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5283 WHERE `criteria`=5685; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5609 WHERE `criteria`=5877; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7235 WHERE `criteria`=7234; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7341 WHERE `criteria`=7337; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9766 WHERE `criteria`=7730; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9677 WHERE `criteria`=9903; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9672 WHERE `criteria`=9909; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11271 WHERE `criteria`=11262; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11754 WHERE `criteria`=11507; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13312 WHERE `criteria`=11559; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13312 WHERE `criteria`=12307; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12549 WHERE `criteria`=12315; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12549 WHERE `criteria`=12323; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13005; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=13006; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13342 WHERE `criteria`=13309; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13362 WHERE `criteria`=13311; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13686; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13697; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13718; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13729; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13740; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13763; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13774; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13823; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14096 WHERE `criteria`=14041; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14224 WHERE `criteria`=14424; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4741 WHERE `criteria`=14506; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4741 WHERE `criteria`=14522; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=22255 WHERE `criteria`=14573; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=19473 WHERE `criteria`=14581; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12911 WHERE `criteria`=14601; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5025 WHERE `criteria`=14778; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5036 WHERE `criteria`=14789; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14923 WHERE `criteria`=14905; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14923 WHERE `criteria`=14913; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15234 WHERE `criteria`=15222; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13869 WHERE `criteria`=15433; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13835 WHERE `criteria`=15451; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13835 WHERE `criteria`=15457; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15951 WHERE `criteria`=15957; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15976 WHERE `criteria`=15983; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20784 WHERE `criteria`=16030; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13553 WHERE `criteria`=16055; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16530 WHERE `criteria`=16519; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16557 WHERE `criteria`=16613; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16949 WHERE `criteria`=16892; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16958 WHERE `criteria`=16902; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17913 WHERE `criteria`=17460; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18396 WHERE `criteria`=17614; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18115; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7957 WHERE `criteria`=18258; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2143 WHERE `criteria`=2145; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2205 WHERE `criteria`=2212; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3437 WHERE `criteria`=3422; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8879 WHERE `criteria`=3539; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7987 WHERE `criteria`=3548; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8887 WHERE `criteria`=3600; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3626 WHERE `criteria`=3868; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2263 WHERE `criteria`=5082; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5438 WHERE `criteria`=5623; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5284 WHERE `criteria`=5686; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5838 WHERE `criteria`=5826; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5611 WHERE `criteria`=5879; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7660 WHERE `criteria`=7648; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9959 WHERE `criteria`=9979; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11272 WHERE `criteria`=11263; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11755 WHERE `criteria`=11508; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13313 WHERE `criteria`=11560; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13313 WHERE `criteria`=12308; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12551 WHERE `criteria`=12316; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12551 WHERE `criteria`=12324; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13007; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13687; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13698; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13719; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13730; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13741; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13764; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13775; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13824; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14087 WHERE `criteria`=14042; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14225 WHERE `criteria`=14425; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4743 WHERE `criteria`=14507; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4743 WHERE `criteria`=14523; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5026 WHERE `criteria`=14779; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5037 WHERE `criteria`=14790; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14924 WHERE `criteria`=14906; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14924 WHERE `criteria`=14914; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15209 WHERE `criteria`=15194; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13870 WHERE `criteria`=15434; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20782 WHERE `criteria`=16031; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13574 WHERE `criteria`=16056; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16537 WHERE `criteria`=16526; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16558 WHERE `criteria`=16614; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16950 WHERE `criteria`=16893; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16959 WHERE `criteria`=16903; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17665 WHERE `criteria`=17642; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17720 WHERE `criteria`=17721; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17720 WHERE `criteria`=17722; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18116; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6903 WHERE `criteria`=18261; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18845; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2206 WHERE `criteria`=2213; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3438 WHERE `criteria`=3423; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8880 WHERE `criteria`=3540; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18624 WHERE `criteria`=3549; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8891 WHERE `criteria`=3601; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2273 WHERE `criteria`=5092; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=5572; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5442 WHERE `criteria`=5624; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5285 WHERE `criteria`=5687; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5839 WHERE `criteria`=5827; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5616 WHERE `criteria`=5884; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7661 WHERE `criteria`=7649; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9769 WHERE `criteria`=7734; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9868 WHERE `criteria`=9876; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11273 WHERE `criteria`=11264; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11756 WHERE `criteria`=11509; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13314 WHERE `criteria`=11561; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13314 WHERE `criteria`=12309; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12553 WHERE `criteria`=12317; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12553 WHERE `criteria`=12439; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13688; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13699; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13720; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13731; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13742; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13765; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13776; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13825; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1373 WHERE `criteria`=14043; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14226 WHERE `criteria`=14426; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4737 WHERE `criteria`=14508; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4737 WHERE `criteria`=14524; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5027 WHERE `criteria`=14780; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5038 WHERE `criteria`=14791; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14925 WHERE `criteria`=14907; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14925 WHERE `criteria`=14915; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15212 WHERE `criteria`=15195; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15237 WHERE `criteria`=15224; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13871 WHERE `criteria`=15435; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=20783 WHERE `criteria`=16032; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14383 WHERE `criteria`=16057; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16531 WHERE `criteria`=16527; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16559 WHERE `criteria`=16615; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16951 WHERE `criteria`=16894; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16960 WHERE `criteria`=16904; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=24125 WHERE `criteria`=17413; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17915 WHERE `criteria`=17463; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17690 WHERE `criteria`=17712; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18117; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6915 WHERE `criteria`=18262; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18844 WHERE `criteria`=18846; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18847; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2210 WHERE `criteria`=2216; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3439 WHERE `criteria`=3424; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8881 WHERE `criteria`=3541; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=8890 WHERE `criteria`=3602; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5446 WHERE `criteria`=5625; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5286 WHERE `criteria`=5688; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5840 WHERE `criteria`=5828; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5617 WHERE `criteria`=5885; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7662 WHERE `criteria`=7650; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9770 WHERE `criteria`=7735; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11274 WHERE `criteria`=11265; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11757 WHERE `criteria`=11510; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13689; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13700; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13721; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13732; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13743; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13766; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13777; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13826; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1347 WHERE `criteria`=14044; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14227 WHERE `criteria`=14427; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4742 WHERE `criteria`=14509; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4742 WHERE `criteria`=14525; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5028 WHERE `criteria`=14781; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5039 WHERE `criteria`=14792; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13872 WHERE `criteria`=15436; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14384 WHERE `criteria`=16058; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16560 WHERE `criteria`=16616; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16952 WHERE `criteria`=16895; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16961 WHERE `criteria`=16905; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17916 WHERE `criteria`=17464; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17590 WHERE `criteria`=17605; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17666 WHERE `criteria`=17644; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17691 WHERE `criteria`=17713; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18596 WHERE `criteria`=18264; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18842; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18844 WHERE `criteria`=18848; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2084 WHERE `criteria`=2100; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3442 WHERE `criteria`=3427; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3627 WHERE `criteria`=3869; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=5574; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5451 WHERE `criteria`=5627; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5287 WHERE `criteria`=5689; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5841 WHERE `criteria`=5829; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5608 WHERE `criteria`=5876; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7663 WHERE `criteria`=7651; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9771 WHERE `criteria`=7736; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13690; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13701; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13722; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13733; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13744; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13767; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13778; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13827; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14228 WHERE `criteria`=14428; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=14510; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=14526; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5029 WHERE `criteria`=14782; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15213 WHERE `criteria`=15197; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=22268 WHERE `criteria`=15254; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13873 WHERE `criteria`=15437; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16561 WHERE `criteria`=16617; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16953 WHERE `criteria`=16896; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16962 WHERE `criteria`=16906; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17591 WHERE `criteria`=17604; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17693 WHERE `criteria`=17715; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7017 WHERE `criteria`=18263; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18844 WHERE `criteria`=18849; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2207 WHERE `criteria`=2214; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3444 WHERE `criteria`=3429; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3628 WHERE `criteria`=3870; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4329 WHERE `criteria`=4298; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2264 WHERE `criteria`=5083; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5447 WHERE `criteria`=5626; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5618 WHERE `criteria`=5886; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9169 WHERE `criteria`=6672; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7664 WHERE `criteria`=7652; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=11759 WHERE `criteria`=11512; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13691; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13702; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13723; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13734; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13745; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13768; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13779; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13828; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14156 WHERE `criteria`=14047; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14229 WHERE `criteria`=14429; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=14511; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=14527; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5030 WHERE `criteria`=14783; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15240 WHERE `criteria`=15227; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=13874 WHERE `criteria`=15438; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16562 WHERE `criteria`=16618; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16963 WHERE `criteria`=16907; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17919 WHERE `criteria`=17468; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18397 WHERE `criteria`=17615; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17669 WHERE `criteria`=17646; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4661 WHERE `criteria`=18251; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=3445 WHERE `criteria`=3430; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2274 WHERE `criteria`=5093; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4744 WHERE `criteria`=5324; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4747 WHERE `criteria`=5339; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5384 WHERE `criteria`=5622; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6434 WHERE `criteria`=5887; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9168 WHERE `criteria`=6673; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7665 WHERE `criteria`=7653; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9948 WHERE `criteria`=9988; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9964 WHERE `criteria`=9989; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=1174 WHERE `criteria`=14048; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14230 WHERE `criteria`=14430; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=14512; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=14528; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15214 WHERE `criteria`=15199; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15241 WHERE `criteria`=15228; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14590 WHERE `criteria`=15439; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16563 WHERE `criteria`=16619; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16964 WHERE `criteria`=16908; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17694 WHERE `criteria`=17716; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4665 WHERE `criteria`=18249; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=167 WHERE `criteria`=756; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7420 WHERE `criteria`=4300; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2265 WHERE `criteria`=5084; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4745 WHERE `criteria`=5325; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4749 WHERE `criteria`=5340; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9261 WHERE `criteria`=5880; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15114 WHERE `criteria`=14049; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5336 WHERE `criteria`=14513; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5322 WHERE `criteria`=14529; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15216 WHERE `criteria`=15200; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15242 WHERE `criteria`=15229; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14591 WHERE `criteria`=15440; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16564 WHERE `criteria`=16620; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16965 WHERE `criteria`=16909; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17921 WHERE `criteria`=17471; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4678 WHERE `criteria`=18250; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2209 WHERE `criteria`=2215; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2275 WHERE `criteria`=5094; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4746 WHERE `criteria`=5326; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4748 WHERE `criteria`=5341; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5613 WHERE `criteria`=5881; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14416 WHERE `criteria`=14432; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=14514; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=14530; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15217 WHERE `criteria`=15201; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15243 WHERE `criteria`=15230; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14592 WHERE `criteria`=15441; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16565 WHERE `criteria`=16621; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16966 WHERE `criteria`=16910; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4687 WHERE `criteria`=18256; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4310 WHERE `criteria`=4302; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2266 WHERE `criteria`=5085; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5327 WHERE `criteria`=5342; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5614 WHERE `criteria`=5882; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14417 WHERE `criteria`=14433; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4761 WHERE `criteria`=14515; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4761 WHERE `criteria`=14531; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14593 WHERE `criteria`=15442; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16566 WHERE `criteria`=16622; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16967 WHERE `criteria`=16911; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17922 WHERE `criteria`=17473; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17673 WHERE `criteria`=17650; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9016 WHERE `criteria`=18257; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2080 WHERE `criteria`=18414; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4334 WHERE `criteria`=4303; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2276 WHERE `criteria`=5095; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=10542 WHERE `criteria`=9997; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=14418 WHERE `criteria`=14434; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2020 WHERE `criteria`=14516; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2020 WHERE `criteria`=14532; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16567 WHERE `criteria`=16623; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16968 WHERE `criteria`=16912; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18430 WHERE `criteria`=17630; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18609 WHERE `criteria`=18259; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2267 WHERE `criteria`=5086; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7805 WHERE `criteria`=8746; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=15946 WHERE `criteria`=15945; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16568 WHERE `criteria`=16624; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16969 WHERE `criteria`=16913; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17924 WHERE `criteria`=17476; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9015 WHERE `criteria`=18260; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2277 WHERE `criteria`=5096; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7806 WHERE `criteria`=8747; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16569 WHERE `criteria`=16625; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16970 WHERE `criteria`=16914; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17925 WHERE `criteria`=17477; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17681 WHERE `criteria`=17653; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18610 WHERE `criteria`=18265; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2083 WHERE `criteria`=2099; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2268 WHERE `criteria`=5087; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5100 WHERE `criteria`=8742; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5111 WHERE `criteria`=8743; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9045 WHERE `criteria`=9039; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16570 WHERE `criteria`=16626; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16971 WHERE `criteria`=16915; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17926 WHERE `criteria`=17478; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17676 WHERE `criteria`=17654; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4336 WHERE `criteria`=4307; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2278 WHERE `criteria`=5097; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5138 WHERE `criteria`=6417; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16571 WHERE `criteria`=16627; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16972 WHERE `criteria`=16916; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2085 WHERE `criteria`=2101; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2269 WHERE `criteria`=5088; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=6399; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5137 WHERE `criteria`=6418; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9046 WHERE `criteria`=9040; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16572 WHERE `criteria`=16628; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16973 WHERE `criteria`=16917; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17928 WHERE `criteria`=17481; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18431 WHERE `criteria`=17632; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4315 WHERE `criteria`=4318; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2279 WHERE `criteria`=5098; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=6400; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5123 WHERE `criteria`=6419; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9049 WHERE `criteria`=9043; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16573 WHERE `criteria`=16629; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16974 WHERE `criteria`=16918; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17929 WHERE `criteria`=17482; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17678 WHERE `criteria`=17657; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5135 WHERE `criteria`=6401; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5122 WHERE `criteria`=6420; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9048 WHERE `criteria`=9042; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16574 WHERE `criteria`=16630; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16975 WHERE `criteria`=16919; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17930 WHERE `criteria`=17483; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17592 WHERE `criteria`=17603; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17679 WHERE `criteria`=17658; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4316 WHERE `criteria`=4319; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5134 WHERE `criteria`=6402; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5119 WHERE `criteria`=6421; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16575 WHERE `criteria`=16631; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16976 WHERE `criteria`=16920; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17593 WHERE `criteria`=17602; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17680 WHERE `criteria`=17659; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4317 WHERE `criteria`=4320; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5110 WHERE `criteria`=6422; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9038 WHERE `criteria`=9044; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16576 WHERE `criteria`=16632; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16977 WHERE `criteria`=16921; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4324 WHERE `criteria`=4325; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5133 WHERE `criteria`=6404; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5104 WHERE `criteria`=6423; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=9041 WHERE `criteria`=9047; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16577 WHERE `criteria`=16633; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16978 WHERE `criteria`=16922; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17932 WHERE `criteria`=17487; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18415 WHERE `criteria`=17623; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2086 WHERE `criteria`=2102; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5102 WHERE `criteria`=6424; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16578 WHERE `criteria`=16634; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16979 WHERE `criteria`=16923; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17934 WHERE `criteria`=17489; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16579 WHERE `criteria`=16635; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16980 WHERE `criteria`=16924; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17935 WHERE `criteria`=17490; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2082 WHERE `criteria`=18416; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5128 WHERE `criteria`=6407; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16580 WHERE `criteria`=16636; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16981 WHERE `criteria`=16925; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17936 WHERE `criteria`=17491; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=18417 WHERE `criteria`=17624; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=2087 WHERE `criteria`=2103; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16581 WHERE `criteria`=16637; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16982 WHERE `criteria`=16926; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17937 WHERE `criteria`=17492; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5120 WHERE `criteria`=6429; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16582 WHERE `criteria`=16638; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16983 WHERE `criteria`=16927; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17938 WHERE `criteria`=17493; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5126 WHERE `criteria`=6411; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16583 WHERE `criteria`=16639; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16984 WHERE `criteria`=16928; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17939 WHERE `criteria`=17494; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17425 WHERE `criteria`=18085; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5125 WHERE `criteria`=6412; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=5108 WHERE `criteria`=6431; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16584 WHERE `criteria`=16640; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16985 WHERE `criteria`=16929; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17940 WHERE `criteria`=17495; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16585 WHERE `criteria`=16641; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16986 WHERE `criteria`=16930; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17941 WHERE `criteria`=17496; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16586 WHERE `criteria`=16642; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16987 WHERE `criteria`=16931; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17942 WHERE `criteria`=17497; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16587 WHERE `criteria`=16643; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16988 WHERE `criteria`=16932; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17943 WHERE `criteria`=17498; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12230 WHERE `criteria`=13346; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16588 WHERE `criteria`=16644; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16989 WHERE `criteria`=16933; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17944 WHERE `criteria`=17499; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7422 WHERE `criteria`=7423; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12236 WHERE `criteria`=13328; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16589 WHERE `criteria`=16645; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16990 WHERE `criteria`=16934; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17946 WHERE `criteria`=17501; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=7421 WHERE `criteria`=7424; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12240 WHERE `criteria`=13329; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16590 WHERE `criteria`=16646; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16991 WHERE `criteria`=16935; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12244 WHERE `criteria`=13330; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12242 WHERE `criteria`=13349; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16591 WHERE `criteria`=16647; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16992 WHERE `criteria`=16936; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17947 WHERE `criteria`=17503; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=12246 WHERE `criteria`=13350; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16592 WHERE `criteria`=16648; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16993 WHERE `criteria`=16937; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17948 WHERE `criteria`=17504; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16593 WHERE `criteria`=16649; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16994 WHERE `criteria`=16938; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16594 WHERE `criteria`=16650; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16995 WHERE `criteria`=16939; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17949 WHERE `criteria`=17506; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16595 WHERE `criteria`=16651; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16996 WHERE `criteria`=16940; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16596 WHERE `criteria`=16652; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16997 WHERE `criteria`=16941; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17950 WHERE `criteria`=17508; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16597 WHERE `criteria`=16653; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16998 WHERE `criteria`=16942; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17951 WHERE `criteria`=17509; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16598 WHERE `criteria`=16654; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16999 WHERE `criteria`=16943; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16599 WHERE `criteria`=16655; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17000 WHERE `criteria`=16944; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17954 WHERE `criteria`=17513; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16600 WHERE `criteria`=16656; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17955 WHERE `criteria`=17514; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16601 WHERE `criteria`=16657; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17956 WHERE `criteria`=17515; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16602 WHERE `criteria`=16658; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16603 WHERE `criteria`=16659; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16604 WHERE `criteria`=16660; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16605 WHERE `criteria`=16661; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17961 WHERE `criteria`=17524; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16606 WHERE `criteria`=16662; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17962 WHERE `criteria`=17525; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17419 WHERE `criteria`=17421; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17963 WHERE `criteria`=17526; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=16607 WHERE `criteria`=16663; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17964 WHERE `criteria`=17527; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17420 WHERE `criteria`=17422; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17965 WHERE `criteria`=17528; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17966 WHERE `criteria`=17529; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17968 WHERE `criteria`=17905; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17969 WHERE `criteria`=17906; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=17970 WHERE `criteria`=17907; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4683 WHERE `criteria`=7955; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=4681 WHERE `criteria`=7954; +UPDATE `character_achievement_progress_old` SET `new_criteria_id`=6452 WHERE `criteria`=7951; + +-- +-- Table structure for table `character_achievement_progress` +-- + +DROP TABLE IF EXISTS `character_achievement_progress`; +CREATE TABLE `character_achievement_progress` ( + `guid` bigint(20) unsigned NOT NULL, + `criteria` int(10) unsigned NOT NULL, + `counter` bigint(20) unsigned NOT NULL, + `date` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`guid`,`criteria`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +INSERT INTO `character_achievement_progress` SELECT `guid`,`new_criteria_id`,MAX(`counter`),`date` FROM `character_achievement_progress_old` GROUP BY `guid`,`new_criteria_id`; + +RENAME TABLE `guild_achievement_progress` TO `guild_achievement_progress_old`; +ALTER TABLE `guild_achievement_progress_old` ADD `new_criteria_id` int(10) unsigned; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=`criteria`; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=34; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=35; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=36; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=37; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=38; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=39; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=40; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=41; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=73; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17411 WHERE `criteria`=100; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5896 WHERE `criteria`=102; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5899 WHERE `criteria`=140; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5896 WHERE `criteria`=166; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=168; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5896 WHERE `criteria`=176; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5899 WHERE `criteria`=177; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5377 WHERE `criteria`=189; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5381 WHERE `criteria`=195; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5443 WHERE `criteria`=199; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5459 WHERE `criteria`=203; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5463 WHERE `criteria`=209; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5467 WHERE `criteria`=211; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5452 WHERE `criteria`=215; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5455 WHERE `criteria`=218; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5899 WHERE `criteria`=221; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5897 WHERE `criteria`=222; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5897 WHERE `criteria`=223; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17411 WHERE `criteria`=224; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17411 WHERE `criteria`=225; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=230; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=231; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=232; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=233; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=234; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=236; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=306 WHERE `criteria`=307; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=329; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=330; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=331; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=332; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=333; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=334; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=335; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=336; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=337; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5100 WHERE `criteria`=351; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5110 WHERE `criteria`=357; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5104 WHERE `criteria`=365; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5120 WHERE `criteria`=372; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5122 WHERE `criteria`=379; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5123 WHERE `criteria`=381; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=382; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=439 WHERE `criteria`=416; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=440 WHERE `criteria`=417; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=438 WHERE `criteria`=418; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=436 WHERE `criteria`=420; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=473; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=474; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=475; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=472 WHERE `criteria`=476; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5137 WHERE `criteria`=520; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=521; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=523; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18522 WHERE `criteria`=524; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=19213 WHERE `criteria`=525; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18524 WHERE `criteria`=526; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18525 WHERE `criteria`=527; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=24413 WHERE `criteria`=528; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18527 WHERE `criteria`=529; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18529 WHERE `criteria`=530; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18528 WHERE `criteria`=531; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=24977 WHERE `criteria`=532; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18531 WHERE `criteria`=538; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3265 WHERE `criteria`=539; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18532 WHERE `criteria`=540; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18533 WHERE `criteria`=541; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3266 WHERE `criteria`=542; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18534 WHERE `criteria`=544; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18536 WHERE `criteria`=552; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3239 WHERE `criteria`=555; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3240 WHERE `criteria`=556; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3243 WHERE `criteria`=557; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3241 WHERE `criteria`=558; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3242 WHERE `criteria`=559; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3245 WHERE `criteria`=560; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3246 WHERE `criteria`=561; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3247 WHERE `criteria`=562; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3248 WHERE `criteria`=563; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3249 WHERE `criteria`=564; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3250 WHERE `criteria`=565; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3251 WHERE `criteria`=566; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3252 WHERE `criteria`=567; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3253 WHERE `criteria`=568; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3244 WHERE `criteria`=573; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3273 WHERE `criteria`=594; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3272 WHERE `criteria`=595; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3274 WHERE `criteria`=596; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18891 WHERE `criteria`=598; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3254 WHERE `criteria`=599; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3256 WHERE `criteria`=601; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3257 WHERE `criteria`=602; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3258 WHERE `criteria`=603; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18537 WHERE `criteria`=604; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3259 WHERE `criteria`=605; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3260 WHERE `criteria`=606; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3261 WHERE `criteria`=607; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5739 WHERE `criteria`=608; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=616; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=728 WHERE `criteria`=708; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=729 WHERE `criteria`=709; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=732 WHERE `criteria`=712; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=733 WHERE `criteria`=713; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=736 WHERE `criteria`=722; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=739 WHERE `criteria`=725; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=740 WHERE `criteria`=726; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=707 WHERE `criteria`=727; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=710 WHERE `criteria`=730; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=711 WHERE `criteria`=731; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=714 WHERE `criteria`=734; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=721 WHERE `criteria`=735; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=723 WHERE `criteria`=737; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=724 WHERE `criteria`=738; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4617 WHERE `criteria`=741; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4494 WHERE `criteria`=742; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8146 WHERE `criteria`=746; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2002 WHERE `criteria`=752; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=977; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=978; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=979; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=980; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=981; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=984; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=985; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5318 WHERE `criteria`=986; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5333 WHERE `criteria`=987; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5319 WHERE `criteria`=988; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5334 WHERE `criteria`=989; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5320 WHERE `criteria`=990; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5335 WHERE `criteria`=991; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5322 WHERE `criteria`=1003; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5336 WHERE `criteria`=1009; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=306 WHERE `criteria`=1829; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=306 WHERE `criteria`=1830; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=1870; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=1871; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=1873; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4760 WHERE `criteria`=1875; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4756 WHERE `criteria`=1877; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4761 WHERE `criteria`=1878; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4755 WHERE `criteria`=1879; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5337 WHERE `criteria`=1880; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4757 WHERE `criteria`=1881; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5321 WHERE `criteria`=1882; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4758 WHERE `criteria`=1883; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4763 WHERE `criteria`=1884; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5706 WHERE `criteria`=1886; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5702 WHERE `criteria`=1891; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20777 WHERE `criteria`=1902; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2011 WHERE `criteria`=2014; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2011 WHERE `criteria`=2017; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4737 WHERE `criteria`=2022; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5328 WHERE `criteria`=2032; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4738 WHERE `criteria`=2035; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4739 WHERE `criteria`=2036; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4740 WHERE `criteria`=2037; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5436 WHERE `criteria`=2041; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4750 WHERE `criteria`=2051; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4766 WHERE `criteria`=2052; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4767 WHERE `criteria`=2053; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2204 WHERE `criteria`=2211; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2232; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2233; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2234; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2235; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=2236; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3631 WHERE `criteria`=2239; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4741 WHERE `criteria`=2415; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4742 WHERE `criteria`=2416; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4743 WHERE `criteria`=2417; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=2428; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=2429; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3354; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4092 WHERE `criteria`=3355; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4091 WHERE `criteria`=3361; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=451 WHERE `criteria`=3381; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=3382; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=452 WHERE `criteria`=3383; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3431 WHERE `criteria`=3416; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3506; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3507; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3510; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3511; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=3512; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4092 WHERE `criteria`=3513; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8885 WHERE `criteria`=3527; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18619 WHERE `criteria`=3542; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5448 WHERE `criteria`=3574; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5439 WHERE `criteria`=3578; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5447 WHERE `criteria`=3582; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3912 WHERE `criteria`=3583; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8889 WHERE `criteria`=3594; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3629 WHERE `criteria`=3680; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5111 WHERE `criteria`=3834; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6403 WHERE `criteria`=3837; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5133 WHERE `criteria`=3841; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6410 WHERE `criteria`=3844; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5135 WHERE `criteria`=3847; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3623 WHERE `criteria`=3865; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3585 WHERE `criteria`=3913; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3586 WHERE `criteria`=3914; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4225 WHERE `criteria`=4219; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3268 WHERE `criteria`=4439; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5898 WHERE `criteria`=4501; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5898 WHERE `criteria`=4502; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=4985; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=75 WHERE `criteria`=5040; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=78 WHERE `criteria`=5041; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=74 WHERE `criteria`=5042; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=76 WHERE `criteria`=5044; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2260 WHERE `criteria`=5079; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6430 WHERE `criteria`=5101; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6403 WHERE `criteria`=5103; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6426 WHERE `criteria`=5112; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6428 WHERE `criteria`=5113; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6425 WHERE `criteria`=5114; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6406 WHERE `criteria`=5127; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6410 WHERE `criteria`=5130; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6409 WHERE `criteria`=5131; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6405 WHERE `criteria`=5132; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=5139; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=5223; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=5224; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=5227; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=5240; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=5241; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=5242; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=5243; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=5244; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=5249; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=5250; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=5251; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=5252; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=5253; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=5254; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=5255; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=5256; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=5257; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2024 WHERE `criteria`=5306; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5500 WHERE `criteria`=5507; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5499 WHERE `criteria`=5508; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5501 WHERE `criteria`=5509; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5502 WHERE `criteria`=5510; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5503 WHERE `criteria`=5511; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5536 WHERE `criteria`=5544; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5537 WHERE `criteria`=5545; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5538 WHERE `criteria`=5546; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5539 WHERE `criteria`=5547; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5540 WHERE `criteria`=5548; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=5562; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5380 WHERE `criteria`=5621; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=845 WHERE `criteria`=5662; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5278 WHERE `criteria`=5680; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5137 WHERE `criteria`=5692; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=5711; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=5712; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=5713; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=5714; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=5715; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=5717; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=5719; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8594 WHERE `criteria`=5731; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8593 WHERE `criteria`=5732; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8591 WHERE `criteria`=5733; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5739 WHERE `criteria`=5734; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8589 WHERE `criteria`=5736; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8590 WHERE `criteria`=5737; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8587 WHERE `criteria`=5738; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5729 WHERE `criteria`=5740; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=104 WHERE `criteria`=5741; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5898 WHERE `criteria`=5746; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5756; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5757; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5758; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5759; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5760; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5288 WHERE `criteria`=5761; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=847 WHERE `criteria`=5763; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5831 WHERE `criteria`=5818; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12635 WHERE `criteria`=6159; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6181 WHERE `criteria`=6174; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8705 WHERE `criteria`=6332; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6250 WHERE `criteria`=6342; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8745 WHERE `criteria`=6384; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8744 WHERE `criteria`=6385; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8744 WHERE `criteria`=6395; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8745 WHERE `criteria`=6396; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5124 WHERE `criteria`=6397; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=6413; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5117 WHERE `criteria`=6416; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9178 WHERE `criteria`=6440; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6450 WHERE `criteria`=6600; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11960 WHERE `criteria`=6608; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11961 WHERE `criteria`=6613; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6751; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6752; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6753; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6754; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=6755; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1832 WHERE `criteria`=6758; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6790; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6791; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6792; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6793; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6794; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6795; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6796; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6797; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=6798; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5613 WHERE `criteria`=6855; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5138 WHERE `criteria`=7184; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7266; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7267; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7268; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7269; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7262 WHERE `criteria`=7270; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6436 WHERE `criteria`=7365; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7404; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7405; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7406; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7403 WHERE `criteria`=7407; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9720 WHERE `criteria`=7415; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9719 WHERE `criteria`=7418; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=7550; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=7551; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=7552; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7152 WHERE `criteria`=7608; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7165 WHERE `criteria`=7609; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7654 WHERE `criteria`=7642; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9758 WHERE `criteria`=7722; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9119 WHERE `criteria`=9120; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=9223; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4787 WHERE `criteria`=9224; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=9598; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5328 WHERE `criteria`=9678; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5332 WHERE `criteria`=9679; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5329 WHERE `criteria`=9680; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5330 WHERE `criteria`=9681; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5331 WHERE `criteria`=9682; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5314 WHERE `criteria`=9683; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5313 WHERE `criteria`=9684; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5317 WHERE `criteria`=9685; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5315 WHERE `criteria`=9686; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5316 WHERE `criteria`=9687; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11320 WHERE `criteria`=9773; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11321 WHERE `criteria`=9774; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11322 WHERE `criteria`=9775; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11323 WHERE `criteria`=9776; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11324 WHERE `criteria`=9777; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11326 WHERE `criteria`=9784; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11328 WHERE `criteria`=9786; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11329 WHERE `criteria`=9787; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9863 WHERE `criteria`=9871; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2024 WHERE `criteria`=9898; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2024 WHERE `criteria`=9904; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9968 WHERE `criteria`=9938; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9972 WHERE `criteria`=9940; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9974 WHERE `criteria`=9941; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9978 WHERE `criteria`=9943; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9992 WHERE `criteria`=9950; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9994 WHERE `criteria`=9951; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9996 WHERE `criteria`=9952; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9969 WHERE `criteria`=9954; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9971 WHERE `criteria`=9955; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9973 WHERE `criteria`=9956; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9993 WHERE `criteria`=9966; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9995 WHERE `criteria`=9967; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9968 WHERE `criteria`=9999; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9969 WHERE `criteria`=10003; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9948 WHERE `criteria`=10023; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9964 WHERE `criteria`=10025; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=23416 WHERE `criteria`=10133; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10800 WHERE `criteria`=10289; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=23417 WHERE `criteria`=10290; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10558 WHERE `criteria`=10303; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10561 WHERE `criteria`=10310; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10801 WHERE `criteria`=10314; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9996 WHERE `criteria`=10338; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10542 WHERE `criteria`=10339; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10560 WHERE `criteria`=10408; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10279 WHERE `criteria`=10417; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10562 WHERE `criteria`=10453; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13363 WHERE `criteria`=10520; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10565 WHERE `criteria`=10567; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10566 WHERE `criteria`=10569; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10580 WHERE `criteria`=10578; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10581 WHERE `criteria`=10579; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10566 WHERE `criteria`=10698; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=10718; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11266 WHERE `criteria`=10940; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6208 WHERE `criteria`=10961; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4749 WHERE `criteria`=11278; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5327 WHERE `criteria`=11279; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17904 WHERE `criteria`=11418; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17904 WHERE `criteria`=11419; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13325 WHERE `criteria`=11478; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13344 WHERE `criteria`=11479; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11749 WHERE `criteria`=11502; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12231 WHERE `criteria`=11542; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12230 WHERE `criteria`=11679; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13326 WHERE `criteria`=11684; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12229 WHERE `criteria`=11689; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13325 WHERE `criteria`=11902; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13344 WHERE `criteria`=11903; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13368 WHERE `criteria`=11958; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17904 WHERE `criteria`=11959; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13326 WHERE `criteria`=12228; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13327 WHERE `criteria`=12232; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13347 WHERE `criteria`=12234; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13348 WHERE `criteria`=12238; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11420 WHERE `criteria`=12302; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12539 WHERE `criteria`=12310; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12539 WHERE `criteria`=12318; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6824 WHERE `criteria`=12418; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12545 WHERE `criteria`=12547; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13345 WHERE `criteria`=12559; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13315 WHERE `criteria`=12738; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13317 WHERE `criteria`=12740; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13320 WHERE `criteria`=12742; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13167 WHERE `criteria`=12745; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13182 WHERE `criteria`=12747; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13177 WHERE `criteria`=12750; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13138 WHERE `criteria`=12818; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13137 WHERE `criteria`=12825; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13138 WHERE `criteria`=12826; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13324 WHERE `criteria`=12827; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13343 WHERE `criteria`=12828; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13029 WHERE `criteria`=13030; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13029 WHERE `criteria`=13031; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13090 WHERE `criteria`=13039; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13116 WHERE `criteria`=13043; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13122 WHERE `criteria`=13046; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13125 WHERE `criteria`=13048; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13091 WHERE `criteria`=13050; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13117 WHERE `criteria`=13054; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13123 WHERE `criteria`=13057; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13126 WHERE `criteria`=13059; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13071 WHERE `criteria`=13061; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13075 WHERE `criteria`=13066; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13331 WHERE `criteria`=13089; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13351 WHERE `criteria`=13092; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13332 WHERE `criteria`=13093; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13333 WHERE `criteria`=13094; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13334 WHERE `criteria`=13095; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13336 WHERE `criteria`=13096; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13337 WHERE `criteria`=13097; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13339 WHERE `criteria`=13098; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13335 WHERE `criteria`=13099; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13338 WHERE `criteria`=13100; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13340 WHERE `criteria`=13101; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13341 WHERE `criteria`=13102; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13342 WHERE `criteria`=13103; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13352 WHERE `criteria`=13105; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13324 WHERE `criteria`=13107; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13343 WHERE `criteria`=13108; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13353 WHERE `criteria`=13109; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13354 WHERE `criteria`=13112; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13356 WHERE `criteria`=13115; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13357 WHERE `criteria`=13118; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13359 WHERE `criteria`=13121; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13355 WHERE `criteria`=13124; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13358 WHERE `criteria`=13127; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13360 WHERE `criteria`=13130; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13361 WHERE `criteria`=13133; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13362 WHERE `criteria`=13136; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13254 WHERE `criteria`=13255; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13260 WHERE `criteria`=13261; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13467 WHERE `criteria`=13452; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13468 WHERE `criteria`=13454; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=13498; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14520 WHERE `criteria`=13661; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14521 WHERE `criteria`=13662; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14517 WHERE `criteria`=13669; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14518 WHERE `criteria`=13670; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14519 WHERE `criteria`=13672; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13692; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13713; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13724; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13735; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13758; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13769; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13784; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13785; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13786; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13787; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=13788; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13789; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13790; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13791; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13792; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13793; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=13794; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13806; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13807; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13808; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13809; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13810; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=13811; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13813; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13814; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13815; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13816; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=13817; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=13818; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13975 WHERE `criteria`=13841; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13980 WHERE `criteria`=13843; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15475 WHERE `criteria`=13879; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=13880; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14794 WHERE `criteria`=13881; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5798 WHERE `criteria`=13920; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13836 WHERE `criteria`=13973; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13845 WHERE `criteria`=13982; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13848 WHERE `criteria`=13983; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13607 WHERE `criteria`=13984; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14068 WHERE `criteria`=14037; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5213 WHERE `criteria`=14173; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5212 WHERE `criteria`=14174; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5214 WHERE `criteria`=14175; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5215 WHERE `criteria`=14176; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5216 WHERE `criteria`=14177; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5217 WHERE `criteria`=14178; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5218 WHERE `criteria`=14179; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5219 WHERE `criteria`=14180; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5018 WHERE `criteria`=14181; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5220 WHERE `criteria`=14182; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5221 WHERE `criteria`=14183; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14596 WHERE `criteria`=14267; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4991 WHERE `criteria`=14280; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16776 WHERE `criteria`=14347; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16778 WHERE `criteria`=14348; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16784 WHERE `criteria`=14349; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16780 WHERE `criteria`=14350; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16782 WHERE `criteria`=14351; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16786 WHERE `criteria`=14352; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16788 WHERE `criteria`=14353; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16789 WHERE `criteria`=14372; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16790 WHERE `criteria`=14382; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16254 WHERE `criteria`=14385; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16258 WHERE `criteria`=14398; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16262 WHERE `criteria`=14399; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16266 WHERE `criteria`=14400; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14401 WHERE `criteria`=14402; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16268 WHERE `criteria`=14406; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16274 WHERE `criteria`=14407; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16278 WHERE `criteria`=14408; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16248 WHERE `criteria`=14409; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16282 WHERE `criteria`=14410; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16284 WHERE `criteria`=14411; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16288 WHERE `criteria`=14412; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16290 WHERE `criteria`=14413; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16296 WHERE `criteria`=14414; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14219 WHERE `criteria`=14419; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5318 WHERE `criteria`=14454; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2048 WHERE `criteria`=14457; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5333 WHERE `criteria`=14458; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14517 WHERE `criteria`=14501; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=14758; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5020 WHERE `criteria`=14773; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5031 WHERE `criteria`=14784; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=14807; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15703 WHERE `criteria`=14808; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14596 WHERE `criteria`=14809; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16512 WHERE `criteria`=14815; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16512 WHERE `criteria`=14816; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14869 WHERE `criteria`=14817; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14871 WHERE `criteria`=14818; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5601 WHERE `criteria`=14829; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5603 WHERE `criteria`=14831; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16510 WHERE `criteria`=14867; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16512 WHERE `criteria`=14868; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16511 WHERE `criteria`=14872; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16513 WHERE `criteria`=14873; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15475 WHERE `criteria`=14899; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14918 WHERE `criteria`=14900; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14918 WHERE `criteria`=14908; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16513 WHERE `criteria`=14926; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16513 WHERE `criteria`=14927; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14500 WHERE `criteria`=14998; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=14999; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=15000; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=15001; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=447 WHERE `criteria`=15002; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15005; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15006; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15691 WHERE `criteria`=15043; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15691 WHERE `criteria`=15044; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14812 WHERE `criteria`=15045; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15204 WHERE `criteria`=15188; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15286; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15287; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15288; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15290; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15291; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15292; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=15293; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15294; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15295; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15296; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15297; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15298; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15299; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15301; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15302; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15303; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15304; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15305; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15306; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15307; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15309; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15310; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15311; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15312; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15313; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15314; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15315; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15316; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15317; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15318; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15319; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15320; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15321; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15308 WHERE `criteria`=15322; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15300 WHERE `criteria`=15323; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=15326; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=15362; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5565 WHERE `criteria`=15373; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=15374; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=15375; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=15376; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=15377; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5592 WHERE `criteria`=15378; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=15379; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=15380; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=15381; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=15382; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=15383; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=15384; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=15385; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=15386; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=15387; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13812 WHERE `criteria`=15388; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13878 WHERE `criteria`=15427; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13864 WHERE `criteria`=15428; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15697 WHERE `criteria`=15443; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15699 WHERE `criteria`=15444; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15701 WHERE `criteria`=15445; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13829 WHERE `criteria`=15446; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13829 WHERE `criteria`=15452; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15458 WHERE `criteria`=15465; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15464 WHERE `criteria`=15467; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13757 WHERE `criteria`=15474; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=15476; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13576 WHERE `criteria`=15672; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=15688; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4093 WHERE `criteria`=15689; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15705 WHERE `criteria`=15704; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14812 WHERE `criteria`=15706; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7221 WHERE `criteria`=15711; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13611 WHERE `criteria`=16019; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13550 WHERE `criteria`=16050; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16191 WHERE `criteria`=16192; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16191 WHERE `criteria`=16193; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16194 WHERE `criteria`=16195; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16194 WHERE `criteria`=16196; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16305 WHERE `criteria`=16306; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16305 WHERE `criteria`=16307; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16305 WHERE `criteria`=16308; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16309 WHERE `criteria`=16310; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16309 WHERE `criteria`=16311; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16309 WHERE `criteria`=16312; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16528 WHERE `criteria`=16514; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16521 WHERE `criteria`=16529; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16515 WHERE `criteria`=16532; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16522 WHERE `criteria`=16533; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16516 WHERE `criteria`=16534; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16518 WHERE `criteria`=16536; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16517 WHERE `criteria`=16538; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16524 WHERE `criteria`=16539; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16552 WHERE `criteria`=16608; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=982 WHERE `criteria`=16773; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4984 WHERE `criteria`=16819; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4092 WHERE `criteria`=16820; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16872 WHERE `criteria`=16863; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16871 WHERE `criteria`=16864; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17002 WHERE `criteria`=16887; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17001 WHERE `criteria`=16897; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17004 WHERE `criteria`=17005; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17004 WHERE `criteria`=17006; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17412 WHERE `criteria`=17414; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=24125 WHERE `criteria`=17415; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18074 WHERE `criteria`=17436; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18070 WHERE `criteria`=17438; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18066 WHERE `criteria`=17440; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18058 WHERE `criteria`=17442; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18050 WHERE `criteria`=17444; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18054 WHERE `criteria`=17446; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18062 WHERE `criteria`=17448; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=17546; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15289 WHERE `criteria`=17547; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18103 WHERE `criteria`=18105; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18144; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18199 WHERE `criteria`=18204; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18644 WHERE `criteria`=18270; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18649 WHERE `criteria`=18278; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18294 WHERE `criteria`=18293; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18093 WHERE `criteria`=18333; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13256 WHERE `criteria`=18348; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18590 WHERE `criteria`=18453; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18575 WHERE `criteria`=18454; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18573 WHERE `criteria`=18456; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18571 WHERE `criteria`=18458; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18569 WHERE `criteria`=18460; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18567 WHERE `criteria`=18462; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18565 WHERE `criteria`=18464; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18563 WHERE `criteria`=18466; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18561 WHERE `criteria`=18468; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18542 WHERE `criteria`=18472; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18544 WHERE `criteria`=18473; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18543 WHERE `criteria`=18474; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18488; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18489 WHERE `criteria`=18491; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18544 WHERE `criteria`=18501; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=19213 WHERE `criteria`=18523; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15308 WHERE `criteria`=18864; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15308 WHERE `criteria`=18865; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6845 WHERE `criteria`=170; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5378 WHERE `criteria`=190; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5382 WHERE `criteria`=196; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5444 WHERE `criteria`=200; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5460 WHERE `criteria`=205; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5465 WHERE `criteria`=207; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5468 WHERE `criteria`=213; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5456 WHERE `criteria`=220; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6430 WHERE `criteria`=352; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6425 WHERE `criteria`=358; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6426 WHERE `criteria`=366; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5108 WHERE `criteria`=373; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=19263 WHERE `criteria`=549; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18471 WHERE `criteria`=551; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5735 WHERE `criteria`=609; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5313 WHERE `criteria`=995; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=1007; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=1010; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5707 WHERE `criteria`=1887; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5703 WHERE `criteria`=1892; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5337 WHERE `criteria`=2013; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5321 WHERE `criteria`=2016; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5332 WHERE `criteria`=2034; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5437 WHERE `criteria`=2042; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=2046; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3432 WHERE `criteria`=3417; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8884 WHERE `criteria`=3528; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18622 WHERE `criteria`=3543; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5449 WHERE `criteria`=3575; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5440 WHERE `criteria`=3579; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8878 WHERE `criteria`=3595; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4762 WHERE `criteria`=3610; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5126 WHERE `criteria`=3835; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6406 WHERE `criteria`=3838; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5128 WHERE `criteria`=3842; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5125 WHERE `criteria`=3845; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4480 WHERE `criteria`=4481; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4474 WHERE `criteria`=4485; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4474 WHERE `criteria`=4486; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=744 WHERE `criteria`=4497; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=744 WHERE `criteria`=4498; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5019 WHERE `criteria`=5043; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2270 WHERE `criteria`=5089; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2419 WHERE `criteria`=5307; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5701 WHERE `criteria`=5563; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=5568; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5464 WHERE `criteria`=5631; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5279 WHERE `criteria`=5681; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5138 WHERE `criteria`=5691; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5832 WHERE `criteria`=5819; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2070 WHERE `criteria`=5820; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=106 WHERE `criteria`=5892; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6182 WHERE `criteria`=6175; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8706 WHERE `criteria`=6333; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8739 WHERE `criteria`=6348; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6398 WHERE `criteria`=6414; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9179 WHERE `criteria`=6441; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6715 WHERE `criteria`=6601; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12078 WHERE `criteria`=6609; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12079 WHERE `criteria`=6614; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5615 WHERE `criteria`=6858; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7412 WHERE `criteria`=7416; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9720 WHERE `criteria`=7419; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7655 WHERE `criteria`=7643; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9759 WHERE `criteria`=7723; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3228 WHERE `criteria`=7767; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5735 WHERE `criteria`=8588; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8907 WHERE `criteria`=8909; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=9160; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11320 WHERE `criteria`=9658; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11321 WHERE `criteria`=9659; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11322 WHERE `criteria`=9660; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11323 WHERE `criteria`=9661; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11324 WHERE `criteria`=9662; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9783 WHERE `criteria`=9663; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11326 WHERE `criteria`=9664; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9785 WHERE `criteria`=9665; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11328 WHERE `criteria`=9666; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11329 WHERE `criteria`=9667; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9864 WHERE `criteria`=9872; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9673 WHERE `criteria`=9899; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9668 WHERE `criteria`=9905; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9939 WHERE `criteria`=10000; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9971 WHERE `criteria`=10004; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9978 WHERE `criteria`=10008; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9959 WHERE `criteria`=10016; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9994 WHERE `criteria`=10024; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9995 WHERE `criteria`=10026; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10558 WHERE `criteria`=10438; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10561 WHERE `criteria`=10454; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13364 WHERE `criteria`=10521; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6210 WHERE `criteria`=10965; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11330 WHERE `criteria`=11331; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12179 WHERE `criteria`=11498; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12235 WHERE `criteria`=11546; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13347 WHERE `criteria`=11680; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13327 WHERE `criteria`=11685; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12233 WHERE `criteria`=11690; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12298 WHERE `criteria`=12303; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12545 WHERE `criteria`=12311; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12545 WHERE `criteria`=12319; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6830 WHERE `criteria`=12419; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13316 WHERE `criteria`=12739; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13318 WHERE `criteria`=12741; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13168 WHERE `criteria`=12746; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13173 WHERE `criteria`=12748; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13321 WHERE `criteria`=12990; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13179 WHERE `criteria`=12991; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13104 WHERE `criteria`=13040; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13119 WHERE `criteria`=13044; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13131 WHERE `criteria`=13047; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13134 WHERE `criteria`=13049; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13106 WHERE `criteria`=13051; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13120 WHERE `criteria`=13055; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13132 WHERE `criteria`=13058; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13135 WHERE `criteria`=13060; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13072 WHERE `criteria`=13062; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13076 WHERE `criteria`=13067; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13253 WHERE `criteria`=13259; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13986 WHERE `criteria`=13664; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13682; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13693; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13714; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13725; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13736; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13759; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13770; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5566 WHERE `criteria`=13819; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5799 WHERE `criteria`=13921; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=22241 WHERE `criteria`=14340; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14220 WHERE `criteria`=14420; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5319 WHERE `criteria`=14455; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5334 WHERE `criteria`=14459; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14518 WHERE `criteria`=14502; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2049 WHERE `criteria`=14597; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5021 WHERE `criteria`=14774; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5032 WHERE `criteria`=14785; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14919 WHERE `criteria`=14901; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14919 WHERE `criteria`=14909; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15205 WHERE `criteria`=15189; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13865 WHERE `criteria`=15429; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13830 WHERE `criteria`=15447; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13830 WHERE `criteria`=15453; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16267 WHERE `criteria`=15656; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16255 WHERE `criteria`=15657; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16259 WHERE `criteria`=15658; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16263 WHERE `criteria`=15659; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16269 WHERE `criteria`=15660; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16275 WHERE `criteria`=15661; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16249 WHERE `criteria`=15662; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16279 WHERE `criteria`=15663; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16283 WHERE `criteria`=15664; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16285 WHERE `criteria`=15665; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16289 WHERE `criteria`=15666; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16291 WHERE `criteria`=15667; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16297 WHERE `criteria`=15668; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15972 WHERE `criteria`=15979; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15698 WHERE `criteria`=16023; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15700 WHERE `criteria`=16024; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15702 WHERE `criteria`=16025; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20778 WHERE `criteria`=16026; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13551 WHERE `criteria`=16051; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1872 WHERE `criteria`=16091; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16096; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16098; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16100; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16094 WHERE `criteria`=16102; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16498 WHERE `criteria`=16507; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16553 WHERE `criteria`=16609; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16945 WHERE `criteria`=16888; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16954 WHERE `criteria`=16898; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18075 WHERE `criteria`=17437; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18071 WHERE `criteria`=17439; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18067 WHERE `criteria`=17441; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18059 WHERE `criteria`=17443; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18051 WHERE `criteria`=17445; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18055 WHERE `criteria`=17447; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18063 WHERE `criteria`=17449; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17909 WHERE `criteria`=17454; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18429 WHERE `criteria`=17625; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17683 WHERE `criteria`=17705; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18104 WHERE `criteria`=18106; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6552 WHERE `criteria`=18253; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18645 WHERE `criteria`=18266; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18650 WHERE `criteria`=18272; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18576 WHERE `criteria`=18455; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18574 WHERE `criteria`=18457; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18572 WHERE `criteria`=18459; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18570 WHERE `criteria`=18461; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18568 WHERE `criteria`=18463; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18566 WHERE `criteria`=18465; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18564 WHERE `criteria`=18467; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18562 WHERE `criteria`=18469; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18490 WHERE `criteria`=18492; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6846 WHERE `criteria`=171; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5379 WHERE `criteria`=191; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5383 WHERE `criteria`=197; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5445 WHERE `criteria`=201; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5461 WHERE `criteria`=204; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5466 WHERE `criteria`=208; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5469 WHERE `criteria`=212; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5453 WHERE `criteria`=216; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5457 WHERE `criteria`=219; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5102 WHERE `criteria`=353; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5117 WHERE `criteria`=359; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6428 WHERE `criteria`=367; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18535 WHERE `criteria`=547; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8589 WHERE `criteria`=610; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5314 WHERE `criteria`=992; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=1006; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=1012; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1825 WHERE `criteria`=1826; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5708 WHERE `criteria`=1888; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5704 WHERE `criteria`=1893; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4757 WHERE `criteria`=2012; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4757 WHERE `criteria`=2015; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5438 WHERE `criteria`=2043; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3433 WHERE `criteria`=3418; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8883 WHERE `criteria`=3529; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5450 WHERE `criteria`=3576; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5441 WHERE `criteria`=3580; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8888 WHERE `criteria`=3596; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6405 WHERE `criteria`=3836; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5124 WHERE `criteria`=3839; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6409 WHERE `criteria`=3843; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3624 WHERE `criteria`=3866; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4474 WHERE `criteria`=4470; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4490 WHERE `criteria`=4483; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5336 WHERE `criteria`=4752; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=325 WHERE `criteria`=4789; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2261 WHERE `criteria`=5080; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2420 WHERE `criteria`=5308; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5696 WHERE `criteria`=5564; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5462 WHERE `criteria`=5630; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5123 WHERE `criteria`=5647; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5280 WHERE `criteria`=5682; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5833 WHERE `criteria`=5821; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=105 WHERE `criteria`=5893; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6184 WHERE `criteria`=6177; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7339 WHERE `criteria`=6291; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8708 WHERE `criteria`=6334; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=6415; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6738 WHERE `criteria`=6602; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12080 WHERE `criteria`=6610; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12081 WHERE `criteria`=6615; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9167 WHERE `criteria`=6668; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5610 WHERE `criteria`=6850; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7805 WHERE `criteria`=7192; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7806 WHERE `criteria`=7193; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7656 WHERE `criteria`=7644; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9760 WHERE `criteria`=7724; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5730 WHERE `criteria`=8592; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7412 WHERE `criteria`=9718; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9869 WHERE `criteria`=9877; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9674 WHERE `criteria`=9900; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9669 WHERE `criteria`=9906; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9939 WHERE `criteria`=9970; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9974 WHERE `criteria`=10001; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9957 WHERE `criteria`=10005; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9992 WHERE `criteria`=10010; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9993 WHERE `criteria`=10018; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10559 WHERE `criteria`=10444; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10563 WHERE `criteria`=10455; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13365 WHERE `criteria`=10522; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12181 WHERE `criteria`=11500; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11751 WHERE `criteria`=11504; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12239 WHERE `criteria`=11678; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13348 WHERE `criteria`=11681; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12236 WHERE `criteria`=11686; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12237 WHERE `criteria`=11691; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12299 WHERE `criteria`=12304; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12320 WHERE `criteria`=12312; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10041 WHERE `criteria`=12420; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13323 WHERE `criteria`=12743; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13319 WHERE `criteria`=12744; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13175 WHERE `criteria`=12749; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13181 WHERE `criteria`=12751; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=12999; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=13001; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13110 WHERE `criteria`=13041; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13128 WHERE `criteria`=13045; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13111 WHERE `criteria`=13052; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13129 WHERE `criteria`=13056; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13073 WHERE `criteria`=13063; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13077 WHERE `criteria`=13068; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13987 WHERE `criteria`=13665; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13683; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13694; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13715; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13726; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13737; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13760; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13771; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5567 WHERE `criteria`=13820; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13918 WHERE `criteria`=13919; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1020 WHERE `criteria`=14038; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14221 WHERE `criteria`=14421; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5320 WHERE `criteria`=14456; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5335 WHERE `criteria`=14460; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13671 WHERE `criteria`=14503; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4767 WHERE `criteria`=14598; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5022 WHERE `criteria`=14775; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5033 WHERE `criteria`=14786; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14920 WHERE `criteria`=14902; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14920 WHERE `criteria`=14910; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15206 WHERE `criteria`=15190; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13866 WHERE `criteria`=15430; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13832 WHERE `criteria`=15448; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13832 WHERE `criteria`=15454; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15973 WHERE `criteria`=15980; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20779 WHERE `criteria`=16027; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13562 WHERE `criteria`=16052; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16097; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16099; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16101; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16095 WHERE `criteria`=16103; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16499 WHERE `criteria`=16502; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16554 WHERE `criteria`=16610; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16946 WHERE `criteria`=16889; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16955 WHERE `criteria`=16899; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17661 WHERE `criteria`=17638; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17684 WHERE `criteria`=17706; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18198 WHERE `criteria`=18201; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7313 WHERE `criteria`=18248; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18646 WHERE `criteria`=18267; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18651 WHERE `criteria`=18274; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5380 WHERE `criteria`=192; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5384 WHERE `criteria`=198; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5462 WHERE `criteria`=206; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5464 WHERE `criteria`=210; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5454 WHERE `criteria`=217; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3503 WHERE `criteria`=228; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5119 WHERE `criteria`=360; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5317 WHERE `criteria`=996; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=1008; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=1011; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5458 WHERE `criteria`=1827; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5709 WHERE `criteria`=1889; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5705 WHERE `criteria`=1894; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5329 WHERE `criteria`=2033; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3434 WHERE `criteria`=3419; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8878 WHERE `criteria`=3531; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18621 WHERE `criteria`=3545; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5451 WHERE `criteria`=3577; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5442 WHERE `criteria`=3581; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8886 WHERE `criteria`=3597; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5608 WHERE `criteria`=3704; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5134 WHERE `criteria`=3840; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4437 WHERE `criteria`=4269; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4487 WHERE `criteria`=4477; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5322 WHERE `criteria`=4753; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=326 WHERE `criteria`=4790; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2271 WHERE `criteria`=5090; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5609 WHERE `criteria`=5248; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2421 WHERE `criteria`=5309; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9994 WHERE `criteria`=5643; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5281 WHERE `criteria`=5683; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=23502 WHERE `criteria`=5809; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5834 WHERE `criteria`=5822; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5610 WHERE `criteria`=5878; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5743 WHERE `criteria`=5894; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6185 WHERE `criteria`=6178; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8707 WHERE `criteria`=6335; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6433 WHERE `criteria`=6381; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6433 WHERE `criteria`=6432; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9181 WHERE `criteria`=6445; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6961 WHERE `criteria`=6461; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7093 WHERE `criteria`=6603; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12082 WHERE `criteria`=6611; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12083 WHERE `criteria`=6616; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6434 WHERE `criteria`=6808; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5616 WHERE `criteria`=6834; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5614 WHERE `criteria`=6842; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5611 WHERE `criteria`=6854; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5617 WHERE `criteria`=6862; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5618 WHERE `criteria`=6866; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7338 WHERE `criteria`=7334; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7657 WHERE `criteria`=7645; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9761 WHERE `criteria`=7726; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9261 WHERE `criteria`=9099; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7412 WHERE `criteria`=9721; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9870 WHERE `criteria`=9878; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9675 WHERE `criteria`=9901; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9670 WHERE `criteria`=9907; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9995 WHERE `criteria`=9998; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9972 WHERE `criteria`=10002; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9973 WHERE `criteria`=10006; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9947 WHERE `criteria`=10014; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9963 WHERE `criteria`=10456; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13367 WHERE `criteria`=10523; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=10879; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11752 WHERE `criteria`=11505; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12243 WHERE `criteria`=11547; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12242 WHERE `criteria`=11682; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12240 WHERE `criteria`=11687; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12241 WHERE `criteria`=11692; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12300 WHERE `criteria`=12305; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12543 WHERE `criteria`=12313; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12543 WHERE `criteria`=12321; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11617 WHERE `criteria`=12421; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13000; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=13002; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13113 WHERE `criteria`=13042; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13114 WHERE `criteria`=13053; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13074 WHERE `criteria`=13064; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13078 WHERE `criteria`=13069; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13988 WHERE `criteria`=13666; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13684; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13695; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13716; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13727; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13738; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13761; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13772; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5722 WHERE `criteria`=13821; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1314 WHERE `criteria`=14039; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14222 WHERE `criteria`=14422; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14520 WHERE `criteria`=14504; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4766 WHERE `criteria`=14599; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5023 WHERE `criteria`=14776; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5034 WHERE `criteria`=14787; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14921 WHERE `criteria`=14903; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14921 WHERE `criteria`=14911; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15207 WHERE `criteria`=15191; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13867 WHERE `criteria`=15431; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13833 WHERE `criteria`=15449; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13833 WHERE `criteria`=15455; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15974 WHERE `criteria`=15981; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20780 WHERE `criteria`=16028; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13568 WHERE `criteria`=16053; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16301; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16302; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16303; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16300 WHERE `criteria`=16304; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16500 WHERE `criteria`=16503; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16535 WHERE `criteria`=16523; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16555 WHERE `criteria`=16611; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16947 WHERE `criteria`=16890; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16956 WHERE `criteria`=16900; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17911 WHERE `criteria`=17457; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17685 WHERE `criteria`=17707; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18197 WHERE `criteria`=18200; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6567 WHERE `criteria`=18254; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18647 WHERE `criteria`=18268; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5315 WHERE `criteria`=993; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=1005; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=1013; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5710 WHERE `criteria`=1890; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5330 WHERE `criteria`=2031; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2144 WHERE `criteria`=2146; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3435 WHERE `criteria`=3420; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9014 WHERE `criteria`=3534; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18623 WHERE `criteria`=3546; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9014 WHERE `criteria`=3598; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3625 WHERE `criteria`=3867; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4488 WHERE `criteria`=4478; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5337 WHERE `criteria`=4754; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5072 WHERE `criteria`=5057; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2262 WHERE `criteria`=5081; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=5570; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5458 WHERE `criteria`=5629; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5282 WHERE `criteria`=5684; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8587 WHERE `criteria`=5810; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5836 WHERE `criteria`=5824; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5615 WHERE `criteria`=5883; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5747 WHERE `criteria`=5895; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8160 WHERE `criteria`=6190; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12084 WHERE `criteria`=6612; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12085 WHERE `criteria`=6617; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7340 WHERE `criteria`=7336; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7658 WHERE `criteria`=7646; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9765 WHERE `criteria`=7729; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7859 WHERE `criteria`=7860; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=318 WHERE `criteria`=9578; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9865 WHERE `criteria`=9873; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9676 WHERE `criteria`=9902; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9671 WHERE `criteria`=9908; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9957 WHERE `criteria`=9975; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13366 WHERE `criteria`=10524; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10881 WHERE `criteria`=10878; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11753 WHERE `criteria`=11506; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12247 WHERE `criteria`=11549; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12246 WHERE `criteria`=11683; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12244 WHERE `criteria`=11688; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12245 WHERE `criteria`=11693; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12301 WHERE `criteria`=12306; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12541 WHERE `criteria`=12314; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12541 WHERE `criteria`=12322; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12504 WHERE `criteria`=12506; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13003; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=13004; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12244 WHERE `criteria`=13308; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12246 WHERE `criteria`=13310; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13685; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13696; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13717; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13728; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13739; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13762; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13773; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5569 WHERE `criteria`=13822; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1407 WHERE `criteria`=14040; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14223 WHERE `criteria`=14423; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14521 WHERE `criteria`=14505; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4750 WHERE `criteria`=14600; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5024 WHERE `criteria`=14777; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5035 WHERE `criteria`=14788; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14922 WHERE `criteria`=14904; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14922 WHERE `criteria`=14912; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15208 WHERE `criteria`=15192; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13868 WHERE `criteria`=15432; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13834 WHERE `criteria`=15450; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13834 WHERE `criteria`=15456; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15950 WHERE `criteria`=15956; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15975 WHERE `criteria`=15982; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20781 WHERE `criteria`=16029; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13552 WHERE `criteria`=16054; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16314; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16315; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16316; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16313 WHERE `criteria`=16317; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16556 WHERE `criteria`=16612; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16678 WHERE `criteria`=16677; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16948 WHERE `criteria`=16891; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16957 WHERE `criteria`=16901; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17663 WHERE `criteria`=17640; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8030 WHERE `criteria`=18255; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18648 WHERE `criteria`=18269; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18298 WHERE `criteria`=18292; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5316 WHERE `criteria`=994; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5331 WHERE `criteria`=2030; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3436 WHERE `criteria`=3421; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8882 WHERE `criteria`=3535; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18620 WHERE `criteria`=3547; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8882 WHERE `criteria`=3599; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4489 WHERE `criteria`=4479; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2272 WHERE `criteria`=5091; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5454 WHERE `criteria`=5628; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5283 WHERE `criteria`=5685; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5609 WHERE `criteria`=5877; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7235 WHERE `criteria`=7234; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7341 WHERE `criteria`=7337; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9766 WHERE `criteria`=7730; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9677 WHERE `criteria`=9903; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9672 WHERE `criteria`=9909; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11271 WHERE `criteria`=11262; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11754 WHERE `criteria`=11507; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13312 WHERE `criteria`=11559; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13312 WHERE `criteria`=12307; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12549 WHERE `criteria`=12315; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12549 WHERE `criteria`=12323; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13005; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10898 WHERE `criteria`=13006; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13342 WHERE `criteria`=13309; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13362 WHERE `criteria`=13311; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13686; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13697; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13718; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13729; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13740; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13763; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13774; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5716 WHERE `criteria`=13823; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14096 WHERE `criteria`=14041; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14224 WHERE `criteria`=14424; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4741 WHERE `criteria`=14506; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4741 WHERE `criteria`=14522; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=22255 WHERE `criteria`=14573; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=19473 WHERE `criteria`=14581; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12911 WHERE `criteria`=14601; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5025 WHERE `criteria`=14778; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5036 WHERE `criteria`=14789; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14923 WHERE `criteria`=14905; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14923 WHERE `criteria`=14913; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15234 WHERE `criteria`=15222; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13869 WHERE `criteria`=15433; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13835 WHERE `criteria`=15451; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13835 WHERE `criteria`=15457; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15951 WHERE `criteria`=15957; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15976 WHERE `criteria`=15983; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20784 WHERE `criteria`=16030; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13553 WHERE `criteria`=16055; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16530 WHERE `criteria`=16519; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16557 WHERE `criteria`=16613; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16949 WHERE `criteria`=16892; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16958 WHERE `criteria`=16902; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17913 WHERE `criteria`=17460; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18396 WHERE `criteria`=17614; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18115; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7957 WHERE `criteria`=18258; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2143 WHERE `criteria`=2145; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2205 WHERE `criteria`=2212; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3437 WHERE `criteria`=3422; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8879 WHERE `criteria`=3539; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7987 WHERE `criteria`=3548; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8887 WHERE `criteria`=3600; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3626 WHERE `criteria`=3868; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2263 WHERE `criteria`=5082; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5438 WHERE `criteria`=5623; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5284 WHERE `criteria`=5686; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5838 WHERE `criteria`=5826; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5611 WHERE `criteria`=5879; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7660 WHERE `criteria`=7648; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9959 WHERE `criteria`=9979; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11272 WHERE `criteria`=11263; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11755 WHERE `criteria`=11508; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13313 WHERE `criteria`=11560; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13313 WHERE `criteria`=12308; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12551 WHERE `criteria`=12316; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12551 WHERE `criteria`=12324; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11402 WHERE `criteria`=13007; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13687; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13698; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13719; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13730; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13741; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13764; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13775; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5571 WHERE `criteria`=13824; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14087 WHERE `criteria`=14042; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14225 WHERE `criteria`=14425; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4743 WHERE `criteria`=14507; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4743 WHERE `criteria`=14523; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5026 WHERE `criteria`=14779; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5037 WHERE `criteria`=14790; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14924 WHERE `criteria`=14906; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14924 WHERE `criteria`=14914; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15209 WHERE `criteria`=15194; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13870 WHERE `criteria`=15434; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20782 WHERE `criteria`=16031; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13574 WHERE `criteria`=16056; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16537 WHERE `criteria`=16526; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16558 WHERE `criteria`=16614; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16950 WHERE `criteria`=16893; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16959 WHERE `criteria`=16903; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17665 WHERE `criteria`=17642; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17720 WHERE `criteria`=17721; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17720 WHERE `criteria`=17722; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18116; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6903 WHERE `criteria`=18261; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18845; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2206 WHERE `criteria`=2213; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3438 WHERE `criteria`=3423; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8880 WHERE `criteria`=3540; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18624 WHERE `criteria`=3549; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8891 WHERE `criteria`=3601; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2273 WHERE `criteria`=5092; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=5572; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5442 WHERE `criteria`=5624; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5285 WHERE `criteria`=5687; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5839 WHERE `criteria`=5827; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5616 WHERE `criteria`=5884; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7661 WHERE `criteria`=7649; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9769 WHERE `criteria`=7734; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9868 WHERE `criteria`=9876; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11273 WHERE `criteria`=11264; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11756 WHERE `criteria`=11509; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13314 WHERE `criteria`=11561; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13314 WHERE `criteria`=12309; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12553 WHERE `criteria`=12317; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12553 WHERE `criteria`=12439; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13688; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13699; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13720; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13731; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13742; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13765; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13776; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5718 WHERE `criteria`=13825; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1373 WHERE `criteria`=14043; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14226 WHERE `criteria`=14426; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4737 WHERE `criteria`=14508; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4737 WHERE `criteria`=14524; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5027 WHERE `criteria`=14780; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5038 WHERE `criteria`=14791; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14925 WHERE `criteria`=14907; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14925 WHERE `criteria`=14915; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15212 WHERE `criteria`=15195; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15237 WHERE `criteria`=15224; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13871 WHERE `criteria`=15435; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=20783 WHERE `criteria`=16032; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14383 WHERE `criteria`=16057; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16531 WHERE `criteria`=16527; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16559 WHERE `criteria`=16615; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16951 WHERE `criteria`=16894; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16960 WHERE `criteria`=16904; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=24125 WHERE `criteria`=17413; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17915 WHERE `criteria`=17463; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17690 WHERE `criteria`=17712; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18114 WHERE `criteria`=18117; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6915 WHERE `criteria`=18262; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18844 WHERE `criteria`=18846; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18847; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2210 WHERE `criteria`=2216; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3439 WHERE `criteria`=3424; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8881 WHERE `criteria`=3541; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=8890 WHERE `criteria`=3602; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5446 WHERE `criteria`=5625; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5286 WHERE `criteria`=5688; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5840 WHERE `criteria`=5828; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5617 WHERE `criteria`=5885; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7662 WHERE `criteria`=7650; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9770 WHERE `criteria`=7735; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11274 WHERE `criteria`=11265; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11757 WHERE `criteria`=11510; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13689; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13700; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13721; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13732; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13743; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13766; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13777; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5573 WHERE `criteria`=13826; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1347 WHERE `criteria`=14044; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14227 WHERE `criteria`=14427; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4742 WHERE `criteria`=14509; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4742 WHERE `criteria`=14525; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5028 WHERE `criteria`=14781; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5039 WHERE `criteria`=14792; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13872 WHERE `criteria`=15436; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14384 WHERE `criteria`=16058; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16560 WHERE `criteria`=16616; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16952 WHERE `criteria`=16895; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16961 WHERE `criteria`=16905; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17916 WHERE `criteria`=17464; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17590 WHERE `criteria`=17605; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17666 WHERE `criteria`=17644; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17691 WHERE `criteria`=17713; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18596 WHERE `criteria`=18264; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18843 WHERE `criteria`=18842; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18844 WHERE `criteria`=18848; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2084 WHERE `criteria`=2100; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3442 WHERE `criteria`=3427; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3627 WHERE `criteria`=3869; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=5574; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5451 WHERE `criteria`=5627; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5287 WHERE `criteria`=5689; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5841 WHERE `criteria`=5829; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5608 WHERE `criteria`=5876; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7663 WHERE `criteria`=7651; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9771 WHERE `criteria`=7736; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13690; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13701; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13722; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13733; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13744; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13767; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13778; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5720 WHERE `criteria`=13827; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14228 WHERE `criteria`=14428; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=14510; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4759 WHERE `criteria`=14526; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5029 WHERE `criteria`=14782; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15213 WHERE `criteria`=15197; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=22268 WHERE `criteria`=15254; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13873 WHERE `criteria`=15437; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16561 WHERE `criteria`=16617; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16953 WHERE `criteria`=16896; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16962 WHERE `criteria`=16906; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17591 WHERE `criteria`=17604; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17693 WHERE `criteria`=17715; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7017 WHERE `criteria`=18263; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18844 WHERE `criteria`=18849; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2207 WHERE `criteria`=2214; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3444 WHERE `criteria`=3429; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3628 WHERE `criteria`=3870; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4329 WHERE `criteria`=4298; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2264 WHERE `criteria`=5083; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5447 WHERE `criteria`=5626; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5618 WHERE `criteria`=5886; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9169 WHERE `criteria`=6672; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7664 WHERE `criteria`=7652; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=11759 WHERE `criteria`=11512; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13691; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13702; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13723; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13734; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13745; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13768; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13779; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5575 WHERE `criteria`=13828; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14156 WHERE `criteria`=14047; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14229 WHERE `criteria`=14429; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=14511; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4764 WHERE `criteria`=14527; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5030 WHERE `criteria`=14783; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15240 WHERE `criteria`=15227; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=13874 WHERE `criteria`=15438; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16562 WHERE `criteria`=16618; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16963 WHERE `criteria`=16907; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17919 WHERE `criteria`=17468; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18397 WHERE `criteria`=17615; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17669 WHERE `criteria`=17646; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4661 WHERE `criteria`=18251; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=3445 WHERE `criteria`=3430; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2274 WHERE `criteria`=5093; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4744 WHERE `criteria`=5324; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4747 WHERE `criteria`=5339; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5384 WHERE `criteria`=5622; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6434 WHERE `criteria`=5887; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9168 WHERE `criteria`=6673; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7665 WHERE `criteria`=7653; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9948 WHERE `criteria`=9988; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9964 WHERE `criteria`=9989; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=1174 WHERE `criteria`=14048; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14230 WHERE `criteria`=14430; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=14512; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4751 WHERE `criteria`=14528; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15214 WHERE `criteria`=15199; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15241 WHERE `criteria`=15228; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14590 WHERE `criteria`=15439; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16563 WHERE `criteria`=16619; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16964 WHERE `criteria`=16908; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17694 WHERE `criteria`=17716; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4665 WHERE `criteria`=18249; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=167 WHERE `criteria`=756; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7420 WHERE `criteria`=4300; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2265 WHERE `criteria`=5084; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4745 WHERE `criteria`=5325; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4749 WHERE `criteria`=5340; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9261 WHERE `criteria`=5880; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15114 WHERE `criteria`=14049; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5336 WHERE `criteria`=14513; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5322 WHERE `criteria`=14529; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15216 WHERE `criteria`=15200; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15242 WHERE `criteria`=15229; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14591 WHERE `criteria`=15440; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16564 WHERE `criteria`=16620; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16965 WHERE `criteria`=16909; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17921 WHERE `criteria`=17471; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4678 WHERE `criteria`=18250; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2209 WHERE `criteria`=2215; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2275 WHERE `criteria`=5094; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4746 WHERE `criteria`=5326; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4748 WHERE `criteria`=5341; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5613 WHERE `criteria`=5881; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14416 WHERE `criteria`=14432; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=14514; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4765 WHERE `criteria`=14530; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15217 WHERE `criteria`=15201; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15243 WHERE `criteria`=15230; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14592 WHERE `criteria`=15441; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16565 WHERE `criteria`=16621; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16966 WHERE `criteria`=16910; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4687 WHERE `criteria`=18256; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4310 WHERE `criteria`=4302; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2266 WHERE `criteria`=5085; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5327 WHERE `criteria`=5342; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5614 WHERE `criteria`=5882; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14417 WHERE `criteria`=14433; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4761 WHERE `criteria`=14515; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4761 WHERE `criteria`=14531; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14593 WHERE `criteria`=15442; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16566 WHERE `criteria`=16622; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16967 WHERE `criteria`=16911; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17922 WHERE `criteria`=17473; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17673 WHERE `criteria`=17650; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9016 WHERE `criteria`=18257; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2080 WHERE `criteria`=18414; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4334 WHERE `criteria`=4303; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2276 WHERE `criteria`=5095; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=10542 WHERE `criteria`=9997; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=14418 WHERE `criteria`=14434; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2020 WHERE `criteria`=14516; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2020 WHERE `criteria`=14532; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16567 WHERE `criteria`=16623; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16968 WHERE `criteria`=16912; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18430 WHERE `criteria`=17630; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18609 WHERE `criteria`=18259; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2267 WHERE `criteria`=5086; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7805 WHERE `criteria`=8746; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=15946 WHERE `criteria`=15945; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16568 WHERE `criteria`=16624; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16969 WHERE `criteria`=16913; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17924 WHERE `criteria`=17476; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9015 WHERE `criteria`=18260; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2277 WHERE `criteria`=5096; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7806 WHERE `criteria`=8747; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16569 WHERE `criteria`=16625; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16970 WHERE `criteria`=16914; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17925 WHERE `criteria`=17477; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17681 WHERE `criteria`=17653; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18610 WHERE `criteria`=18265; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2083 WHERE `criteria`=2099; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2268 WHERE `criteria`=5087; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5100 WHERE `criteria`=8742; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5111 WHERE `criteria`=8743; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9045 WHERE `criteria`=9039; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16570 WHERE `criteria`=16626; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16971 WHERE `criteria`=16915; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17926 WHERE `criteria`=17478; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17676 WHERE `criteria`=17654; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4336 WHERE `criteria`=4307; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2278 WHERE `criteria`=5097; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5138 WHERE `criteria`=6417; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16571 WHERE `criteria`=16627; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16972 WHERE `criteria`=16916; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2085 WHERE `criteria`=2101; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2269 WHERE `criteria`=5088; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5140 WHERE `criteria`=6399; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5137 WHERE `criteria`=6418; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9046 WHERE `criteria`=9040; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16572 WHERE `criteria`=16628; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16973 WHERE `criteria`=16917; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17928 WHERE `criteria`=17481; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18431 WHERE `criteria`=17632; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4315 WHERE `criteria`=4318; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2279 WHERE `criteria`=5098; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5136 WHERE `criteria`=6400; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5123 WHERE `criteria`=6419; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9049 WHERE `criteria`=9043; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16573 WHERE `criteria`=16629; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16974 WHERE `criteria`=16918; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17929 WHERE `criteria`=17482; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17678 WHERE `criteria`=17657; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5135 WHERE `criteria`=6401; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5122 WHERE `criteria`=6420; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9048 WHERE `criteria`=9042; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16574 WHERE `criteria`=16630; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16975 WHERE `criteria`=16919; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17930 WHERE `criteria`=17483; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17592 WHERE `criteria`=17603; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17679 WHERE `criteria`=17658; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4316 WHERE `criteria`=4319; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5134 WHERE `criteria`=6402; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5119 WHERE `criteria`=6421; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16575 WHERE `criteria`=16631; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16976 WHERE `criteria`=16920; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17593 WHERE `criteria`=17602; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17680 WHERE `criteria`=17659; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4317 WHERE `criteria`=4320; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5110 WHERE `criteria`=6422; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9038 WHERE `criteria`=9044; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16576 WHERE `criteria`=16632; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16977 WHERE `criteria`=16921; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4324 WHERE `criteria`=4325; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5133 WHERE `criteria`=6404; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5104 WHERE `criteria`=6423; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=9041 WHERE `criteria`=9047; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16577 WHERE `criteria`=16633; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16978 WHERE `criteria`=16922; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17932 WHERE `criteria`=17487; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18415 WHERE `criteria`=17623; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2086 WHERE `criteria`=2102; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5102 WHERE `criteria`=6424; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16578 WHERE `criteria`=16634; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16979 WHERE `criteria`=16923; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17934 WHERE `criteria`=17489; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16579 WHERE `criteria`=16635; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16980 WHERE `criteria`=16924; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17935 WHERE `criteria`=17490; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2082 WHERE `criteria`=18416; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5128 WHERE `criteria`=6407; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16580 WHERE `criteria`=16636; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16981 WHERE `criteria`=16925; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17936 WHERE `criteria`=17491; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=18417 WHERE `criteria`=17624; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=2087 WHERE `criteria`=2103; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16581 WHERE `criteria`=16637; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16982 WHERE `criteria`=16926; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17937 WHERE `criteria`=17492; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5120 WHERE `criteria`=6429; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16582 WHERE `criteria`=16638; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16983 WHERE `criteria`=16927; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17938 WHERE `criteria`=17493; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5126 WHERE `criteria`=6411; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16583 WHERE `criteria`=16639; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16984 WHERE `criteria`=16928; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17939 WHERE `criteria`=17494; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17425 WHERE `criteria`=18085; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5125 WHERE `criteria`=6412; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=5108 WHERE `criteria`=6431; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16584 WHERE `criteria`=16640; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16985 WHERE `criteria`=16929; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17940 WHERE `criteria`=17495; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16585 WHERE `criteria`=16641; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16986 WHERE `criteria`=16930; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17941 WHERE `criteria`=17496; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16586 WHERE `criteria`=16642; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16987 WHERE `criteria`=16931; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17942 WHERE `criteria`=17497; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16587 WHERE `criteria`=16643; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16988 WHERE `criteria`=16932; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17943 WHERE `criteria`=17498; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12230 WHERE `criteria`=13346; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16588 WHERE `criteria`=16644; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16989 WHERE `criteria`=16933; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17944 WHERE `criteria`=17499; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7422 WHERE `criteria`=7423; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12236 WHERE `criteria`=13328; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16589 WHERE `criteria`=16645; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16990 WHERE `criteria`=16934; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17946 WHERE `criteria`=17501; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=7421 WHERE `criteria`=7424; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12240 WHERE `criteria`=13329; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16590 WHERE `criteria`=16646; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16991 WHERE `criteria`=16935; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12244 WHERE `criteria`=13330; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12242 WHERE `criteria`=13349; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16591 WHERE `criteria`=16647; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16992 WHERE `criteria`=16936; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17947 WHERE `criteria`=17503; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=12246 WHERE `criteria`=13350; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16592 WHERE `criteria`=16648; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16993 WHERE `criteria`=16937; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17948 WHERE `criteria`=17504; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16593 WHERE `criteria`=16649; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16994 WHERE `criteria`=16938; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16594 WHERE `criteria`=16650; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16995 WHERE `criteria`=16939; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17949 WHERE `criteria`=17506; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16595 WHERE `criteria`=16651; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16996 WHERE `criteria`=16940; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16596 WHERE `criteria`=16652; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16997 WHERE `criteria`=16941; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17950 WHERE `criteria`=17508; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16597 WHERE `criteria`=16653; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16998 WHERE `criteria`=16942; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17951 WHERE `criteria`=17509; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16598 WHERE `criteria`=16654; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16999 WHERE `criteria`=16943; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16599 WHERE `criteria`=16655; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17000 WHERE `criteria`=16944; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17954 WHERE `criteria`=17513; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16600 WHERE `criteria`=16656; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17955 WHERE `criteria`=17514; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16601 WHERE `criteria`=16657; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17956 WHERE `criteria`=17515; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16602 WHERE `criteria`=16658; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16603 WHERE `criteria`=16659; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16604 WHERE `criteria`=16660; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16605 WHERE `criteria`=16661; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17961 WHERE `criteria`=17524; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16606 WHERE `criteria`=16662; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17962 WHERE `criteria`=17525; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17419 WHERE `criteria`=17421; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17963 WHERE `criteria`=17526; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=16607 WHERE `criteria`=16663; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17964 WHERE `criteria`=17527; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17420 WHERE `criteria`=17422; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17965 WHERE `criteria`=17528; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17966 WHERE `criteria`=17529; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17968 WHERE `criteria`=17905; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17969 WHERE `criteria`=17906; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=17970 WHERE `criteria`=17907; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4683 WHERE `criteria`=7955; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=4681 WHERE `criteria`=7954; +UPDATE `guild_achievement_progress_old` SET `new_criteria_id`=6452 WHERE `criteria`=7951; + +-- +-- Table structure for table `guild_achievement_progress` +-- + +DROP TABLE IF EXISTS `guild_achievement_progress`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `guild_achievement_progress` ( + `guildId` bigint(20) unsigned NOT NULL, + `criteria` int(10) unsigned NOT NULL, + `counter` bigint(20) unsigned NOT NULL, + `date` int(10) unsigned NOT NULL DEFAULT '0', + `completedGuid` bigint(20) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`guildId`,`criteria`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +INSERT INTO `guild_achievement_progress` SELECT `guildId`,`new_criteria_id`,MAX(`counter`),`date`,`completedGuid` FROM `guild_achievement_progress_old` GROUP BY `guildId`,`new_criteria_id`; + +DROP TABLE IF EXISTS `character_achievement_progress_old`; +DROP TABLE IF EXISTS `guild_achievement_progress_old`; diff --git a/sql/updates/world/2014_12_28_05_world.sql b/sql/updates/world/2014_12_28_05_world.sql index ef671e03196..e3e7f680de1 100644 --- a/sql/updates/world/2014_12_28_05_world.sql +++ b/sql/updates/world/2014_12_28_05_world.sql @@ -2,7 +2,7 @@ ALTER TABLE `quest_template` CHANGE `Id` `ID` INT(10) UNSIGNED NOT NULL DEFAULT ALTER TABLE `quest_template` CHANGE `Method` `QuestType` TINYINT(3) UNSIGNED NOT NULL DEFAULT '2'; ALTER TABLE `quest_template` CHANGE `Level` `QuestLevel` INT(11) NOT NULL DEFAULT '-1'; ALTER TABLE `quest_template` ADD COLUMN `QuestPackageID` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `QuestLevel`; -ALTER TABLE `quest_template` CHANGE `MinLevel` `MinLevel` INT(10) UNSIGNED NOT NULL DEFAULT '0'; +ALTER TABLE `quest_template` CHANGE `MinLevel` `MinLevel` INT(11) NOT NULL DEFAULT '0'; ALTER TABLE `quest_template` DROP COLUMN `MaxLevel`; ALTER TABLE `quest_template` CHANGE `ZoneOrSort` `QuestSortID` SMALLINT(6) NOT NULL DEFAULT '0'; ALTER TABLE `quest_template` CHANGE `Type` `QuestInfoID` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0'; @@ -26,7 +26,7 @@ ALTER TABLE `quest_template` DROP COLUMN `ExclusiveGroup`; ALTER TABLE `quest_template` CHANGE `NextQuestIdChain` `RewardNextQuest` INT(10) UNSIGNED NOT NULL DEFAULT '0'; ALTER TABLE `quest_template` CHANGE `RewardXPId` `RewardXPDifficulty` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0'; ALTER TABLE `quest_template` ADD COLUMN `Float10` float NOT NULL DEFAULT '1' AFTER `RewardXPDifficulty`; -ALTER TABLE `quest_template` CHANGE `RewardOrRequiredMoney` `RewardMoney` INT(10) UNSIGNED NOT NULL DEFAULT '0'; +ALTER TABLE `quest_template` CHANGE `RewardOrRequiredMoney` `RewardMoney` INT(11) NOT NULL DEFAULT '0'; ALTER TABLE `quest_template` ADD COLUMN `RewardMoneyDifficulty` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardMoney`; ALTER TABLE `quest_template` ADD COLUMN `Float13` float NOT NULL DEFAULT '1' AFTER `RewardMoneyDifficulty`; ALTER TABLE `quest_template` CHANGE `RewardMoneyMaxLevel` `RewardBonusMoney` INT(10) UNSIGNED NOT NULL DEFAULT '0'; @@ -77,20 +77,20 @@ ALTER TABLE `quest_template` ADD COLUMN `RewardChoiceItemDisplayID5` INT(10) UNS ALTER TABLE `quest_template` CHANGE `RewardChoiceItemCount6` `RewardChoiceItemQuantity6` INT(10) UNSIGNED NOT NULL DEFAULT '0'; ALTER TABLE `quest_template` ADD COLUMN `RewardChoiceItemDisplayID6` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardChoiceItemQuantity6`; ALTER TABLE `quest_template` CHANGE `RewardFactionId1` `RewardFactionID1` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `PortraitTurnIn`; -ALTER TABLE `quest_template` CHANGE `RewardFactionValueId1` `RewardFactionValue1` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionID1`; -ALTER TABLE `quest_template` CHANGE `RewardFactionvalueIdOverride1` `RewardFactionOverride1` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionValue1`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueId1` `RewardFactionValue1` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionID1`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueIdOverride1` `RewardFactionOverride1` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionValue1`; ALTER TABLE `quest_template` CHANGE `RewardFactionId2` `RewardFactionID2` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionOverride1`; -ALTER TABLE `quest_template` CHANGE `RewardFactionValueId2` `RewardFactionValue2` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionID2`; -ALTER TABLE `quest_template` CHANGE `RewardFactionvalueIdOverride2` `RewardFactionOverride2` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionValue2`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueId2` `RewardFactionValue2` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionID2`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueIdOverride2` `RewardFactionOverride2` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionValue2`; ALTER TABLE `quest_template` CHANGE `RewardFactionId3` `RewardFactionID3` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionOverride2`; -ALTER TABLE `quest_template` CHANGE `RewardFactionValueId3` `RewardFactionValue3` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionID3`; -ALTER TABLE `quest_template` CHANGE `RewardFactionvalueIdOverride3` `RewardFactionOverride3` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionValue3`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueId3` `RewardFactionValue3` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionID3`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueIdOverride3` `RewardFactionOverride3` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionValue3`; ALTER TABLE `quest_template` CHANGE `RewardFactionId4` `RewardFactionID4` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionOverride3`; -ALTER TABLE `quest_template` CHANGE `RewardFactionValueId4` `RewardFactionValue4` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionID4`; -ALTER TABLE `quest_template` CHANGE `RewardFactionvalueIdOverride4` `RewardFactionOverride4` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionValue4`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueId4` `RewardFactionValue4` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionID4`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueIdOverride4` `RewardFactionOverride4` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionValue4`; ALTER TABLE `quest_template` CHANGE `RewardFactionId5` `RewardFactionID5` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionOverride4`; -ALTER TABLE `quest_template` CHANGE `RewardFactionValueId5` `RewardFactionValue5` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionID5`; -ALTER TABLE `quest_template` CHANGE `RewardFactionvalueIdOverride5` `RewardFactionOverride5` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionValue5`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueId5` `RewardFactionValue5` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionID5`; +ALTER TABLE `quest_template` CHANGE `RewardFactionValueIdOverride5` `RewardFactionOverride5` INT(11) NOT NULL DEFAULT '0' AFTER `RewardFactionValue5`; ALTER TABLE `quest_template` CHANGE `RewardReputationMask` `RewardFactionFlags` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `RewardFactionOverride5`; ALTER TABLE `quest_template` CHANGE `PointMapId` `POIContinent` INT(10) UNSIGNED NOT NULL DEFAULT '0'; ALTER TABLE `quest_template` CHANGE `PointX` `POIx` float NOT NULL DEFAULT '0'; diff --git a/sql/updates/world/2014_12_29_00_world.sql b/sql/updates/world/2014_12_29_00_world.sql index afa31f57e89..3d52e7d88ff 100644 --- a/sql/updates/world/2014_12_29_00_world.sql +++ b/sql/updates/world/2014_12_29_00_world.sql @@ -1175,31 +1175,31 @@ INSERT INTO `quest_template` (`ID`, `QuestType`, `QuestLevel`, `QuestPackageID`, (30384, 2, 87, 0, 86, 6134, 0, 0, 0, 5, 1, 102000, 5, 1, 78900, 0, 0, 0, 0, 0, 8, 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, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, 18875469, 'Blind Them!', 'Kill the Sunwalker Scout.', 'Horde sunwalkers! We saw one of their scouts patrolling by the oubliette not long before you arrived.$b$bI don''t know how he got here but I can guarantee you he isn''t alone. They never are.$b$bKill the sunwalker scout before he reports our position.', '', '', '', '', '', 'Speak with Sentinel Commander Lyalia at the Incursion in the Krasarang Wilds.', 19034), -- Blind Them! (30386, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111795, 0, 0, 0, 266240, 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, 1275, 0, 0, 0, 0, 5, 0, 0, 0, 0, 180000, 0, 0, 0, 0, 0, 738, 0, 0, 0, 1, 0, 0, 0, 890, 878, 0, 0, -1, 'A Dish for Ella', '', '', '', '', '', '', '', '', 19034), -- A Dish for Ella (30387, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1281, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Jade Cat for Gina', '', '', '', '', '', '', '', '', 19034), -- A Jade Cat for Gina -(30388, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1281, 0, 0, 0, 0, 4294967291, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Gina', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Gina +(30388, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1281, 0, 0, 0, 0, -5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Gina', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Gina (30389, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111791, 0, 0, 0, 262144, 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, 1281, 0, 0, 0, 0, 5, 0, 0, 0, 0, 90000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Marsh Lily for Gina', '', '', '', '', '', '', '', '', 19034), -- A Marsh Lily for Gina (30390, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111795, 0, 0, 0, 266240, 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, 1281, 0, 0, 0, 0, 5, 0, 0, 0, 0, 180000, 0, 0, 0, 0, 0, 738, 0, 0, 0, 1, 0, 0, 0, 890, 878, 0, 0, -1, 'A Dish for Gina', '', '', '', '', '', '', '', '', 19034), -- A Dish for Gina (30391, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1276, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Ruby Shard for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Ruby Shard for Old Hillpaw (30392, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1276, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Lovely Apple for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Lovely Apple for Old Hillpaw (30393, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1276, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Jade Cat for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Jade Cat for Old Hillpaw -(30394, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111791, 0, 0, 0, 262144, 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, 1276, 0, 0, 0, 0, 4294967291, 0, 0, 0, 0, 90000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Old Hillpaw -(30395, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1276, 0, 0, 0, 0, 4294967291, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Marsh Lily for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Marsh Lily for Old Hillpaw -(30396, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111795, 0, 0, 0, 266240, 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, 1276, 0, 0, 0, 0, 4294967291, 0, 0, 0, 0, 180000, 0, 0, 0, 0, 0, 738, 0, 0, 0, 1, 0, 0, 0, 890, 878, 0, 0, -1, 'A Dish for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Dish for Old Hillpaw +(30394, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111791, 0, 0, 0, 262144, 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, 1276, 0, 0, 0, 0, -5, 0, 0, 0, 0, 90000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Old Hillpaw +(30395, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1276, 0, 0, 0, 0, -5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Marsh Lily for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Marsh Lily for Old Hillpaw +(30396, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111795, 0, 0, 0, 266240, 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, 1276, 0, 0, 0, 0, -5, 0, 0, 0, 0, 180000, 0, 0, 0, 0, 0, 738, 0, 0, 0, 1, 0, 0, 0, 890, 878, 0, 0, -1, 'A Dish for Old Hillpaw', '', '', '', '', '', '', '', '', 19034), -- A Dish for Old Hillpaw (30397, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1277, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Ruby Shard for Chee Chee', '', '', '', '', '', '', '', '', 19034), -- A Ruby Shard for Chee Chee (30398, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1277, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Lovely Apple for Chee Chee', '', '', '', '', '', '', '', '', 19034), -- A Lovely Apple for Chee Chee (30399, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1277, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Jade Cat for Chee Chee', '', '', '', '', '', '', '', '', 19034), -- A Jade Cat for Chee Chee -(30400, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111791, 0, 0, 0, 262144, 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, 1277, 0, 0, 0, 0, 4294967291, 0, 0, 0, 0, 90000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Chee Chee', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Chee Chee +(30400, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111791, 0, 0, 0, 262144, 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, 1277, 0, 0, 0, 0, -5, 0, 0, 0, 0, 90000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Chee Chee', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Chee Chee (30401, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1277, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Marsh Lily for Chee Chee', '', '', '', '', '', '', '', '', 19034), -- A Marsh Lily for Chee Chee (30402, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111795, 0, 0, 0, 266240, 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, 1277, 0, 0, 0, 0, 5, 0, 0, 0, 0, 180000, 0, 0, 0, 0, 0, 738, 0, 0, 0, 1, 0, 0, 0, 890, 878, 0, 0, -1, 'A Dish for Chee Chee', '', '', '', '', '', '', '', '', 19034), -- A Dish for Chee Chee (30403, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1278, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Ruby Shard for Sho', '', '', '', '', '', '', '', '', 19034), -- A Ruby Shard for Sho (30404, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111791, 0, 0, 0, 262144, 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, 1278, 0, 0, 0, 0, 5, 0, 0, 0, 0, 90000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Lovely Apple for Sho', '', '', '', '', '', '', '', '', 19034), -- A Lovely Apple for Sho (30405, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1278, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Jade Cat for Sho', '', '', '', '', '', '', '', '', 19034), -- A Jade Cat for Sho -(30406, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1278, 0, 0, 0, 0, 4294967291, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Sho', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Sho +(30406, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1278, 0, 0, 0, 0, -5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Sho', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Sho (30407, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1278, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Marsh Lily for Sho', '', '', '', '', '', '', '', '', 19034), -- A Marsh Lily for Sho (30408, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111795, 0, 0, 0, 266240, 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, 1278, 0, 0, 0, 0, 5, 0, 0, 0, 0, 180000, 0, 0, 0, 0, 0, 738, 0, 0, 0, 1, 0, 0, 0, 890, 878, 0, 0, -1, 'A Dish for Sho', '', '', '', '', '', '', '', '', 19034), -- A Dish for Sho (30409, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111791, 0, 0, 0, 262144, 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, 1279, 0, 0, 0, 0, 5, 0, 0, 0, 0, 90000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Ruby Shard for Haohan', '', '', '', '', '', '', '', '', 19034), -- A Ruby Shard for Haohan (30410, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1279, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Lovely Apple for Haohan', '', '', '', '', '', '', '', '', 19034), -- A Lovely Apple for Haohan (30411, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1279, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Jade Cat for Haohan', '', '', '', '', '', '', '', '', 19034), -- A Jade Cat for Haohan -(30412, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1279, 0, 0, 0, 0, 4294967291, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Haohan', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Haohan +(30412, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1279, 0, 0, 0, 0, -5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Blue Feather for Haohan', '', '', '', '', '', '', '', '', 19034), -- A Blue Feather for Haohan (30413, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111784, 0, 0, 0, 262144, 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, 1279, 0, 0, 0, 0, 5, 0, 0, 0, 0, 54000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'A Marsh Lily for Haohan', '', '', '', '', '', '', '', '', 19034), -- A Marsh Lily for Haohan (30414, 0, 90, 0, 90, 5805, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 111795, 0, 0, 0, 266240, 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, 1279, 0, 0, 0, 0, 5, 0, 0, 0, 0, 180000, 0, 0, 0, 0, 0, 738, 0, 0, 0, 1, 0, 0, 0, 890, 878, 0, 0, -1, 'A Dish for Haohan', '', '', '', '', '', '', '', '', 19034), -- A Dish for Haohan (30415, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1024, 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, 1277, 0, 0, 0, 0, 5, 0, 0, 0, 0, 80000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'Tracking Quest - Successful', '', '', '', '', '', '', '', '', 19034), -- A Ruby Shard for Chee Chee @@ -2570,7 +2570,7 @@ The grummel said he''s at Onekeg, to the north.', '', '', '', '', '', '', 19034) (31734, 2, 86, 0, 85, 5785, 0, 0, 0, 5, 1, 98000, 5, 1, 78000, 0, 0, 0, 0, 89612, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89612, 0, 0, 0, 1, 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, 890, 878, 0, 0, 18875469, 'Welcome Wagons', 'Use Sully''s Flaregun to destroy 5 Horde War Wagons.', 'Did you see the size of those war wagons? They''re packing so many explosives, I cannae tell if the Horde is here to take over this continent or just blow it out of the sea!$B$BWe need to neutralize those wagons before they leave Garrosh''ar Point.$B$BHere, take me pocket flares. Fire ''em into a wagon and watch the fireworks!', '', '', '', '', '', 'Report to Rell Nightwind in Garrosh''ar Point.', 19034), -- Welcome Wagons (31735, 2, 86, 298, 85, 5785, 0, 0, 0, 5, 1, 98000, 5, 1, 78000, 0, 131014, 0, 0, 89624, 2097160, 2, 0, 0, 0, 0, 0, 0, 0, 0, 89624, 0, 0, 0, 1, 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, 890, 878, 0, 0, 18875469, 'The Right Tool For The Job', 'Use Sully''s Flaregun to clear out the barricades and confront Ga''trul at the end of the dock.', 'I''ve scouted the area and found no leads on the prince or Admiral Taylor. We need to neutralize this base quickly and continue our search elsewhere.$B$BOperations here are being led by an orc warlock; Ga''trul. He''s barricaded the dock and is trying to escape through a demonic circle.$B$BPut that flaregun to work again and blow those barricades! I''ll cover your back and move in when you reach Ga''trul.', '', '', '', '', '', 'Speak with Rell Nightwind in Garrosh''ar Point.', 19034), -- The Right Tool For The Job (31736, 2, 86, 0, 85, 5785, 0, 0, 0, 5, 1, 98000, 5, 1, 78000, 0, 130866, 0, 0, 0, 2097160, 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, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, 18875469, 'Envoy of the Alliance', 'Find and meet with the leader of Paw''don Village.', 'North of this base is a cherry blossom orchard and a village tucked away behind it. We will need to quarter there and tend to our wounded while we plan our next move.$B$BHead to that village and make contact with the native leader. Agent Mishka and I will rendezvous with you there.$B$BBe courteous, $n! I am authorizing you to represent the entire Alliance here.$b$bI''m banking that seeing a powerful Alliance hero like you should make a favorable impression.', '', '', '', '', '', 'Speak with Sunke Khang in Paw''don Village.', 19034), -- Envoy of the Alliance -(31737, 2, 86, 0, 85, 5785, 0, 0, 0, 5, 1, 98000, 5, 1, 78000, 0, 130815, 0, 0, 0, 2097160, 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, 1270, 0, 0, 0, 0, 4294967295, 0, 0, 0, 0, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, 18875469, 'The Cost of War', 'Slay $1oa Sha Haunts and 5 Sha Harbingers in Garrosh''ar Point.', 'This whole place is going up in flames and the Skyfire is reporting that more of those... shadows are crawling up out of the ground. We need to get our people out of here.$B$BClear a path through the base on your way north and head for the town. I will rendezvous with you there.', '', '', '', '', '', 'Speak with Taran Zhu in Paw''don Village.', 19034), -- The Cost of War +(31737, 2, 86, 0, 85, 5785, 0, 0, 0, 5, 1, 98000, 5, 1, 78000, 0, 130815, 0, 0, 0, 2097160, 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, 1270, 0, 0, 0, 0, -1, 0, 0, 0, 0, 500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, 18875469, 'The Cost of War', 'Slay $1oa Sha Haunts and 5 Sha Harbingers in Garrosh''ar Point.', 'This whole place is going up in flames and the Skyfire is reporting that more of those... shadows are crawling up out of the ground. We need to get our people out of here.$B$BClear a path through the base on your way north and head for the town. I will rendezvous with you there.', '', '', '', '', '', 'Speak with Taran Zhu in Paw''don Village.', 19034), -- The Cost of War (31738, 2, 86, 0, 85, 5785, 0, 0, 0, 5, 1, 98000, 5, 1, 78000, 0, 0, 0, 0, 0, 8, 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, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, 18875469, 'Pillaging Peons', 'Kill 12 Twinspire Taskmasters or Twinspire Peons.', 'How did my village become a battlefield?$B$BTo the west, your Horde enemies cut down our precious orchard. Without our apple trees, we will have no harvest, no food, and no livelihood.$B$BIf you are truly different than this Horde, show us! Help us protect our grove by killing those who defile the land.', '', '', '', '', '', 'Return to Sunke Khang at Paw''don Village in The Jade Forest.', 19034), -- Pillaging Peons (31739, 2, 86, 0, 85, 5785, 0, 0, 31740, 5, 1, 98000, 5, 1, 78000, 0, 130241, 0, 0, 0, 36700168, 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, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, 18875469, 'Priorities!', 'Collect 6 Applebloom Cider.', 'Those "orc" things ransacked the brewery and made off with my family''s finest barrels of cider.$B$BI know there is a war out there, but I am not a brewer who will stand idly by while his prized vintage is chugged by undeserving lips.$B$BThe "Horde" will likely put up some resistance. Why don''t you put that weapon to good use and help me recover my cider?', '', '', '', '', '', 'Speak to Lin Applebloom at Paw''don Glade in The Jade Forest.', 19034), -- Priorities! (31740, 2, 86, 0, 85, 5785, 0, 0, 0, 5, 1, 98000, 5, 1, 78000, 0, 0, 0, 0, 0, 8, 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, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, 18875469, 'Koukou''s Rampage', 'Kill Koukou.', 'We have more than just our cellars to worry about.$B$BKoukou, our beloved mushan, has gone crazy! Just look at him!$B$BI''ve tried cajoling and pleading and yelling and soothing, but nothing has worked.$B$BI''m afraid he is no longer of his own mind. There is only one way to save him, and our brewery.$B$BStrike swift and sure. He will not feel a thing.', '', '', '', '', '', 'Return to Sunke Khang at Paw''don Village in The Jade Forest.', 19034), -- Koukou's Rampage @@ -4572,12 +4572,12 @@ You should see an explosion visual', '', '', '', '', '', '', 19034), -- -Unknown (35798, 2, 90, 0, 90, 6719, 0, 0, 0, 5, 1, 114000, 5, 1, 83100, 0, 0, 0, 0, 0, 33555456, 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, 1445, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'Treasure: Glowing Cave Blossom', '', '', '', '', '', '', '', '', 19034), -- -Unknown- (35836, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 33555464, 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, 0, 0, 0, 0, 0, 0, 0, 0, 890, 878, 0, 0, -1, 'Nagrand - Vignette Boss 008 - The Lunker', '', '', '', '', '', '', '', '', 19034); -- -Unknown- -UPDATE `quest_template` SET `RewardMoneyDifficulty`=8, `RewardBonusMoney`=109800, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID`=1; -- Kanrethad's Quest +UPDATE `quest_template` SET `RewardMoneyDifficulty`=8, `RewardBonusMoney`=109800, `VerifiedBuild`=19034 WHERE `ID`=1; -- Kanrethad's Quest UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `FlagsEx`=8, `RewardFactionID1`=76, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=2; -- Sharptalon's Claw -UPDATE `quest_template` SET `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (5 /*Jitters' Growling Gut*/, 8 /*A Rogue's Deal*/, 9 /*The Killing Fields*/, 11 /*Riverpaw Gnoll Bounty*/, 14 /*The People's Militia*/, 16 /*Give Gerard a Drink*/, 18 /*Brotherhood of Thieves*/, 19 /*Tharil'zun*/, 22 /*Goretusk Liver Pie*/, 30 /*Trial of the Sea Lion*/, 33 /*[DEPRECATED] Wolves Across the Border*/, 35 /*Further Concerns*/, 36 /*Westfall Stew*/, 37 /*Find the Lost Guards*/, 38 /*Westfall Stew*/, 45 /*Discover Rolf's Fate*/, 64 /*The Forgotten Heirloom*/, 65 /*The Defias Brotherhood*/, 66 /*The Legend of Stalvan*/, 67 /*[DEPRECATED]The Legend of Stalvan*/, 68 /*The Legend of Stalvan*/, 70 /*The Legend of Stalvan*/, 71 /*Report to Thomas*/, 83 /*Fine Linen Goods*/, 84 /*Back to Billy*/, 85 /*Lost Necklace*/, 86 /*Pie for Billy*/, 87 /*Goldtooth*/, 88 /*Princess Must Die!*/, 93 /*Dusky Crab Cakes*/, 94 /*A Watchful Eye*/, 95 /*Sven's Revenge*/, 98 /*The Legend of Stalvan*/, 102 /*Patrolling Westfall*/, 106 /*Young Lovers*/, 107 /*Note to William*/, 112 /*Collecting Kelp*/, 114 /*The Escape*/, 117 /*Thunderbrew Lager*/, 120 /*Messenger to Stormwind*/, 129 /*A Free Lunch*/, 130 /*Visit the Herbalist*/, 131 /*Delivering Daffodils*/, 132 /*The Defias Brotherhood*/, 135 /*The Defias Brotherhood*/, 141 /*The Defias Brotherhood*/, 143 /*Messenger to Westfall*/, 145 /*Messenger to Darkshire*/, 147 /*Manhunt*/, 148 /*Supplies from Darkshire*/, 149 /*Ghost Hair Thread*/, 150 /*Murloc Poachers*/, 151 /*Poor Old Blanchy*/, 153 /*Red Leather Bandanas*/, 156 /*Gather Rot Blossoms*/, 160 /*Note to the Mayor*/, 161 /*A Dark Threat Looms*/, 163 /*Raven Hill*/, 165 /*The Hermit*/, 166 /*The Defias Brotherhood*/, 167 /*Oh Brother. . .*/, 168 /*Collecting Memories*/, 174 /*[DEPRECATED]Look To The Stars*/, 175 /*[DEPRECATED]Look To The Stars*/, 177 /*[DEPRECATED]Look To The Stars*/, 179 /*Dwarven Outfitters*/, 181 /*[DEPRECATED]Look To The Stars*/, 183 /*The Boar Hunter*/, 203 /*The Second Rebellion*/, 204 /*Bad Medicine*/, 205 /*Troll Witchery*/, 206 /*Mai'Zoth*/, 207 /*Kurzen's Mystery*/, 219 /*Missing In Action*/, 225 /*The Weathered Grave*/, 226 /*Wolves at Our Heels*/, 227 /*Morgan Ladimore*/, 230 /*Sven's Camp*/, 231 /*A Daughter's Love*/, 233 /*Coldridge Valley Mail Delivery*/, 235 /*The Ashenvale Hunt*/, 239 /*Westbrook Garrison Needs Help!*/, 245 /*[DEPRECATED]Eight-Legged Menaces*/, 248 /*Looking Further*/, 249 /*Morganth*/, 251 /*[DEPRECATED]Translate Abercrombie's Note*/, 253 /*[DEPRECATED]Bride of the Embalmer*/, 256 /*WANTED: Chok'sul*/, 266 /*[DEPRECATED]Inquire at the Inn*/, 268 /*Return to Sven*/, 270 /*The Doomed Fleet*/, 273 /*Resupplying the Excavation*/, 275 /*Blisters on The Land*/, 277 /*Fire Taboo*/, 281 /*Reclaiming Goods*/, 284 /*The Search Continues*/, 285 /*Search More Hovels*/, 287 /*Frostmane Hold*/, 288 /*The Third Fleet*/, 290 /*Lifting the Curse*/, 293 /*Cleansing the Eye*/, 298 /*Excavation Progress Report*/, 302 /*Powder to Ironband*/, 304 /*A Grim Task*/, 306 /*In Search of The Excavation Team*/, 308 /*Distracting Jarven*/, 312 /*Tundra MacGrann's Stolen Stash*/, 318 /*Evershine*/, 319 /*A Favor for Evershine*/, 328 /*The Hidden Key*/, 329 /*The Spy Revealed!*/, 343 /*Speaking of Fortitude*/, 344 /*Brother Paxton*/, 345 /*Ink Supplies*/, 346 /*Return to Kristoff*/, 347 /*Rethban Ore*/, 359 /*Forsaken Duties*/, 362 /*The Haunted Mills*/, 369 /*A New Plague*/, 372 /*At War With The Scarlet Crusade*/, 377 /*Crime and Punishment*/, 380 /*Night Web's Hollow*/, 385 /*Crocolisk Hunting*/, 389 /*Bazil Thredd*/, 401 /*Wait for Sirra to Finish*/, 407 /*Fields of Grief*/, 408 /*The Family Crypt*/, 412 /*Operation Recombobulation*/, 413 /*Shimmer Stout*/, 434 /*The Attack!*/, 436 /*Ironband's Excavation*/, 463 /*The Greenwarden*/, 465 /*Nek'rosh's Gambit*/, 466 /*Search for Incendicite*/, 467 /*Stonegear's Search*/, 471 /*Apprentice's Duties*/, 474 /*Defeat Nek'rosh*/, 475 /*A Troubling Breeze*/, 498 /*[DEPRECATED] The Rescue*/, 502 /*[DEPRECATED] Elixir of Pain*/, 503 /*[DEPRECATED] Gol'dir*/, 504 /*[DEPRECATED] Crushridge Warmongers*/, 505 /*[DEPRECATED] Syndicate Assassins*/, 507 /*[DEPRECATED] Lord Aliden Perenolde*/, 514 /*[DEPRECATED] Letter to Stormpike*/, 518 /*[DEPRECATED] The Crown of Will*/, 520 /*[DEPRECATED] The Crown of Will*/, 540 /*[DEPRECATED] Preserving Knowledge*/, 546 /*[DEPRECATED] Souvenirs of Death*/, 547 /*[DEPRECATED] Humbert's Sword*/, 550 /*[DEPRECATED] Battle of Hillsbrad*/, 552 /*[DEPRECATED] Helcular's Revenge*/, 553 /*[DEPRECATED] Helcular's Revenge*/, 562 /*[DEPRECATED] Stormwind Ho!*/, 563 /*[DEPRECATED] Reassignment*/, 564 /*[DEPRECATED] Costly Menace*/, 565 /*[DEPRECATED] Bartolo's Yeti Fur Cloak*/, 566 /*[DEPRECATED] WANTED: Baron Vardus*/, 567 /*[DEPRECATED] Dangerous!*/, 569 /*The Defense of Grom'gol*/, 570 /*Mok'thardin's Enchantment*/, 571 /*Mok'thardin's Enchantment*/, 572 /*Mok'thardin's Enchantment*/, 573 /*Mok'thardin's Enchantment*/, 579 /*Stormwind Library*/, 581 /*Hunt for Yenniku*/, 584 /*Bloodscalp Clan Heads*/, 585 /*Speaking with Nezzliok*/, 586 /*Speaking with Gan'zulah*/, 589 /*The Singing Crystals*/, 596 /*Bloody Bone Necklaces*/, 598 /*Split Bone Necklace*/, 629 /*The Vile Reef*/, 631 /*The Thandol Span*/, 632 /*The Thandol Span*/, 633 /*The Thandol Span*/, 634 /*Plea To The Alliance*/, 677 /*Call to Arms*/, 680 /*The Real Threat*/, 682 /*Stromgarde Badges*/, 684 /*Wanted! Marez Cowl*/, 685 /*Wanted! Otto and Falconcrest*/, 694 /*Trelane's Defenses*/, 696 /*Attack on the Tower*/, 699 /*[DEPRECATED]Lack of Surplus*/, 718 /*Mirages*/, 733 /*Scrounging*/, 739 /*Murdaloc*/, 742 /*The Ashenvale Hunt*/, 747 /*The Hunt Begins*/, 768 /*Gathering Leather*/, 769 /*Kodo Hide Bag*/, 776 /*Rites of the Earthmother*/, 782 /*Broken Alliances*/, 783 /*[DEPRECATED] A Threat Within*/, 786 /*Thwarting Kolkar Aggression*/, 788 /*Cutting Teeth*/, 789 /*Sting of the Scorpid*/, 791 /*Carry Your Weight*/, 792 /*Vile Familiars*/, 793 /*Broken Alliances*/, 806 /*Dark Storms*/, 809 /*Ak'Zeloth*/, 821 /*Chen's Empty Keg*/, 822 /*Chen's Empty Keg*/, 823 /*Report to Orgnil*/, 825 /*From The Wreckage....*/, 826 /*Zalazane*/, 840 /*Conscript of the Horde*/, 855 /*Centaur Bracers*/, 861 /*The Hunter's Way*/, 870 /*The Forgotten Pools*/, 873 /*Isha Awak*/, 874 /*Mahren Skyseer*/, 876 /*Serena Bloodfeather*/, 878 /*Tribes at War*/, 879 /*Betrayal from Within*/, 893 /*Weapons of Choice*/, 899 /*Consumed by Hatred*/, 924 /*The Demon Seed*/, 929 /*Teldrassil: The Refusal of the Aspects*/, 936 /*Assisting Arch Druid Runetotem*/, 1011 /*Forsaken Diseases*/, 1015 /*The New Frontier*/, 1017 /*Mage Summoner*/, 1019 /*The New Frontier*/, 1021 /*Vile Satyr! Dryads in Danger!*/, 1035 /*Fallen Sky Lake*/, 1037 /*Velinde Starsong*/, 1039 /*The Barrens Port*/, 1041 /*The Caravan Road*/, 1044 /*Answered Questions*/, 1047 /*The New Frontier*/, 1048 /*Into The Scarlet Monastery*/, 1050 /*Mythology of the Titans*/, 1051 /*Vorrel's Revenge*/, 1052 /*Down the Scarlet Path*/, 1053 /*In the Name of the Light*/, 1056 /*Journey to Stonetalon Peak*/, 1057 /*Reclaiming the Charred Vale*/, 1058 /*Jin'Zil's Forest Magic*/, 1059 /*Reclaiming the Charred Vale*/, 1061 /*The Spirits of Stonetalon*/, 1063 /*[DEPRECATED] The Elder Crone*/, 1064 /*[DEPRECATED] Forsaken Aid*/, 1066 /*[DEPRECATED] Blood of Innocents*/, 1067 /*[DEPRECATED] Return to Thunder Bluff*/, 1072 /*An Old Colleague*/, 1074 /*Ineptitude + Chemicals = Fun*/, 1075 /*A Scroll from Mauren*/, 1076 /*Devils in Westfall*/, 1078 /*Retrieval for Mauren*/, 1087 /*Cenarius' Legacy*/, 1088 /*Ordanus*/, 1089 /*The Den*/, 1097 /*Elmore's Task*/, 1101 /*The Crone of the Kraul*/, 1109 /*Going, Going, Guano!*/, 1132 /*Fiora Longears*/, 1146 /*The Swarm Grows*/, 1150 /*Test of Endurance*/, 1160 /*Test of Lore*/, 1164 /*To Steal From Thieves*/, 1166 /*[DEPRECATED]Overlord Mok'Morokk's Concern*/, 1168 /*Army of the Black Dragon*/, 1169 /*[DEPRECATED]Identifying the Brood*/, 1172 /*[DEPRECATED]The Brood of Onyxia*/, 1196 /*The Sacred Flame*/, 1201 /*Theramore Spies*/, 1241 /*The Missing Diplomat*/, 1244 /*The Missing Diplomat*/, 1248 /*The Missing Diplomat*/, 1258 /*... and Bugs*/, 1262 /*Report to Zor*/, 1264 /*The Missing Diplomat*/, 1265 /*The Missing Diplomat*/, 1271 /*Feast at the Blue Recluse*/, 1274 /*The Missing Diplomat*/, 1286 /*[DEPRECATED]The Deserters*/, 1301 /*[DEPRECATED]James Hyal*/, 1302 /*[DEPRECATED]James Hyal*/, 1322 /*[DEPRECATED]The Black Shield*/, 1339 /*Mountaineer Stormpike's Task*/, 1361 /*Regthar Deathgate*/, 1362 /*The Kolkar of Desolace*/, 1364 /*Mazen's Behest*/, 1383 /*Nothing But The Truth*/, 1396 /*[DEPRECATED]Encroaching Wildlife*/, 1420 /*Report to Helgrum*/, 1426 /*[DEPRECATED]Threat From the Sea*/, 1428 /*[DEPRECATED]Continued Threat*/, 1429 /*[DEPRECATED]The Atal'ai Exile*/, 1430 /*[DEPRECATED]Fresh Meat*/, 1434 /*Befouled by Satyr*/, 1448 /*In Search of The Temple*/, 1455 /*The Karnitol Shipwreck*/, 1456 /*The Karnitol Shipwreck*/, 1465 /*Vahlarriel's Search*/, 1469 /*Rhapsody's Tale*/, 1475 /*Into The Temple of Atal'Hakkar*/, 1476 /*Hearts of the Pure*/, 1482 /*The Corrupter*/, 1485 /*Vile Familiars*/, 1488 /*The Corrupter*/, 1489 /*Hamuul Runetotem*/, 1490 /*Nara Wildmane*/, 1492 /*[DEPRICATED] Wharfmaster Dizzywig*/, 1498 /*Path of Defense*/, 1507 /*Devourer of Souls*/, 1508 /*Blind Cazul*/, 1519 /*Call of Earth*/, 1520 /*Call of Earth*/, 1525 /*Call of Fire*/, 1598 /*The Stolen Tome*/, 1599 /*Beginnings*/, 1649 /*The Tome of Valor*/, 1650 /*The Tome of Valor*/, 1654 /*The Test of Righteousness*/, 1655 /*Bailor's Ore Shipment*/, 1679 /*Muren Stormpike*/, 1684 /*Elanaria*/, 1698 /*Yorus Barleybrew*/, 1699 /*The Rethban Gauntlet*/, 1716 /*Devourer of Souls*/, 1738 /*Heartswood*/, 1802 /*Tome of the Cabal*/, 1803 /*Tome of the Cabal*/, 1823 /*Speak with Ruga*/, 1861 /*Mirror Lake*/, 1883 /*Speak with Un'thuwa*/, 1920 /*Investigate the Blue Recluse*/, 1938 /*Ur's Treatise on Shadow Magic*/, 1941 /*Manaweave Robe*/, 1944 /*Waters of Xavian*/, 2158 /*Rest and Relaxation*/, 2160 /*Supplies to Tannok*/, 2161 /*A Peon's Burden*/, 2439 /*The Platinum Discs*/, 2458 /*Deep Cover*/, 2460 /*The Shattered Salute*/, 2479 /*Hinott's Assistance*/, 2519 /*The Temple of the Moon*/, 2623 /*The Swamp Talker*/, 2745 /*Infiltrating the Castle*/, 2746 /*Items of Some Consequence*/, 2769 /*The Brassbolts Brothers*/, 2821 /*The Mark of Quality*/, 2822 /*The Mark of Quality*/, 2923 /*Tinkmaster Overspark*/, 2931 /*Castpipe's Task*/, 2935 /*Consult Master Gadrin*/, 2937 /*Summoning Shadra*/, 2946 /*Seeing What Happens*/, 2963 /*Portents of Uldum*/, 2965 /*Portents of Uldum*/, 2981 /*A Threat in Feralas*/, 2987 /*Gordunni Cobalt*/, 2988 /*Witherbark Cages*/, 2989 /*The Altar of Zul*/, 3062 /*Dark Heart*/, 3121 /*A Strange Request*/, 3127 /*Mountain Giant Muisek*/, 3301 /*Mura Runetotem*/, 3445 /*The Sunken Temple*/, 3449 /*Arcane Runes*/, 3450 /*An Easy Pickup*/, 3641 /*Show Your Work*/, 3702 /*The Smoldering Ruins of Thaurissan*/, 3785 /*Morrowgrain Research*/, 3789 /*Assisting Arch Druid Staghelm*/, 3790 /*Assisting Arch Druid Staghelm*/, 3792 /*Morrowgrain to Feathermoon Stronghold*/, 3824 /*Gor'tesh the Brute Lord*/, 3904 /*Milly's Harvest*/, 3905 /*Grape Manifest*/, 3922 /*Nugget Slugs*/, 3923 /*[DEPRECATED] Rilli Greasygob*/, 3924 /*[DEPRICATED] Samophlange Manual*/, 4128 /*Ragnar Thunderbrew*/, 4131 /*The Woodpaw Gnolls*/, 4135 /*The Writhing Deep*/, 4141 /*Muigin and Larion*/, 4147 /*Marvon's Workshop*/, 4241 /*Marshal Windsor*/, 4265 /*Freed from the Hive*/, 4342 /*Kharan's Tale*/, 4581 /*Kayneth Stillwind*/, 4766 /*Mayara Brightwing*/, 4812 /*As Water Cascades*/, 4881 /*Assassination Plot*/, 4970 /*Frostsaber Provisions*/, 5042 /*Agamaggan's Strength*/, 5090 /*A Call to Arms: The Plaguelands!*/, 5095 /*A Call to Arms: The Plaguelands!*/, 5144 /*Elemental Leatherworking*/, 5145 /*Dragonscale Leatherworking*/, 5151 /*Hypercapacitor Gizmo*/, 5216 /*Target: Felstone Field*/, 5219 /*Target: Dalson's Tears*/, 5229 /*Target: Felstone Field*/, 5246 /*Fragments of the Past*/, 5247 /*Fragments of the Past*/, 5250 /*Starfall*/, 5261 /*[DEPRECATED] Eagan Peltskinner*/, 5481 /*Gordo's Task*/, 5722 /*Searching for the Lost Satchel*/, 5724 /*Returning the Lost Satchel*/, 5725 /*The Power to Destroy...*/, 5727 /*Hidden Enemies*/, 5801 /*Fire Plume Forged*/, 5802 /*Fire Plume Forged*/, 5961 /*The Champion of the Banshee Queen*/, 5981 /*Rampaging Giants*/, 6141 /*Brother Anton*/, 6142 /*Clam Bait*/, 6182 /*The First and the Last*/, 6283 /*Bloodfury Bloodline*/, 6322 /*Michael Garrett*/, 6342 /*An Unexpected Gift*/, 6363 /*Tal the Wind Rider Master*/, 6382 /*The Ashenvale Hunt*/, 6385 /*Doras the Wind Rider Master*/, 6388 /*Gryth Thurden*/, 6442 /*Naga at the Zoram Strand*/, 6504 /*The Lost Pages*/, 6541 /*Report to Kadrak*/, 6571 /*Warsong Supplies*/, 6609 /*I Got Nothin' Left!*/, 6612 /*I Know A Guy...*/, 6622 /*Triage*/, 6624 /*Triage*/, 6661 /*Deeprun Rat Roundup*/, 6762 /*Rabine Saturna*/, 6964 /*The Reason for the Season*/, 7062 /*The Reason for the Season*/, 7063 /*The Feast of Winter Veil*/, 7068 /*Shadowshard Fragments*/, 7070 /*Shadowshard Fragments*/, 7261 /*The Sovereign Imperative*/, 7493 /*The Journey Has Just Begun*/, 7497 /*The Journey Has Just Begun*/, 7563 /*Rage of Blood*/, 7623 /*Lord Banehollow*/, 7863 /*Sentinel Basic Care Package*/, 8260 /*Arathor Basic Care Package*/, 8263 /*Defiler's Basic Care Package*/, 8264 /*Defiler's Standard Care Package*/, 8746 /*Metzen the Reindeer*/, 8762 /*Metzen the Reindeer*/, 8780 /*Armor Kits for the Field*/, 8811 /*One Commendation Signet*/, 8812 /*One Commendation Signet*/, 8813 /*One Commendation Signet*/, 8814 /*One Commendation Signet*/, 8815 /*One Commendation Signet*/, 8816 /*One Commendation Signet*/, 8817 /*One Commendation Signet*/, 8818 /*One Commendation Signet*/, 8819 /*Ten Commendation Signets*/, 8820 /*Ten Commendation Signets*/, 8821 /*Ten Commendation Signets*/, 8822 /*Ten Commendation Signets*/, 8823 /*Ten Commendation Signets*/, 8824 /*Ten Commendation Signets*/, 8825 /*Ten Commendation Signets*/, 8826 /*Ten Commendation Signets*/, 8830 /*One Commendation Signet*/, 8831 /*Ten Commendation Signets*/, 8832 /*One Commendation Signet*/, 8833 /*Ten Commendation Signets*/, 8834 /*One Commendation Signet*/, 8835 /*Ten Commendation Signets*/, 8836 /*One Commendation Signet*/, 8837 /*Ten Commendation Signets*/, 8838 /*One Commendation Signet*/, 8839 /*Ten Commendation Signets*/, 8840 /*One Commendation Signet*/, 8841 /*Ten Commendation Signets*/, 8842 /*One Commendation Signet*/, 8843 /*Ten Commendation Signets*/, 8844 /*One Commendation Signet*/, 8845 /*Ten Commendation Signets*/, 8900 /*Dearest Elenia,*/, 8901 /*Dearest Elenia,*/, 8902 /*Dearest Elenia,*/, 8979 /*Fenstad's Hunch*/, 8983 /*Tracing the Source*/, 8984 /*The Source Revealed*/, 9024 /*Aristan's Hunch*/, 9025 /*Morgan's Discovery*/, 9026 /*Tracing the Source*/, 9027 /*Tracing the Source*/, 9028 /*The Source Revealed*/, 9367 /*The Festival of Fire*/, 9368 /*The Festival of Fire*/, 9452 /*Red Snapper - Very Tasty!*/, 9455 /*Strange Findings*/, 9491 /*Greed*/, 9505 /*The Prophecy of Velen*/, 9506 /*A Small Start*/, 9512 /*Cookie's Jumbo Gumbo*/, 9513 /*Reclaiming the Ruins*/, 9514 /*Rune Covered Tablet*/, 9528 /*A Cry For Help*/, 9530 /*I've Got a Plant*/, 9539 /*Totem of Coo*/, 9540 /*Totem of Tikti*/, 9541 /*Totem of Yor*/, 9542 /*Totem of Vark*/, 9544 /*The Prophecy of Akida*/, 9559 /*Stillpine Hold*/, 9560 /*Beasts of the Apocalypse!*/, 9565 /*Search Stillpine Hold*/, 9566 /*Blood Crystals*/, 9571 /*The Kurken's Hide*/, 9616 /*Bandits!*/, 9671 /*Urgent Delivery*/, 9751 /*The Bloodcurse Legacy*/, 9920 /*Mo'mor the Breaker*/, 10166 /*Whitebark's Memory*/, 10346 /*Return to the Abyssal Shelf*/, 10347 /*Return to the Abyssal Shelf*/, 10366 /*Jol*/, 10372 /*A Discreet Inquiry*/, 10428 /*The Missing Fisherman*/, 10477 /*More Warbeads*/, 10478 /*More Warbeads!*/, 10693 /*One Commendation Signet*/, 10694 /*Ten Commendation Signets*/, 10695 /*One Commendation Signet*/, 10696 /*Ten Commendation Signets*/, 10697 /*One Commendation Signet*/, 10698 /*Ten Commendation Signets*/, 10699 /*One Commendation Signet*/, 10700 /*Ten Commendation Signets*/, 10875 /*Report to Nazgrel*/, 10919 /*Fei Fei's Treat*/, 11107 /*Bow to the Highlord*/, 12275 /*The Demo-gnome*/, 14355 /*Into The Scarlet Monastery*/, 14356 /*The Power to Destroy...*/, 20441 /*Rite of Vision*/, 24440 /*Winterhoof Cleansing*/, 24483 /*Stormglen*/, 26804 /*Flight to Razor Hill*/, 27255 /*The Black Shield*/); +UPDATE `quest_template` SET `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (5 /*Jitters' Growling Gut*/, 8 /*A Rogue's Deal*/, 9 /*The Killing Fields*/, 11 /*Riverpaw Gnoll Bounty*/, 14 /*The People's Militia*/, 16 /*Give Gerard a Drink*/, 18 /*Brotherhood of Thieves*/, 19 /*Tharil'zun*/, 22 /*Goretusk Liver Pie*/, 30 /*Trial of the Sea Lion*/, 33 /*[DEPRECATED] Wolves Across the Border*/, 35 /*Further Concerns*/, 36 /*Westfall Stew*/, 37 /*Find the Lost Guards*/, 38 /*Westfall Stew*/, 45 /*Discover Rolf's Fate*/, 64 /*The Forgotten Heirloom*/, 65 /*The Defias Brotherhood*/, 66 /*The Legend of Stalvan*/, 67 /*[DEPRECATED]The Legend of Stalvan*/, 68 /*The Legend of Stalvan*/, 70 /*The Legend of Stalvan*/, 71 /*Report to Thomas*/, 83 /*Fine Linen Goods*/, 84 /*Back to Billy*/, 85 /*Lost Necklace*/, 86 /*Pie for Billy*/, 87 /*Goldtooth*/, 88 /*Princess Must Die!*/, 93 /*Dusky Crab Cakes*/, 94 /*A Watchful Eye*/, 95 /*Sven's Revenge*/, 98 /*The Legend of Stalvan*/, 102 /*Patrolling Westfall*/, 106 /*Young Lovers*/, 107 /*Note to William*/, 112 /*Collecting Kelp*/, 114 /*The Escape*/, 117 /*Thunderbrew Lager*/, 120 /*Messenger to Stormwind*/, 129 /*A Free Lunch*/, 130 /*Visit the Herbalist*/, 131 /*Delivering Daffodils*/, 132 /*The Defias Brotherhood*/, 135 /*The Defias Brotherhood*/, 141 /*The Defias Brotherhood*/, 143 /*Messenger to Westfall*/, 145 /*Messenger to Darkshire*/, 147 /*Manhunt*/, 148 /*Supplies from Darkshire*/, 149 /*Ghost Hair Thread*/, 150 /*Murloc Poachers*/, 151 /*Poor Old Blanchy*/, 153 /*Red Leather Bandanas*/, 156 /*Gather Rot Blossoms*/, 160 /*Note to the Mayor*/, 161 /*A Dark Threat Looms*/, 163 /*Raven Hill*/, 165 /*The Hermit*/, 166 /*The Defias Brotherhood*/, 167 /*Oh Brother. . .*/, 168 /*Collecting Memories*/, 174 /*[DEPRECATED]Look To The Stars*/, 175 /*[DEPRECATED]Look To The Stars*/, 177 /*[DEPRECATED]Look To The Stars*/, 179 /*Dwarven Outfitters*/, 181 /*[DEPRECATED]Look To The Stars*/, 183 /*The Boar Hunter*/, 203 /*The Second Rebellion*/, 204 /*Bad Medicine*/, 205 /*Troll Witchery*/, 206 /*Mai'Zoth*/, 207 /*Kurzen's Mystery*/, 210 /*Krazek's Cookery*/, 219 /*Missing In Action*/, 225 /*The Weathered Grave*/, 226 /*Wolves at Our Heels*/, 227 /*Morgan Ladimore*/, 230 /*Sven's Camp*/, 231 /*A Daughter's Love*/, 233 /*Coldridge Valley Mail Delivery*/, 235 /*The Ashenvale Hunt*/, 239 /*Westbrook Garrison Needs Help!*/, 245 /*[DEPRECATED]Eight-Legged Menaces*/, 248 /*Looking Further*/, 249 /*Morganth*/, 251 /*[DEPRECATED]Translate Abercrombie's Note*/, 253 /*[DEPRECATED]Bride of the Embalmer*/, 256 /*WANTED: Chok'sul*/, 266 /*[DEPRECATED]Inquire at the Inn*/, 268 /*Return to Sven*/, 270 /*The Doomed Fleet*/, 273 /*Resupplying the Excavation*/, 275 /*Blisters on The Land*/, 277 /*Fire Taboo*/, 281 /*Reclaiming Goods*/, 284 /*The Search Continues*/, 285 /*Search More Hovels*/, 287 /*Frostmane Hold*/, 288 /*The Third Fleet*/, 290 /*Lifting the Curse*/, 293 /*Cleansing the Eye*/, 298 /*Excavation Progress Report*/, 302 /*Powder to Ironband*/, 304 /*A Grim Task*/, 306 /*In Search of The Excavation Team*/, 308 /*Distracting Jarven*/, 312 /*Tundra MacGrann's Stolen Stash*/, 318 /*Evershine*/, 319 /*A Favor for Evershine*/, 328 /*The Hidden Key*/, 329 /*The Spy Revealed!*/, 343 /*Speaking of Fortitude*/, 344 /*Brother Paxton*/, 345 /*Ink Supplies*/, 346 /*Return to Kristoff*/, 347 /*Rethban Ore*/, 359 /*Forsaken Duties*/, 362 /*The Haunted Mills*/, 369 /*A New Plague*/, 372 /*At War With The Scarlet Crusade*/, 377 /*Crime and Punishment*/, 380 /*Night Web's Hollow*/, 385 /*Crocolisk Hunting*/, 389 /*Bazil Thredd*/, 401 /*Wait for Sirra to Finish*/, 407 /*Fields of Grief*/, 408 /*The Family Crypt*/, 412 /*Operation Recombobulation*/, 413 /*Shimmer Stout*/, 434 /*The Attack!*/, 436 /*Ironband's Excavation*/, 463 /*The Greenwarden*/, 465 /*Nek'rosh's Gambit*/, 466 /*Search for Incendicite*/, 467 /*Stonegear's Search*/, 471 /*Apprentice's Duties*/, 474 /*Defeat Nek'rosh*/, 475 /*A Troubling Breeze*/, 498 /*[DEPRECATED] The Rescue*/, 502 /*[DEPRECATED] Elixir of Pain*/, 503 /*[DEPRECATED] Gol'dir*/, 504 /*[DEPRECATED] Crushridge Warmongers*/, 505 /*[DEPRECATED] Syndicate Assassins*/, 507 /*[DEPRECATED] Lord Aliden Perenolde*/, 514 /*[DEPRECATED] Letter to Stormpike*/, 518 /*[DEPRECATED] The Crown of Will*/, 520 /*[DEPRECATED] The Crown of Will*/, 540 /*[DEPRECATED] Preserving Knowledge*/, 546 /*[DEPRECATED] Souvenirs of Death*/, 547 /*[DEPRECATED] Humbert's Sword*/, 550 /*[DEPRECATED] Battle of Hillsbrad*/, 552 /*[DEPRECATED] Helcular's Revenge*/, 553 /*[DEPRECATED] Helcular's Revenge*/, 562 /*[DEPRECATED] Stormwind Ho!*/, 563 /*[DEPRECATED] Reassignment*/, 564 /*[DEPRECATED] Costly Menace*/, 565 /*[DEPRECATED] Bartolo's Yeti Fur Cloak*/, 566 /*[DEPRECATED] WANTED: Baron Vardus*/, 567 /*[DEPRECATED] Dangerous!*/, 569 /*The Defense of Grom'gol*/, 570 /*Mok'thardin's Enchantment*/, 571 /*Mok'thardin's Enchantment*/, 572 /*Mok'thardin's Enchantment*/, 573 /*Mok'thardin's Enchantment*/, 579 /*Stormwind Library*/, 581 /*Hunt for Yenniku*/, 584 /*Bloodscalp Clan Heads*/, 585 /*Speaking with Nezzliok*/, 586 /*Speaking with Gan'zulah*/, 589 /*The Singing Crystals*/, 596 /*Bloody Bone Necklaces*/, 598 /*Split Bone Necklace*/, 614 /*The Captain's Chest*/, 629 /*The Vile Reef*/, 631 /*The Thandol Span*/, 632 /*The Thandol Span*/, 633 /*The Thandol Span*/, 634 /*Plea To The Alliance*/, 677 /*Call to Arms*/, 680 /*The Real Threat*/, 682 /*Stromgarde Badges*/, 684 /*Wanted! Marez Cowl*/, 685 /*Wanted! Otto and Falconcrest*/, 694 /*Trelane's Defenses*/, 696 /*Attack on the Tower*/, 699 /*[DEPRECATED]Lack of Surplus*/, 718 /*Mirages*/, 733 /*Scrounging*/, 739 /*Murdaloc*/, 742 /*The Ashenvale Hunt*/, 747 /*The Hunt Begins*/, 768 /*Gathering Leather*/, 769 /*Kodo Hide Bag*/, 776 /*Rites of the Earthmother*/, 782 /*Broken Alliances*/, 783 /*[DEPRECATED] A Threat Within*/, 786 /*Thwarting Kolkar Aggression*/, 788 /*Cutting Teeth*/, 789 /*Sting of the Scorpid*/, 791 /*Carry Your Weight*/, 792 /*Vile Familiars*/, 793 /*Broken Alliances*/, 806 /*Dark Storms*/, 809 /*Ak'Zeloth*/, 821 /*Chen's Empty Keg*/, 822 /*Chen's Empty Keg*/, 823 /*Report to Orgnil*/, 825 /*From The Wreckage....*/, 826 /*Zalazane*/, 840 /*Conscript of the Horde*/, 855 /*Centaur Bracers*/, 861 /*The Hunter's Way*/, 870 /*The Forgotten Pools*/, 873 /*Isha Awak*/, 874 /*Mahren Skyseer*/, 876 /*Serena Bloodfeather*/, 878 /*Tribes at War*/, 879 /*Betrayal from Within*/, 893 /*Weapons of Choice*/, 899 /*Consumed by Hatred*/, 924 /*The Demon Seed*/, 929 /*Teldrassil: The Refusal of the Aspects*/, 936 /*Assisting Arch Druid Runetotem*/, 1011 /*Forsaken Diseases*/, 1015 /*The New Frontier*/, 1017 /*Mage Summoner*/, 1019 /*The New Frontier*/, 1021 /*Vile Satyr! Dryads in Danger!*/, 1035 /*Fallen Sky Lake*/, 1037 /*Velinde Starsong*/, 1039 /*The Barrens Port*/, 1041 /*The Caravan Road*/, 1044 /*Answered Questions*/, 1047 /*The New Frontier*/, 1048 /*Into The Scarlet Monastery*/, 1050 /*Mythology of the Titans*/, 1051 /*Vorrel's Revenge*/, 1052 /*Down the Scarlet Path*/, 1053 /*In the Name of the Light*/, 1056 /*Journey to Stonetalon Peak*/, 1057 /*Reclaiming the Charred Vale*/, 1058 /*Jin'Zil's Forest Magic*/, 1059 /*Reclaiming the Charred Vale*/, 1061 /*The Spirits of Stonetalon*/, 1063 /*[DEPRECATED] The Elder Crone*/, 1064 /*[DEPRECATED] Forsaken Aid*/, 1066 /*[DEPRECATED] Blood of Innocents*/, 1067 /*[DEPRECATED] Return to Thunder Bluff*/, 1072 /*An Old Colleague*/, 1074 /*Ineptitude + Chemicals = Fun*/, 1075 /*A Scroll from Mauren*/, 1076 /*Devils in Westfall*/, 1078 /*Retrieval for Mauren*/, 1087 /*Cenarius' Legacy*/, 1088 /*Ordanus*/, 1089 /*The Den*/, 1097 /*Elmore's Task*/, 1101 /*The Crone of the Kraul*/, 1109 /*Going, Going, Guano!*/, 1132 /*Fiora Longears*/, 1146 /*The Swarm Grows*/, 1150 /*Test of Endurance*/, 1160 /*Test of Lore*/, 1164 /*To Steal From Thieves*/, 1166 /*[DEPRECATED]Overlord Mok'Morokk's Concern*/, 1168 /*Army of the Black Dragon*/, 1169 /*[DEPRECATED]Identifying the Brood*/, 1172 /*[DEPRECATED]The Brood of Onyxia*/, 1196 /*The Sacred Flame*/, 1201 /*Theramore Spies*/, 1241 /*The Missing Diplomat*/, 1244 /*The Missing Diplomat*/, 1248 /*The Missing Diplomat*/, 1258 /*... and Bugs*/, 1262 /*Report to Zor*/, 1264 /*The Missing Diplomat*/, 1265 /*The Missing Diplomat*/, 1271 /*Feast at the Blue Recluse*/, 1274 /*The Missing Diplomat*/, 1286 /*[DEPRECATED]The Deserters*/, 1301 /*[DEPRECATED]James Hyal*/, 1302 /*[DEPRECATED]James Hyal*/, 1322 /*[DEPRECATED]The Black Shield*/, 1339 /*Mountaineer Stormpike's Task*/, 1361 /*Regthar Deathgate*/, 1362 /*The Kolkar of Desolace*/, 1364 /*Mazen's Behest*/, 1368 /*Gelkis Alliance*/, 1382 /*Strange Alliance*/, 1383 /*Nothing But The Truth*/, 1385 /*Brutal Politics*/, 1396 /*[DEPRECATED]Encroaching Wildlife*/, 1420 /*Report to Helgrum*/, 1426 /*[DEPRECATED]Threat From the Sea*/, 1428 /*[DEPRECATED]Continued Threat*/, 1429 /*[DEPRECATED]The Atal'ai Exile*/, 1430 /*[DEPRECATED]Fresh Meat*/, 1434 /*Befouled by Satyr*/, 1448 /*In Search of The Temple*/, 1455 /*The Karnitol Shipwreck*/, 1456 /*The Karnitol Shipwreck*/, 1465 /*Vahlarriel's Search*/, 1469 /*Rhapsody's Tale*/, 1475 /*Into The Temple of Atal'Hakkar*/, 1476 /*Hearts of the Pure*/, 1482 /*The Corrupter*/, 1485 /*Vile Familiars*/, 1488 /*The Corrupter*/, 1489 /*Hamuul Runetotem*/, 1490 /*Nara Wildmane*/, 1492 /*[DEPRICATED] Wharfmaster Dizzywig*/, 1498 /*Path of Defense*/, 1507 /*Devourer of Souls*/, 1508 /*Blind Cazul*/, 1519 /*Call of Earth*/, 1520 /*Call of Earth*/, 1525 /*Call of Fire*/, 1598 /*The Stolen Tome*/, 1599 /*Beginnings*/, 1649 /*The Tome of Valor*/, 1650 /*The Tome of Valor*/, 1654 /*The Test of Righteousness*/, 1655 /*Bailor's Ore Shipment*/, 1679 /*Muren Stormpike*/, 1684 /*Elanaria*/, 1698 /*Yorus Barleybrew*/, 1699 /*The Rethban Gauntlet*/, 1716 /*Devourer of Souls*/, 1738 /*Heartswood*/, 1802 /*Tome of the Cabal*/, 1803 /*Tome of the Cabal*/, 1823 /*Speak with Ruga*/, 1861 /*Mirror Lake*/, 1883 /*Speak with Un'thuwa*/, 1920 /*Investigate the Blue Recluse*/, 1938 /*Ur's Treatise on Shadow Magic*/, 1941 /*Manaweave Robe*/, 1944 /*Waters of Xavian*/, 2158 /*Rest and Relaxation*/, 2160 /*Supplies to Tannok*/, 2161 /*A Peon's Burden*/, 2439 /*The Platinum Discs*/, 2458 /*Deep Cover*/, 2460 /*The Shattered Salute*/, 2479 /*Hinott's Assistance*/, 2519 /*The Temple of the Moon*/, 2623 /*The Swamp Talker*/, 2745 /*Infiltrating the Castle*/, 2746 /*Items of Some Consequence*/, 2769 /*The Brassbolts Brothers*/, 2821 /*The Mark of Quality*/, 2822 /*The Mark of Quality*/, 2923 /*Tinkmaster Overspark*/, 2931 /*Castpipe's Task*/, 2935 /*Consult Master Gadrin*/, 2937 /*Summoning Shadra*/, 2946 /*Seeing What Happens*/, 2963 /*Portents of Uldum*/, 2965 /*Portents of Uldum*/, 2981 /*A Threat in Feralas*/, 2987 /*Gordunni Cobalt*/, 2988 /*Witherbark Cages*/, 2989 /*The Altar of Zul*/, 3062 /*Dark Heart*/, 3121 /*A Strange Request*/, 3127 /*Mountain Giant Muisek*/, 3301 /*Mura Runetotem*/, 3445 /*The Sunken Temple*/, 3449 /*Arcane Runes*/, 3450 /*An Easy Pickup*/, 3641 /*Show Your Work*/, 3702 /*The Smoldering Ruins of Thaurissan*/, 3785 /*Morrowgrain Research*/, 3789 /*Assisting Arch Druid Staghelm*/, 3790 /*Assisting Arch Druid Staghelm*/, 3792 /*Morrowgrain to Feathermoon Stronghold*/, 3824 /*Gor'tesh the Brute Lord*/, 3904 /*Milly's Harvest*/, 3905 /*Grape Manifest*/, 3922 /*Nugget Slugs*/, 3923 /*[DEPRECATED] Rilli Greasygob*/, 3924 /*[DEPRICATED] Samophlange Manual*/, 4128 /*Ragnar Thunderbrew*/, 4131 /*The Woodpaw Gnolls*/, 4135 /*The Writhing Deep*/, 4141 /*Muigin and Larion*/, 4147 /*Marvon's Workshop*/, 4241 /*Marshal Windsor*/, 4265 /*Freed from the Hive*/, 4342 /*Kharan's Tale*/, 4581 /*Kayneth Stillwind*/, 4766 /*Mayara Brightwing*/, 4812 /*As Water Cascades*/, 4881 /*Assassination Plot*/, 4970 /*Frostsaber Provisions*/, 5042 /*Agamaggan's Strength*/, 5090 /*A Call to Arms: The Plaguelands!*/, 5095 /*A Call to Arms: The Plaguelands!*/, 5144 /*Elemental Leatherworking*/, 5145 /*Dragonscale Leatherworking*/, 5151 /*Hypercapacitor Gizmo*/, 5216 /*Target: Felstone Field*/, 5219 /*Target: Dalson's Tears*/, 5229 /*Target: Felstone Field*/, 5246 /*Fragments of the Past*/, 5247 /*Fragments of the Past*/, 5250 /*Starfall*/, 5261 /*[DEPRECATED] Eagan Peltskinner*/, 5481 /*Gordo's Task*/, 5722 /*Searching for the Lost Satchel*/, 5724 /*Returning the Lost Satchel*/, 5725 /*The Power to Destroy...*/, 5727 /*Hidden Enemies*/, 5801 /*Fire Plume Forged*/, 5802 /*Fire Plume Forged*/, 5961 /*The Champion of the Banshee Queen*/, 5981 /*Rampaging Giants*/, 6141 /*Brother Anton*/, 6142 /*Clam Bait*/, 6182 /*The First and the Last*/, 6283 /*Bloodfury Bloodline*/, 6322 /*Michael Garrett*/, 6342 /*An Unexpected Gift*/, 6363 /*Tal the Wind Rider Master*/, 6382 /*The Ashenvale Hunt*/, 6385 /*Doras the Wind Rider Master*/, 6388 /*Gryth Thurden*/, 6442 /*Naga at the Zoram Strand*/, 6504 /*The Lost Pages*/, 6541 /*Report to Kadrak*/, 6571 /*Warsong Supplies*/, 6609 /*I Got Nothin' Left!*/, 6612 /*I Know A Guy...*/, 6622 /*Triage*/, 6624 /*Triage*/, 6661 /*Deeprun Rat Roundup*/, 6762 /*Rabine Saturna*/, 6964 /*The Reason for the Season*/, 7062 /*The Reason for the Season*/, 7063 /*The Feast of Winter Veil*/, 7068 /*Shadowshard Fragments*/, 7070 /*Shadowshard Fragments*/, 7261 /*The Sovereign Imperative*/, 7493 /*The Journey Has Just Begun*/, 7497 /*The Journey Has Just Begun*/, 7563 /*Rage of Blood*/, 7623 /*Lord Banehollow*/, 7863 /*Sentinel Basic Care Package*/, 8260 /*Arathor Basic Care Package*/, 8263 /*Defiler's Basic Care Package*/, 8264 /*Defiler's Standard Care Package*/, 8551 /*The Captain's Chest*/, 8746 /*Metzen the Reindeer*/, 8762 /*Metzen the Reindeer*/, 8780 /*Armor Kits for the Field*/, 8811 /*One Commendation Signet*/, 8812 /*One Commendation Signet*/, 8813 /*One Commendation Signet*/, 8814 /*One Commendation Signet*/, 8815 /*One Commendation Signet*/, 8816 /*One Commendation Signet*/, 8817 /*One Commendation Signet*/, 8818 /*One Commendation Signet*/, 8819 /*Ten Commendation Signets*/, 8820 /*Ten Commendation Signets*/, 8821 /*Ten Commendation Signets*/, 8822 /*Ten Commendation Signets*/, 8823 /*Ten Commendation Signets*/, 8824 /*Ten Commendation Signets*/, 8825 /*Ten Commendation Signets*/, 8826 /*Ten Commendation Signets*/, 8830 /*One Commendation Signet*/, 8831 /*Ten Commendation Signets*/, 8832 /*One Commendation Signet*/, 8833 /*Ten Commendation Signets*/, 8834 /*One Commendation Signet*/, 8835 /*Ten Commendation Signets*/, 8836 /*One Commendation Signet*/, 8837 /*Ten Commendation Signets*/, 8838 /*One Commendation Signet*/, 8839 /*Ten Commendation Signets*/, 8840 /*One Commendation Signet*/, 8841 /*Ten Commendation Signets*/, 8842 /*One Commendation Signet*/, 8843 /*Ten Commendation Signets*/, 8844 /*One Commendation Signet*/, 8845 /*Ten Commendation Signets*/, 8900 /*Dearest Elenia,*/, 8901 /*Dearest Elenia,*/, 8902 /*Dearest Elenia,*/, 8979 /*Fenstad's Hunch*/, 8983 /*Tracing the Source*/, 8984 /*The Source Revealed*/, 9024 /*Aristan's Hunch*/, 9025 /*Morgan's Discovery*/, 9026 /*Tracing the Source*/, 9027 /*Tracing the Source*/, 9028 /*The Source Revealed*/, 9367 /*The Festival of Fire*/, 9368 /*The Festival of Fire*/, 9452 /*Red Snapper - Very Tasty!*/, 9455 /*Strange Findings*/, 9491 /*Greed*/, 9505 /*The Prophecy of Velen*/, 9506 /*A Small Start*/, 9512 /*Cookie's Jumbo Gumbo*/, 9513 /*Reclaiming the Ruins*/, 9514 /*Rune Covered Tablet*/, 9528 /*A Cry For Help*/, 9530 /*I've Got a Plant*/, 9539 /*Totem of Coo*/, 9540 /*Totem of Tikti*/, 9541 /*Totem of Yor*/, 9542 /*Totem of Vark*/, 9544 /*The Prophecy of Akida*/, 9559 /*Stillpine Hold*/, 9560 /*Beasts of the Apocalypse!*/, 9565 /*Search Stillpine Hold*/, 9566 /*Blood Crystals*/, 9571 /*The Kurken's Hide*/, 9616 /*Bandits!*/, 9671 /*Urgent Delivery*/, 9751 /*The Bloodcurse Legacy*/, 9920 /*Mo'mor the Breaker*/, 10166 /*Whitebark's Memory*/, 10346 /*Return to the Abyssal Shelf*/, 10347 /*Return to the Abyssal Shelf*/, 10366 /*Jol*/, 10372 /*A Discreet Inquiry*/, 10428 /*The Missing Fisherman*/, 10477 /*More Warbeads*/, 10478 /*More Warbeads!*/, 10693 /*One Commendation Signet*/, 10694 /*Ten Commendation Signets*/, 10695 /*One Commendation Signet*/, 10696 /*Ten Commendation Signets*/, 10697 /*One Commendation Signet*/, 10698 /*Ten Commendation Signets*/, 10699 /*One Commendation Signet*/, 10700 /*Ten Commendation Signets*/, 10875 /*Report to Nazgrel*/, 10919 /*Fei Fei's Treat*/, 11107 /*Bow to the Highlord*/, 12275 /*The Demo-gnome*/, 14355 /*Into The Scarlet Monastery*/, 14356 /*The Power to Destroy...*/, 20441 /*Rite of Vision*/, 24440 /*Winterhoof Cleansing*/, 24483 /*Stormglen*/, 26804 /*Flight to Razor Hill*/, 27255 /*The Black Shield*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Garrick Padfoot - a cutthroat who''s plagued our farmers and merchants for weeks - was seen at a shack near the vineyards, which lies east of the Abbey and across the bridge. Bring me the villain''s head, and earn his bounty!$B$BBut be wary, $n. Garrick has gathered a gang of thugs around him. He will not be an easy man to reach.', `VerifiedBuild`=19034 WHERE `ID`=6; -- Bounty on Garrick Padfoot UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `QuestDescription`='Your first task is one of cleansing, $n. A clan of kobolds have infested the woods to the north. Go there and fight the kobold vermin you find. Reduce their numbers so that we may one day drive them from Northshire.', `VerifiedBuild`=19034 WHERE `ID`=7; -- [DEPRECATED] Kobold Camp Cleanup -UPDATE `quest_template` SET `VerifiedBuild`=19034 WHERE `ID` IN (10 /*The Scrimshank Redemption*/, 55 /*Morbent Fel*/, 73 /*<TXT> No Reward*/, 104 /*The Coastal Menace*/, 118 /*The Price of Shoes*/, 122 /*Underbelly Scales*/, 136 /*Captain Sanders' Hidden Treasure*/, 137 /*<NYI> <TXT> Stormwind Commendation*/, 185 /*Tiger Hunting*/, 186 /*Tiger Stalking*/, 187 /*Tiger Prowess*/, 190 /*Panther Hunting*/, 191 /*Panther Stalking*/, 192 /*Panther Prowess*/, 194 /*Raptor Hunting*/, 195 /*Raptor Stalking*/, 223 /*Worgen in the Woods*/, 241 /*<TEST> HEY MISTER WILSON!*/, 259 /*<UNUSED>*/, 272 /*Trial of the Sea Lion*/, 282 /*Senir's Observations*/, 321 /*Lightforge Iron*/, 338 /*The Green Hills of Stranglethorn*/, 339 /*Chapter I*/, 340 /*Chapter II*/, 341 /*Chapter III*/, 342 /*Chapter IV*/, 352 /*<UNUSED>*/, 406 /*<UNUSED>*/, 422 /*Arugal's Folly*/, 428 /*Lost Deathstalkers*/, 429 /*Wild Hearts*/, 430 /*Return to Quinn*/, 435 /*Escorting Erland*/, 440 /*The Engraved Ring*/, 451 /*A Recipe For Death*/, 458 /*The Woodland Protector*/, 462 /*<UNUSED>*/, 472 /*Fall of Dun Modr*/, 477 /*Border Crossings*/, 480 /*The Weaver*/, 481 /*Dalar's Analysis*/, 490 /*<UNUSED>*/, 491 /*Wand to Bethor*/, 497 /*<UNUSED>*/, 515 /*[DEPRECATED] Elixir of Agony*/, 516 /*Beren's Peril*/, 594 /*Message in a Bottle*/, 625 /*Cortello's Riddle*/, 626 /*Cortello's Riddle*/, 650 /*Ripple Recovery*/, 656 /*Summoning the Princess*/, 658 /*Hints of a New Plague?*/, 681 /*Northfold Manor*/, 687 /*Theldurin the Lost*/, 692 /*The Lost Fragments*/, 709 /*Solution to Doom*/, 713 /*Coolant Heads Prevail*/, 729 /*The Absent Minded Prospector*/, 746 /*Dwarven Digging*/, 749 /*The Ravaged Caravan*/, 750 /*The Hunt Continues*/, 751 /*The Ravaged Caravan*/, 755 /*Rites of the Earthmother*/, 757 /*Rite of Strength*/, 765 /*Supervisor Fizsprocket*/, 766 /*Mazzranache*/, 767 /*Rite of Vision*/, 772 /*Rite of Vision*/, 773 /*Rite of Wisdom*/, 774 /*<UNUSED>*/, 775 /*Journey into Thunder Bluff*/, 780 /*The Battleboars*/, 785 /*A Strategic Alliance*/, 787 /*The New Horde*/, 790 /*Sarkoth*/, 796 /*<UNUSED>*/, 797 /*<UNUSED>*/, 798 /*<UNUSED>*/, 799 /*<UNUSED>*/, 800 /*<UNUSED>*/, 801 /*<UNUSED>*/, 802 /*<UNUSED>*/, 803 /*<UNUSED>*/, 814 /*<UNUSED>*/, 835 /*Securing the Lines*/, 865 /*It's Gotta be the Horn*/, 894 /*Samophlange*/, 902 /*Samophlange*/, 920 /*Tenaron's Summons*/, 933 /*Teldrassil: The Coming Dawn*/, 934 /*Crown of the Earth*/, 937 /*The Enchanted Glade*/, 942 /*The Absent Minded Prospector*/, 943 /*The Absent Minded Prospector*/, 946 /*<UNUSED>*/, 952 /*Grove of the Ancients*/, 954 /*Bashal'Aran*/, 955 /*Bashal'Aran*/, 957 /*Bashal'Aran*/, 963 /*For Love Eternal*/, 965 /*The Tower of Althalaxx*/, 967 /*The Tower of Althalaxx*/, 970 /*The Tower of Althalaxx*/, 973 /*The Tower of Althalaxx*/, 974 /*Finding the Source*/, 981 /*The Tower of Althalaxx*/, 984 /*How Big a Threat?*/, 987 /*<UNUSED>*/, 989 /*<UNUSED>*/, 999 /*When Dreams Turn to Nightmares*/, 1005 /*What Lurks Beyond*/, 1014 /*Arugal Must Die*/, 1049 /*Compendium of the Fallen*/, 1065 /*[DEPRECATED] Journey to Tarren Mill*/, 1093 /*Super Reaper 6000*/, 1095 /*[DEPRECATED] Further Instructions*/, 1099 /*Goblins Win!*/, 1102 /*A Vengeful Fate*/, 1106 /*Martek the Exiled*/, 1111 /*Wharfmaster Dizzywig*/, 1115 /*The Rumormonger*/, 1122 /*Report Back to Fizzlebub*/, 1124 /*Wasteland*/, 1141 /*The Family and the Fishing Pole*/, 1143 /*The Tower of Althalaxx*/, 1174 /*Gnomes Win!*/, 1177 /*Hungry!*/, 1178 /*Goblin Sponsorship*/, 1183 /*Goblin Sponsorship*/, 1206 /*Jarl Needs Eyes*/, 1221 /*Blueleaf Tubers*/, 1279 /*<nyi> <TXT>The Centaur Hoofprints*/, 1280 /*<nyi> <TXT>The Centaur Hoofprints*/, 1293 /*<nyi> <TXT> Centaur Hoofprints*/, 1294 /*<nyi> <TXT>Centaur Sympathies*/, 1295 /*<nyi> <TXT> Course of Action*/, 1296 /*<nyi> <TXT> Course of Action*/, 1297 /*<nyi> <TXT> Course of Action*/, 1299 /*<nyi> <TXT> Thrall's Dirty Work*/, 1300 /*<nyi> <TXT> Lorn Grim Totem*/, 1359 /*Zinge's Delivery*/, 1371 /*Gizmo for Warug*/, 1373 /*Ongeku*/, 1375 /*Khan Shaka*/, 1381 /*Khan Hratha*/, 1392 /*Noboru the Cudgel*/, 1431 /*Alliance Relations*/, 1432 /*Alliance Relations*/, 1445 /*[DEPRECATED]The Temple of Atal'Hakkar*/, 1446 /*Jammal'an the Prophet*/, 1483 /*[DEPRECATED] Ziz Fizziks*/, 1657 /*Stinking Up Southshore*/, 1707 /*Water Pouch Bounty*/, 1712 /*Cyclonian*/, 1740 /*The Orb of Soran'ruk*/, 1796 /*Components for the Enchanted Gold Bloodrobe*/, 1799 /*Fragments of the Orb of Orahil*/, 1947 /*Journey to the Marsh*/, 1948 /*Items of Power*/, 1949 /*Hidden Secrets*/, 1951 /*Rituals of Power*/, 1954 /*The Infernal Orb*/, 2283 /*Necklace Recovery*/, 2521 /*To Serve Kum'isha*/, 2641 /*Sprinkle's Secret Ingredient*/, 2768 /*Divino-matic Rod*/, 2801 /*A Tale of Sorrow*/, 2864 /*Tran'rek*/, 2872 /*Stoley's Debt*/, 2882 /*Cuergo's Gold*/, 2952 /*The Sparklematic 5200!*/, 3373 /*The Essence of Eranikus*/, 3375 /*Replacement Phial*/, 3446 /*Into the Depths*/, 3505 /*[DEPRECATED 4.x] Betrayed*/, 3506 /*Betrayed*/, 3518 /*Delivery to Magatha*/, 3519 /*A Friend in Need*/, 3520 /*Screecher Spirits*/, 3521 /*Iverron's Antidote*/, 3523 /*Scourge of the Downs*/, 3527 /*The Prophecy of Mosh'aru*/, 3681 /*Tome of Divinity*/, 3741 /*Hilary's Necklace*/, 3845 /*It's a Secret to Everybody*/, 3861 /*CLUCK!*/, 3882 /*Roll the Bones*/, 3884 /*Williden's Journal*/, 3908 /*It's a Secret to Everybody*/, 3909 /*The Videre Elixir*/, 3942 /*Linken's Memory*/, 4243 /*Chasing A-Me 01*/, 4290 /*The Fare of Lar'korwi*/, 4292 /*The Bait for Lar'korwi*/, 4295 /*Rocknot's Ale*/, 4324 /*Yuka Screwspigot*/, 4384 /*Crystal Yield*/, 4450 /*Ledger from Tanaris*/, 4451 /*The Key to Freedom*/, 4493 /*March of the Silithid*/, 4494 /*March of the Silithid*/, 4496 /*Bungle in the Jungle*/, 4501 /*Beware of Pterrordax*/, 4503 /*Shizzle's Flyer*/, 4605 /*The Sparklematic 5200!*/, 4606 /*The Sparklematic 5200!*/, 4681 /*Washed Ashore*/, 4740 /*WANTED: Murkdeep!*/, 4762 /*The Cliffspring River*/, 4769 /*Vivian Lagrave and the Darkstone Tablet*/, 4783 /*Components for the Enchanted Gold Bloodrobe*/, 4808 /*Felnok Steelspring*/, 4809 /*Chillwind Horns*/, 4813 /*The Fragments Within*/, 4842 /*[DEPRECATED]Strange Sources*/, 4905 /*<UNUSED>*/, 4962 /*Shard of a Felhound*/, 4968 /*Knowledge of the Orb of Orahil*/, 5051 /*Two Halves Become One*/, 5053 /*<UNUSED>*/, 5054 /*Ursius of the Shardtooth*/, 5055 /*Brumeran of the Chillwind*/, 5065 /*The Lost Tablets of Mosh'aru*/, 5085 /*[DEPRECATED]Mystery Goo*/, 5086 /*[DEPRECATED]Toxic Horrors*/, 5142 /*Little Pamela*/, 5153 /*A Strange Historian*/, 5154 /*The Annals of Darrowshire*/, 5155 /*[DEPRECATED]Forces of Jaedenar*/, 5157 /*[DEPRECATED]Collection of the Corrupt Water*/, 5165 /*[DEPRECATED]Dousing the Flames of Protection*/, 5211 /*Defenders of Darrowshire*/, 5242 /*[DEPRECATED]A Final Blow*/, 5321 /*The Sleeper Has Awakened*/, 5441 /*Lazy Peons*/, 5501 /*Bone Collector*/, 5542 /*Demon Dogs*/, 5543 /*Blood Tinged Skies*/, 5544 /*Carrion Grubbage*/, 5561 /*Kodo Roundup*/, 5601 /*Sister Pamela*/, 5675 /*Elune's Grace*/, 5781 /*Of Forgotten Memories*/, 5821 /*Bodyguard for Hire*/, 5845 /*Of Lost Honor*/, 5863 /*The Dunemaul Compound*/, 5931 /*Back to Darnassus*/, 6031 /*Runecloth*/, 6066 /*The Hunter's Path*/, 6321 /*Supplying Brill*/, 6341 /*To Darnassus*/, 6344 /*Reminders of Home*/, 6361 /*A Bundle of Hides*/, 6387 /*Honor Students*/, 6642 /*Favor Amongst the Brotherhood, Dark Iron Ore*/, 6643 /*Favor Amongst the Brotherhood, Fiery Core*/, 6645 /*Favor Amongst the Brotherhood, Core Leather*/, 6646 /*Favor Amongst the Brotherhood, Blood of the Mountain*/, 6804 /*Poisoned Water*/, 6805 /*Stormers and Rumblers*/, 6981 /*The Glowing Shard*/, 7044 /*Legends of Maraudon*/, 7069 /*<UNUSED>*/, 7383 /*Teldrassil: The Burden of the Kaldorei*/, 7581 /*The Prison's Bindings*/, 7582 /*The Prison's Casing*/, 7701 /*WANTED: Overseer Maltorius*/, 7737 /*Gaining Even More Acceptance*/, 7838 /*Arena Grandmaster*/, 7881 /*Carnival Boots*/, 7889 /*Coarse Weightstone*/, 7894 /*Copper Modulator*/, 7899 /*Small Furry Paws*/, 7904 /*<UNUSED>*/, 7930 /*5 Tickets - Darkmoon Flower*/, 7934 /*50 Tickets - Darkmoon Storage Box*/, 7946 /*Spawn of Jubjub*/, 8151 /*The Hunter's Charm*/, 8227 /*Nat's Measuring Tape*/, 8233 /*A Simple Request*/, 8250 /*Magecraft*/, 8254 /*Cenarion Aid*/, 8282 /*Noggle's Lost Satchel*/, 8285 /*The Deserter*/, 8307 /*Desert Recipe*/, 8308 /*Brann Bronzebeard's Lost Letter*/, 8319 /*Encrypted Twilight Texts*/, 8336 /*A Fistful of Slivers*/, 8353 /*Chicken Clucking for a Mint*/, 8354 /*Chicken Clucking for a Mint*/, 8355 /*Incoming Gumdrop*/, 8356 /*Flexing for Nougat*/, 8357 /*Dancing for Marzipan*/, 8358 /*Incoming Gumdrop*/, 8359 /*Flexing for Nougat*/, 8360 /*Dancing for Marzipan*/, 8423 /*Warrior Kinship*/, 8424 /*War on the Shadowsworn*/, 8425 /*Voodoo Feathers*/, 8459 /*<UNUSED>*/, 8460 /*[DEPRECATED]Timbermaw Ally*/, 8462 /*[DEPRECATED]Speak to Nafien*/, 8465 /*[DEPRECATED]Speak to Salfa*/, 8492 /*The Alliance Needs Copper Bars!*/, 8494 /*The Alliance Needs Iron Bars!*/, 8499 /*The Alliance Needs Thorium Bars!*/, 8501 /*Target: Hive'Ashi Stingers*/, 8502 /*Target: Hive'Ashi Workers*/, 8503 /*The Alliance Needs Stranglekelp!*/, 8505 /*The Alliance Needs Purple Lotus!*/, 8509 /*The Alliance Needs Arthas' Tears!*/, 8511 /*The Alliance Needs Light Leather!*/, 8513 /*The Alliance Needs Medium Leather!*/, 8515 /*The Alliance Needs Thick Leather!*/, 8517 /*The Alliance Needs Linen Bandages!*/, 8520 /*The Alliance Needs Silk Bandages!*/, 8522 /*The Alliance Needs Runecloth Bandages!*/, 8524 /*The Alliance Needs Rainbow Fin Albacore!*/, 8526 /*The Alliance Needs Roast Raptor!*/, 8528 /*The Alliance Needs Spotted Yellowtail!*/, 8530 /*The Alliance Needs Singed Corestones!*/, 8532 /*The Horde Needs Copper Bars!*/, 8539 /*Target: Hive'Zora Hive Sisters*/, 8542 /*The Horde Needs Tin Bars!*/, 8544 /*Conqueror's Spaulders*/, 8545 /*The Horde Needs Mithril Bars!*/, 8549 /*The Horde Needs Peacebloom!*/, 8559 /*Conqueror's Greaves*/, 8560 /*Conqueror's Legguards*/, 8565 /*Past Victories in Arathi*/, 8566 /*Past Victories in Arathi*/, 8567 /*Past Victories in Warsong Gulch*/, 8568 /*Past Victories in Warsong Gulch*/, 8569 /*Past Efforts in Warsong Gulch*/, 8570 /*Past Efforts in Warsong Gulch*/, 8580 /*The Horde Needs Firebloom!*/, 8582 /*The Horde Needs Purple Lotus!*/, 8588 /*The Horde Needs Heavy Leather!*/, 8590 /*The Horde Needs Thick Leather!*/, 8593 /*Trousers of the Oracle*/, 8594 /*Mantle of the Oracle*/, 8595 /*Mortal Champions*/, 8596 /*Footwraps of the Oracle*/, 8600 /*The Horde Needs Rugged Leather!*/, 8602 /*Stormcaller's Pauldrons*/, 8604 /*The Horde Needs Wool Bandages!*/, 8607 /*The Horde Needs Mageweave Bandages!*/, 8609 /*The Horde Needs Runecloth Bandages!*/, 8611 /*The Horde Needs Lean Wolf Steaks!*/, 8613 /*The Horde Needs Spotted Yellowtail!*/, 8615 /*The Horde Needs Baked Salmon!*/, 8617 /*The Horde Needs Singed Corestones!*/, 8619 /*Morndeep the Elder*/, 8621 /*Stormcaller's Footguards*/, 8622 /*Stormcaller's Hauberk*/, 8624 /*Stormcaller's Leggings*/, 8625 /*Enigma Shoulderpads*/, 8626 /*Striker's Footguards*/, 8629 /*Avenger's Legguards*/, 8630 /*Avenger's Pauldrons*/, 8631 /*Enigma Leggings*/, 8633 /*Enigma Robes*/, 8634 /*Enigma Boots*/, 8635 /*Splitrock the Elder*/, 8636 /*Rumblerock the Elder*/, 8637 /*Deathdealer's Boots*/, 8640 /*Deathdealer's Leggings*/, 8641 /*Deathdealer's Spaulders*/, 8642 /*Silvervein the Elder*/, 8643 /*Highpeak the Elder*/, 8644 /*Stonefort the Elder*/, 8645 /*Obsidian the Elder*/, 8646 /*Hammershout the Elder*/, 8647 /*Bellowrage the Elder*/, 8648 /*Darkcore the Elder*/, 8649 /*Stormbrow the Elder*/, 8650 /*Snowcrown the Elder*/, 8651 /*Ironband the Elder*/, 8652 /*Graveborn the Elder*/, 8653 /*Goldwell the Elder*/, 8654 /*Primestone the Elder*/, 8655 /*Avenger's Greaves*/, 8658 /*Striker's Leggings*/, 8659 /*Striker's Pauldrons*/, 8660 /*Doomcaller's Footwraps*/, 8663 /*Doomcaller's Trousers*/, 8664 /*Doomcaller's Mantle*/, 8665 /*Genesis Boots*/, 8668 /*Genesis Trousers*/, 8669 /*Genesis Shoulderpads*/, 8670 /*Runetotem the Elder*/, 8671 /*Ragetotem the Elder*/, 8672 /*Stonespire the Elder*/, 8673 /*Bloodhoof the Elder*/, 8674 /*Winterhoof the Elder*/, 8675 /*Skychaser the Elder*/, 8676 /*Wildmane the Elder*/, 8677 /*Darkhorn the Elder*/, 8678 /*Wheathoof the Elder*/, 8679 /*Grimtotem the Elder*/, 8680 /*Windtotem the Elder*/, 8681 /*Thunderhorn the Elder*/, 8682 /*Skyseer the Elder*/, 8683 /*Dawnstrider the Elder*/, 8684 /*Dreamseer the Elder*/, 8685 /*Mistwalker the Elder*/, 8686 /*High Mountain the Elder*/, 8687 /*Target: Hive'Zora Tunnelers*/, 8688 /*Windrun the Elder*/, 8713 /*Starsong the Elder*/, 8714 /*Moonstrike the Elder*/, 8715 /*Bladeleaf the Elder*/, 8716 /*Starglade the Elder*/, 8717 /*Moonwarden the Elder*/, 8718 /*Bladeswift the Elder*/, 8719 /*Bladesing the Elder*/, 8720 /*Skygleam the Elder*/, 8721 /*Starweave the Elder*/, 8722 /*Meadowrun the Elder*/, 8723 /*Nightwind the Elder*/, 8724 /*Morningdew the Elder*/, 8725 /*Riversong the Elder*/, 8726 /*Brightspear the Elder*/, 8727 /*Farwhisper the Elder*/, 8744 /*A Carefully Wrapped Present*/, 8764 /*The Changing of Paths - Protector No More*/, 8765 /*The Changing of Paths - Invoker No More*/, 8766 /*The Changing of Paths - Conqueror No More*/, 8770 /*Target: Hive'Ashi Defenders*/, 8771 /*Target: Hive'Ashi Sandstalkers*/, 8772 /*Target: Hive'Zora Waywatchers*/, 8773 /*Target: Hive'Zora Reavers*/, 8774 /*Target: Hive'Regal Ambushers*/, 8775 /*Target: Hive'Regal Spitfires*/, 8776 /*Target: Hive'Regal Slavemakers*/, 8777 /*Target: Hive'Regal Burrowers*/, 8788 /*A Gently Shaken Gift*/, 8790 /*Imperial Qiraji Regalia*/, 8856 /*Desert Survival Kits*/, 8863 /*Festival Dumplings*/, 8864 /*Festive Lunar Dresses*/, 8865 /*Festive Lunar Pant Suits*/, 8866 /*Bronzebeard the Elder*/, 8971 /*REUSE*/, 8972 /*REUSE*/, 8973 /*REUSE*/, 8974 /*REUSE*/, 8975 /*REUSE*/, 8976 /*REUSE*/, 9053 /*A Better Ingredient*/, 9085 /*Shadows of Doom*/, 9130 /*Goods from Silvermoon City*/, 9134 /*Skymistress Gloaming*/, 9141 /*They Call Me ""The Rooster""*/, 9153 /*Under the Shadow*/, 9154 /*Light's Hope Chapel*/, 9180 /*Journey to Undercity*/, 9194 /*Craftsman's Writ - Runecloth Robe*/, 9198 /*Craftsman's Writ - Thorium Tube*/, 9204 /*Craftsman's Writ - Stonescale Eel*/, 9208 /*The Savage Guard - Arcanum of Protection*/, 9209 /*The Savage Guard - Arcanum of Rapidity*/, 9210 /*The Savage Guard - Arcanum of Focus*/, 9221 /*Superior Armaments of Battle - Friend of the Dawn*/, 9222 /*Epic Armaments of Battle - Friend of the Dawn*/, 9223 /*Superior Armaments of Battle - Honored Amongst the Dawn*/, 9284 /*Aldor Faction Test*/, 9285 /*Consortium Faction Test*/, 9286 /*Scryers Faction Test*/, 9295 /*Letter from the Front*/, 9299 /*Note from the Front*/, 9300 /*Page from the Front*/, 9301 /*Envelope from the Front*/, 9302 /*Missive from the Front*/, 9304 /*Document from the Front*/, 9319 /*A Light in Dark Places*/, 9322 /*Wild Fires in Kalimdor*/, 9323 /*Wild Fires in the Eastern Kingdoms*/, 9327 /*The Forsaken*/, 9378 /*DND FLAG The Dread Citadel - Naxxramas*/, 9386 /*A Light in Dark Places*/, 9388 /*Flickering Flames in Kalimdor*/, 9389 /*Flickering Flames in the Eastern Kingdoms*/, 9411 /*<UNUSED>Infused Bandages*/, 9412 /*<UNUSED>Crystal Flake Throat Lozenge*/, 9413 /*<UNUSED>Crystal Flake Throat Lozenge*/, 9414 /*<UNUSED>Infused Bandages*/, 9422 /*Scouring the Desert*/, 9458 /*<UNUSED>Potion of Heightened Senses*/, 9459 /*<UNUSED>Anti-crit Potion*/, 9463 /*Medicinal Purpose*/, 9477 /*<UNUSED>Potion of Nature's Armor*/, 9478 /*<UNUSED>Portable Healing Font*/, 9479 /*<UNUSED>Glorious Standard of the Alliance*/, 9480 /*<UNUSED>Debuff Banner*/, 9481 /*<UNUSED>Light Consumable*/, 9482 /*<UNUSED>Nature Resist Potion*/, 9487 /*Arcane Reavers*/, 9488 /*A Simple Robe*/, 9577 /*DAILY TEST QUEST (PVP)*/, 9603 /*Beds, Bandages, and Beyond*/, 9611 /*Azuremyst: aa - A - Quest Flag 000*/, 9626 /*Meeting the Warchief*/, 9692 /*The Path of the Adept*/, 9713 /*Glowcap Harvesting Enabling Flag*/, 9727 /*Now That We're Still Friends...*/, 9742 /*More Spore Sacs*/, 9744 /*More Tendrils!*/, 9762 /*The Unwritten Prophecy*/, 9784 /*Identify Plant Parts*/, 9807 /*More Fertile Spores*/, 9809 /*More Glowcaps*/, 9818 /*The Underneath*/, 9883 /*More Crystal Fragments*/, 9884 /*Membership Benefits*/, 9885 /*Membership Benefits*/, 9886 /*Membership Benefits*/, 9887 /*Membership Benefits*/, 9915 /*More Heads Full of Ivory*/, 9926 /*FLAG Shadow Council/Warmaul Questline*/, 10019 /*More Venom Sacs*/, 10025 /*More Basilisk Eyes*/, 10181 /*Collector's Edition: -pn - E - FLAG*/, 10304 /*Vindicator Aldar*/, 10308 /*Another Heap of Ethereals*/, 10326 /*More Marks of Kil'jaeden*/, 10327 /*Single Mark of Kil'jaeden*/, 10414 /*Single Firewing Signet*/, 10415 /*More Firewing Signets*/, 10419 /*Arcane Tomes*/, 10421 /*Fel Armaments*/, 10454 /*FLAG - OFF THE RAILS*/, 10490 /*Call of Water*/, 10551 /*Allegiance to the Aldor*/, 10552 /*Allegiance to the Scryers*/, 10654 /*More Marks of Sargeras*/, 10655 /*Single Mark of Sargeras*/, 10658 /*More Sunfury Signets*/, 10659 /*Single Sunfury Signet*/, 10822 /*Single Sunfury Signet*/, 10823 /*More Sunfury Signets*/, 10827 /*More Marks of Sargeras*/, 10828 /*Single Mark of Sargeras*/, 10850 /*Nether Gas In a Fel Fire Engine*/, 10890 /*[UNUSED] <NYI> */, 10900 /*The Mark of Vashj*/, 10918 /*More Feathers*/, 10955 /*Morthis Whisperwing*/, 10981 /*Nexus-Prince Shaffar's Personal Chamber*/, 10999 /*One Shot, One Kill*/, 11006 /*More Shadow Dust*/, 11012 /*Blood Oath of the Netherwing*/, 11014 /*Enter the Taskmaster*/, 11019 /*Your Friend On The Inside*/, 11050 /*Accepting All Eggs*/, 11057 /*The Trouble Below*/, 11063 /*Earning Your Wings...*/, 11074 /*Tokens of the Descendants*/, 11109 /*Jorus the Cobalt Netherwing Drake*/, 11110 /*Malfas the Purple Netherwing Drake*/, 11111 /*Onyxien the Onyx Netherwing Drake*/, 11113 /*Voranaku the Violet Netherwing Drake*/, 11114 /*Zoya the Veridian Netherwing Drake*/, 11115 /*The Mark of Vashj (FLAG ONLY)*/, 11172 /*[DEPRECATED]The Zeppelin Crash*/, 11197 /*ZZOLD Upper Deck Promo - Ghost Wolf Mount OLD*/, 11208 /*Delivery for Drazzit*/, 11211 /*Help for Mudsprocket*/, 11226 /*Upper Deck Promo - Spectral Tiger Mount*/, 11334 /*He Shoots, He Scores!*/, 11353 /*FLAG: Got the work shirt*/, 11361 /*Fire Training*/, 11401 /*Call the Headless Horseman*/, 11449 /*Fire Training*/, 11450 /*Fire Training*/, 11518 /*Sunwell Daily Portal Flag*/, 11528 /*A Winter Veil Gift*/, 11554 /*A Friend in the Frontlines*/, 11555 /*Honored by Your Allies*/, 11556 /*Revered in the Field of Battle*/, 11557 /*Exalted Among All Combatants*/, 11577 /*WoW Collector's Edition: - DEM - E - FLAG*/, 11621 /*The Tablet of Leviroth*/, 11665 /*Crocolisks in the City*/, 11666 /*Bait Bandits*/, 11667 /*The One That Got Away*/, 11668 /*Shrimpin' Ain't Easy*/, 11669 /*Felblood Fillet*/, 11679 /*Reforging the Key*/, 11874 /*Upper Deck Promo - Rocket Mount*/, 11937 /*FLAG - all torch return quests are complete*/, 11987 /*zzOLDFortune Card: Silver*/, 12062 /*Insult Coren Direbrew*/, 12186 /*FLAG: Winner*/, 12187 /*FLAG: Participant*/, 12318 /*Save Brewfest!*/, 12396 /*Candy Bucket*/, 12397 /*Candy Bucket*/, 12398 /*Candy Bucket*/, 12399 /*Candy Bucket*/, 12400 /*Candy Bucket*/, 12401 /*Candy Bucket*/, 12402 /*Candy Bucket*/, 12403 /*Candy Bucket*/, 12404 /*Candy Bucket*/, 12405 /*Candy Bucket*/, 12406 /*Candy Bucket*/, 12407 /*Candy Bucket*/, 12408 /*Candy Bucket*/, 12409 /*Candy Bucket*/, 12410 /*Candy Bucket*/, 12485 /*Howling Fjord: aa - A - LK FLAG*/, 12494 /*FLAG: Riding Trainer Advertisement (20)*/, 12497 /*Galakrond and the Scourge*/, 12567 /*Blessing of Zim'Abwa*/, 12600 /*Upper Deck Promo - Bear Mount*/, 12616 /*Chamber of Secrets*/, 12618 /*Blessing of Zim'Torga*/, 12656 /*Blessing of Zim'Rhuk*/, 12663 /*Reunited*/, 12664 /*Dark Horizon*/, 12693 /*Wolvar Faction Choice Tracker*/, 12694 /*Oracle Faction Choice Tracker*/, 12845 /*Dalaran Teleport Crystal Flag*/, 12940 /*Candy Bucket*/, 12941 /*Candy Bucket*/, 12950 /*Candy Bucket*/, 13012 /*Sardis the Elder*/, 13013 /*Beldak the Elder*/, 13014 /*Morthie the Elder*/, 13015 /*Fargal the Elder*/, 13016 /*Northal the Elder*/, 13017 /*Jarten the Elder*/, 13018 /*Sandrene the Elder*/, 13019 /*Thoim the Elder*/, 13020 /*Stonebeard the Elder*/, 13021 /*Igasho the Elder*/, 13022 /*Nurgen the Elder*/, 13023 /*Kilias the Elder*/, 13024 /*Wanikaya the Elder*/, 13025 /*Lunaro the Elder*/, 13026 /*Bluewolf the Elder*/, 13027 /*Tauros the Elder*/, 13028 /*Graymane the Elder*/, 13029 /*Pamuya the Elder*/, 13030 /*Whurain the Elder*/, 13031 /*Skywarden the Elder*/, 13032 /*Muraco the Elder*/, 13033 /*Arp the Elder*/, 13065 /*Ohanzee the Elder*/, 13066 /*Yurauk the Elder*/, 13067 /*Chogan'gada the Elder*/, 13093 /*Reading the Bones*/, 13123 /*WotLK Collector's Edition: - DEM - E - FLAG*/, 13203 /*A Winter Veil Gift*/, 13210 /*Blizzard Account: - DEM - E - FLAG*/, 13452 /*Candy Bucket*/, 13456 /*Candy Bucket*/, 13459 /*Candy Bucket*/, 13460 /*Candy Bucket*/, 13461 /*Candy Bucket*/, 13462 /*Candy Bucket*/, 13463 /*Candy Bucket*/, 13472 /*Candy Bucket*/, 13541 /*13541*/, 13559 /*Hodir's Tribute*/, 13571 /*Fletcher's Lost and Found*/, 13573 /*Malfurion's Return*/, 13575 /*The Land Is in Their Blood*/, 13577 /*The Last Wildkin*/, 13581 /*The Blackwood Pledge*/, 13583 /*The Wildkin's Oath*/, 13586 /*The Emerald Dream*/, 13587 /*The Waking Nightmare*/, 13601 /*In Aid of the Refugees*/, 13662 /*Gaining Acceptance*/, 13807 /*FLAG: Tournament Invitation*/, 13825 /*Clamlette Surprise*/, 13826 /*Nat Pagle, Angler Extreme*/, 13830 /*The Ghostfish*/, 13834 /*Dangerously Delicious*/, 13840 /*REUSE*/, 13843 /*The Scrapbot Construction Kit*/, 13895 /*The Slumbering Ancients*/, 13899 /*The Darkscale Warlord*/, 13938 /*A Visit To The Wonderworks*/, 13948 /*Stepping Up Surveillance*/, 13952 /*The Grateful Dead*/, 13955 /*The Dragon Queen*/, 13957 /*The Mighty Hemet Nesingwary*/, 13966 /*A Winter Veil Gift*/, 13969 /*Grol'dom's Missing Kodo*/, 13990 /*Upper Deck Promo - Chicken Mount*/, 14046 /*The Baron's Demands*/, 14049 /*A Most Unusual Map*/, 14057 /*Guns. We Need Guns.*/, 14126 /*Life Savings*/, 14127 /*Return of the Highborne?*/, 14129 /*Runaway Shredder!*/, 14134 /*The Captain's Logs*/, 14135 /*Up a Tree*/, 14139 /*Phase 1 Complete (Tracking Event)*/, 14158 /*Phase 6 Complete (Tracking Event)*/, 14162 /*Report to Horzak*/, 14166 /*The Grateful Dead*/, 14168 /*The Grateful Dead*/, 14169 /*The Grateful Dead*/, 14171 /*The Grateful Dead*/, 14172 /*The Grateful Dead*/, 14173 /*The Grateful Dead*/, 14174 /*The Grateful Dead*/, 14175 /*The Grateful Dead*/, 14176 /*The Grateful Dead*/, 14177 /*The Grateful Dead*/, 14185 /*FLAG: Riding Trainer Advertisement (40)*/, 14186 /*FLAG: Riding Trainer Advertisement (60)*/, 14187 /*FLAG: Riding Trainer Advertisement (70)*/, 14188 /*Avenge Furien!*/, 14189 /*Translation*/, 14192 /*Prismbreak*/, 14195 /*All Becoming Clearer*/, 14200 /*Kickoff Mail Marker*/, 14213 /*Ten Pounds of Flesh*/, 14217 /*Satyrical Offerings*/, 14219 /*To the Hilt!*/, 14225 /*You'll Know It When You See It*/, 14245 /*It's a Town-In-A-Box*/, 14247 /*Stubborn Lands*/, 14255 /*Ethel Rethor*/, 14256 /*The Emerging Threat*/, 14260 /*Going Deep*/, 14270 /*The Keystone Shard*/, 14284 /*A Revenant's Vengeance*/, 14292 /*The Enemy of Our Enemy*/, 14302 /*Official Assessment*/, 14311 /*Taking Part*/, 14312 /*An Introduction Is In Order*/, 14318 /*Delicate Negotiations*/, 14327 /*My Word is My Bond*/, 14328 /*Three Princes*/, 14330 /*Behind Closed Doors*/, 14333 /*While You're Here*/, 14344 /*Jugkar's Undoing*/, 14359 /*Blessings From Above*/, 14360 /*Nothing a Couple of Melons Won't Fix*/, 14375 /*Last Chance at Humanity*/, 14376 /*Jugkar's Undoing*/, 14390 /*Easy is Boring*/, 14411 /*Feralas Breadcrumb [PH]*/, 14427 /*Item Quest*/, 14436 /*Dwarven Digging*/, 14450 /*Random Drop Test Progressive*/, 14451 /*Random Drop Flat Rate*/, 14467 /*Alas, Gilneas!*/, 14468 /*Another Warm Body*/, 14469 /*Hand-me-downs*/, 14471 /*First Degree Mortar*/, 14472 /*In The Face!*/, 14478 /*Operation Fishgut*/, 14479 /*There Are Many Like It*/, 14480 /*Extermination*/, 14485 /*Ticker Required*/, 14487 /*Still Beating Heart*/, 23733 /*Rites of the Earthmother*/, 24436 /*Halo Drops*/, 24441 /*Thunderhorn Totem*/, 24455 /*Rapid Deployment*/, 24505 /*Holdout at Hunter's Hill*/, 24644 /*Troll Introduction Complete*/, 24724 /*Crystal Restore*/, 24725 /*Crystal Charge*/, 24726 /*Crystal Force*/, 24727 /*Crystal Spire*/, 24728 /*Crystal Ward*/, 24729 /*Crystal Yield*/, 24743 /*Shadow's Edge*/, 24746 /*REUSE*/, 24803 /*Kalu'ak Fishing Derby*/, 24806 /*Better Luck Next Time*/, 24808 /*Tank Ring Flag*/, 24809 /*Healer Ring Flag*/, 24810 /*Melee Ring Flag*/, 24811 /*Caster Ring Flag*/, 24856 /*Invasion Imminent!*/, 24912 /*Empowerment*/, 24941 /*Langridge Shot*/, 24947 /*Momentum*/, 24952 /*Rocket Boot Boost*/, 25016 /*FLAG - Training Complete*/, 25023 /*Old Friends*/, 25036 /*Teegan's Troubles*/, 25040 /*FLAG - Worgen Attacked*/, 25071 /*FLAG - Purple Murloc*/, 25074 /*Meet Me at Triumph*/, 25087 /*Report to Twinbraid*/, 25099 /*Borrow Bastia*/, 25100 /*Let's Ride*/, 25125 /*Light at the End of the Tunnel*/, 25151 /*He Needs Ale!*/, 25163 /*Who Did This?*/, 25183 /*...And Bury the Rest*/, 25184 /*Wild Mine Cart Ride*/, 25197 /*The Admiral Won't Back Down*/, 25226 /*Kill Chip Endale Tracking Quest*/, 25238 /*Strength Ring Flag*/, 25245 /*Kill Candy Cane Tracking Quest*/, 25264 /*Ak'Zeloth*/, 25306 /*You're In The Army Gnow!*/, 25346 /*Mountain Giant Muisek*/, 25365 /*Woodpaw Investigation*/, 25366 /*The Battle Plans*/, 25378 /*Ysondre's Call*/, 25379 /*Taerar's Fall*/, 25457 /*Ron Targetting Test*/, 25639 /*[DND] Test Rifts*/, 25660 /*Haunted*/, 25829 /*Tracking Quest - Goldrinn Hub Complete*/, 26001 /*The Missing Blastgineer*/, 26002 /*Alliance Attack Plans*/, 26016 /*Orders from Base Camp*/, 26026 /*Dream of a Better Tomorrow*/, 26044 /*Where Are the Parts?*/, 26059 /*Eyes and Ears: Malaka'jin*/, 26097 /*Proof of Lies*/, 26098 /*Betrayal at the Grove*/, 26101 /*Might Makes Right*/, 26136 /*FLAG - Rigor Mortis Removed*/, 26230 /*Feast or Famine*/, 26327 /*Anvilmar the Hero*/, 26415 /*Questflag for Captain's Log*/, 26511 /*Lake Everstill Clean Up*/, 26512 /*Tuning the Gnomecorder*/, 26568 /*This Ain't My War*/, 26587 /*Breaking Out is Hard to Do*/, 26598 /*The Heart of Mokk*/, 26630 /*Looks Like a Tauren Pirate to Me*/, 26705 /*It's a Town-In-A-Box Tracking Event*/, 26711 /*Off to the Bank*/, 26712 /*Off to the Bank*/, 26785 /*Part of the Pack*/, 26803 /*Missing Reports*/, 26806 /*Reports to Orgrimmar*/, 26880 /*Gilneas City Unphase Cheat*/, 26902 /*Get Back to Town Accepted Tracking Event*/, 26909 /*The Stone Shards*/, 26951 /*Cleanup on Isle E.*/, 26998 /*Iterating Upon Success*/, 27079 /*Twilight Gate Tracking*/, 27080 /*Twilight Gate Tracking*/, 27094 /*Deeper into Darkness*/, 27118 /*A Broken Trap*/, 27119 /*The Gordok Ogre Suit*/, 27120 /*The Gordok Ogre Suit*/, 27139 /*Hobart Needs You*/, 27181 /*Excising the Taint*/, 27218 /*Dastardly Denizens of the Deep*/, 27231 /*Reinforcements from Fenris*/, 27232 /*The Waters Run Red...*/, 27251 /*They Call Him Smiling Jim*/, 27285 /*The Black Shield*/, 27346 /*The Zeppelin Crash*/, 27363 /*A Budding Young Surgeon*/, 27386 /*A Strange Historian*/, 27414 /*Identifying the Brood*/, 27415 /*The Brood of Onyxia*/, 27417 /*The Brood of Onyxia*/, 27424 /*Overlord Mok'Morokk's Concern*/, 27984 /*Lunthistle's Tale*/, 28349 /*Megs in Marketing*/, 28395 /*Feathers for Nafien*/, 28396 /*Feathers for Grazle*/, 28855 /*Northern Stranglethorn 4.x: PRK - E - Just Hatched FLAG*/, 28878 /*A Winter Veil Gift*/, 28955 /*Candy Bucket*/, 28993 /*Candy Bucket*/, 28994 /*Candy Bucket*/, 28999 /*Candy Bucket*/, 29000 /*Candy Bucket*/, 29001 /*Candy Bucket*/, 29014 /*Candy Bucket*/, 29016 /*Candy Bucket*/, 29017 /*Candy Bucket*/, 29018 /*Candy Bucket*/, 29385 /*A Winter Veil Gift*/, 29475 /*Goblin Engineering*/, 29477 /*Gnomish Engineering*/, 29514 /*Herbs for Healing*/, 29692 /*Bring Me Another Shrubbery!*/, 29734 /*Deepforge the Elder*/, 29735 /*Stonebrand the Elder*/, 29736 /*Darkfeather the Elder*/, 29737 /*Firebeard the Elder*/, 29738 /*Moonlance the Elder*/, 29739 /*Windsong the Elder*/, 29740 /*Evershade the Elder*/, 29741 /*Sekhemi the Elder*/, 29742 /*Menkhaf the Elder*/); +UPDATE `quest_template` SET `VerifiedBuild`=19034 WHERE `ID` IN (10 /*The Scrimshank Redemption*/, 55 /*Morbent Fel*/, 73 /*<TXT> No Reward*/, 104 /*The Coastal Menace*/, 118 /*The Price of Shoes*/, 122 /*Underbelly Scales*/, 136 /*Captain Sanders' Hidden Treasure*/, 137 /*<NYI> <TXT> Stormwind Commendation*/, 185 /*Tiger Hunting*/, 186 /*Tiger Stalking*/, 187 /*Tiger Prowess*/, 190 /*Panther Hunting*/, 191 /*Panther Stalking*/, 192 /*Panther Prowess*/, 194 /*Raptor Hunting*/, 195 /*Raptor Stalking*/, 213 /*Hostile Takeover*/, 223 /*Worgen in the Woods*/, 241 /*<TEST> HEY MISTER WILSON!*/, 259 /*<UNUSED>*/, 272 /*Trial of the Sea Lion*/, 282 /*Senir's Observations*/, 321 /*Lightforge Iron*/, 338 /*The Green Hills of Stranglethorn*/, 339 /*Chapter I*/, 340 /*Chapter II*/, 341 /*Chapter III*/, 342 /*Chapter IV*/, 348 /*Stranglethorn Fever*/, 352 /*<UNUSED>*/, 406 /*<UNUSED>*/, 422 /*Arugal's Folly*/, 428 /*Lost Deathstalkers*/, 429 /*Wild Hearts*/, 430 /*Return to Quinn*/, 435 /*Escorting Erland*/, 440 /*The Engraved Ring*/, 451 /*A Recipe For Death*/, 458 /*The Woodland Protector*/, 462 /*<UNUSED>*/, 472 /*Fall of Dun Modr*/, 477 /*Border Crossings*/, 480 /*The Weaver*/, 481 /*Dalar's Analysis*/, 490 /*<UNUSED>*/, 491 /*Wand to Bethor*/, 497 /*<UNUSED>*/, 515 /*[DEPRECATED] Elixir of Agony*/, 516 /*Beren's Peril*/, 580 /*Whiskey Slim's Lost Grog*/, 587 /*Up to Snuff*/, 594 /*Message in a Bottle*/, 600 /*Venture Company Mining*/, 604 /*The Bloodsail Buccaneers*/, 606 /*Scaring Shaky*/, 608 /*The Bloodsail Buccaneers*/, 613 /*Cracking Maury's Foot*/, 625 /*Cortello's Riddle*/, 626 /*Cortello's Riddle*/, 628 /*Excelsior*/, 650 /*Ripple Recovery*/, 656 /*Summoning the Princess*/, 658 /*Hints of a New Plague?*/, 662 /*Deep Sea Salvage*/, 664 /*Drowned Sorrows*/, 669 /*Sunken Treasure*/, 681 /*Northfold Manor*/, 687 /*Theldurin the Lost*/, 692 /*The Lost Fragments*/, 703 /*Barbecued Buzzard Wings*/, 705 /*Pearl Diving*/, 709 /*Solution to Doom*/, 713 /*Coolant Heads Prevail*/, 729 /*The Absent Minded Prospector*/, 746 /*Dwarven Digging*/, 749 /*The Ravaged Caravan*/, 750 /*The Hunt Continues*/, 751 /*The Ravaged Caravan*/, 755 /*Rites of the Earthmother*/, 757 /*Rite of Strength*/, 765 /*Supervisor Fizsprocket*/, 766 /*Mazzranache*/, 767 /*Rite of Vision*/, 772 /*Rite of Vision*/, 773 /*Rite of Wisdom*/, 774 /*<UNUSED>*/, 775 /*Journey into Thunder Bluff*/, 780 /*The Battleboars*/, 785 /*A Strategic Alliance*/, 787 /*The New Horde*/, 790 /*Sarkoth*/, 796 /*<UNUSED>*/, 797 /*<UNUSED>*/, 798 /*<UNUSED>*/, 799 /*<UNUSED>*/, 800 /*<UNUSED>*/, 801 /*<UNUSED>*/, 802 /*<UNUSED>*/, 803 /*<UNUSED>*/, 814 /*<UNUSED>*/, 835 /*Securing the Lines*/, 865 /*It's Gotta be the Horn*/, 894 /*Samophlange*/, 902 /*Samophlange*/, 920 /*Tenaron's Summons*/, 933 /*Teldrassil: The Coming Dawn*/, 934 /*Crown of the Earth*/, 937 /*The Enchanted Glade*/, 942 /*The Absent Minded Prospector*/, 943 /*The Absent Minded Prospector*/, 946 /*<UNUSED>*/, 952 /*Grove of the Ancients*/, 954 /*Bashal'Aran*/, 955 /*Bashal'Aran*/, 957 /*Bashal'Aran*/, 963 /*For Love Eternal*/, 965 /*The Tower of Althalaxx*/, 967 /*The Tower of Althalaxx*/, 970 /*The Tower of Althalaxx*/, 973 /*The Tower of Althalaxx*/, 974 /*Finding the Source*/, 981 /*The Tower of Althalaxx*/, 984 /*How Big a Threat?*/, 987 /*<UNUSED>*/, 989 /*<UNUSED>*/, 999 /*When Dreams Turn to Nightmares*/, 1005 /*What Lurks Beyond*/, 1014 /*Arugal Must Die*/, 1049 /*Compendium of the Fallen*/, 1065 /*[DEPRECATED] Journey to Tarren Mill*/, 1093 /*Super Reaper 6000*/, 1095 /*[DEPRECATED] Further Instructions*/, 1099 /*Goblins Win!*/, 1102 /*A Vengeful Fate*/, 1106 /*Martek the Exiled*/, 1111 /*Wharfmaster Dizzywig*/, 1115 /*The Rumormonger*/, 1122 /*Report Back to Fizzlebub*/, 1124 /*Wasteland*/, 1141 /*The Family and the Fishing Pole*/, 1143 /*The Tower of Althalaxx*/, 1174 /*Gnomes Win!*/, 1177 /*Hungry!*/, 1178 /*Goblin Sponsorship*/, 1180 /*Goblin Sponsorship*/, 1183 /*Goblin Sponsorship*/, 1206 /*Jarl Needs Eyes*/, 1221 /*Blueleaf Tubers*/, 1279 /*<nyi> <TXT>The Centaur Hoofprints*/, 1280 /*<nyi> <TXT>The Centaur Hoofprints*/, 1293 /*<nyi> <TXT> Centaur Hoofprints*/, 1294 /*<nyi> <TXT>Centaur Sympathies*/, 1295 /*<nyi> <TXT> Course of Action*/, 1296 /*<nyi> <TXT> Course of Action*/, 1297 /*<nyi> <TXT> Course of Action*/, 1299 /*<nyi> <TXT> Thrall's Dirty Work*/, 1300 /*<nyi> <TXT> Lorn Grim Totem*/, 1359 /*Zinge's Delivery*/, 1371 /*Gizmo for Warug*/, 1373 /*Ongeku*/, 1375 /*Khan Shaka*/, 1381 /*Khan Hratha*/, 1392 /*Noboru the Cudgel*/, 1431 /*Alliance Relations*/, 1432 /*Alliance Relations*/, 1445 /*[DEPRECATED]The Temple of Atal'Hakkar*/, 1446 /*Jammal'an the Prophet*/, 1483 /*[DEPRECATED] Ziz Fizziks*/, 1657 /*Stinking Up Southshore*/, 1707 /*Water Pouch Bounty*/, 1712 /*Cyclonian*/, 1740 /*The Orb of Soran'ruk*/, 1796 /*Components for the Enchanted Gold Bloodrobe*/, 1799 /*Fragments of the Orb of Orahil*/, 1947 /*Journey to the Marsh*/, 1948 /*Items of Power*/, 1949 /*Hidden Secrets*/, 1951 /*Rituals of Power*/, 1954 /*The Infernal Orb*/, 2283 /*Necklace Recovery*/, 2418 /*Power Stones*/, 2521 /*To Serve Kum'isha*/, 2641 /*Sprinkle's Secret Ingredient*/, 2767 /*Rescue OOX-22/FE!*/, 2768 /*Divino-matic Rod*/, 2801 /*A Tale of Sorrow*/, 2864 /*Tran'rek*/, 2872 /*Stoley's Debt*/, 2882 /*Cuergo's Gold*/, 2952 /*The Sparklematic 5200!*/, 3373 /*The Essence of Eranikus*/, 3375 /*Replacement Phial*/, 3446 /*Into the Depths*/, 3505 /*[DEPRECATED 4.x] Betrayed*/, 3506 /*Betrayed*/, 3518 /*Delivery to Magatha*/, 3519 /*A Friend in Need*/, 3520 /*Screecher Spirits*/, 3521 /*Iverron's Antidote*/, 3523 /*Scourge of the Downs*/, 3527 /*The Prophecy of Mosh'aru*/, 3681 /*Tome of Divinity*/, 3721 /*An OOX of Your Own*/, 3741 /*Hilary's Necklace*/, 3845 /*It's a Secret to Everybody*/, 3861 /*CLUCK!*/, 3882 /*Roll the Bones*/, 3884 /*Williden's Journal*/, 3908 /*It's a Secret to Everybody*/, 3909 /*The Videre Elixir*/, 3942 /*Linken's Memory*/, 4243 /*Chasing A-Me 01*/, 4290 /*The Fare of Lar'korwi*/, 4292 /*The Bait for Lar'korwi*/, 4295 /*Rocknot's Ale*/, 4324 /*Yuka Screwspigot*/, 4384 /*Crystal Yield*/, 4450 /*Ledger from Tanaris*/, 4451 /*The Key to Freedom*/, 4493 /*March of the Silithid*/, 4494 /*March of the Silithid*/, 4496 /*Bungle in the Jungle*/, 4501 /*Beware of Pterrordax*/, 4503 /*Shizzle's Flyer*/, 4605 /*The Sparklematic 5200!*/, 4606 /*The Sparklematic 5200!*/, 4681 /*Washed Ashore*/, 4740 /*WANTED: Murkdeep!*/, 4762 /*The Cliffspring River*/, 4769 /*Vivian Lagrave and the Darkstone Tablet*/, 4783 /*Components for the Enchanted Gold Bloodrobe*/, 4808 /*Felnok Steelspring*/, 4809 /*Chillwind Horns*/, 4813 /*The Fragments Within*/, 4842 /*[DEPRECATED]Strange Sources*/, 4905 /*<UNUSED>*/, 4962 /*Shard of a Felhound*/, 4968 /*Knowledge of the Orb of Orahil*/, 5051 /*Two Halves Become One*/, 5053 /*<UNUSED>*/, 5054 /*Ursius of the Shardtooth*/, 5055 /*Brumeran of the Chillwind*/, 5065 /*The Lost Tablets of Mosh'aru*/, 5085 /*[DEPRECATED]Mystery Goo*/, 5086 /*[DEPRECATED]Toxic Horrors*/, 5142 /*Little Pamela*/, 5153 /*A Strange Historian*/, 5154 /*The Annals of Darrowshire*/, 5155 /*[DEPRECATED]Forces of Jaedenar*/, 5157 /*[DEPRECATED]Collection of the Corrupt Water*/, 5165 /*[DEPRECATED]Dousing the Flames of Protection*/, 5211 /*Defenders of Darrowshire*/, 5242 /*[DEPRECATED]A Final Blow*/, 5321 /*The Sleeper Has Awakened*/, 5441 /*Lazy Peons*/, 5501 /*Bone Collector*/, 5542 /*Demon Dogs*/, 5543 /*Blood Tinged Skies*/, 5544 /*Carrion Grubbage*/, 5561 /*Kodo Roundup*/, 5601 /*Sister Pamela*/, 5675 /*Elune's Grace*/, 5781 /*Of Forgotten Memories*/, 5821 /*Bodyguard for Hire*/, 5845 /*Of Lost Honor*/, 5863 /*The Dunemaul Compound*/, 5931 /*Back to Darnassus*/, 6031 /*Runecloth*/, 6066 /*The Hunter's Path*/, 6321 /*Supplying Brill*/, 6341 /*To Darnassus*/, 6344 /*Reminders of Home*/, 6361 /*A Bundle of Hides*/, 6387 /*Honor Students*/, 6642 /*Favor Amongst the Brotherhood, Dark Iron Ore*/, 6643 /*Favor Amongst the Brotherhood, Fiery Core*/, 6645 /*Favor Amongst the Brotherhood, Core Leather*/, 6646 /*Favor Amongst the Brotherhood, Blood of the Mountain*/, 6804 /*Poisoned Water*/, 6805 /*Stormers and Rumblers*/, 6981 /*The Glowing Shard*/, 7044 /*Legends of Maraudon*/, 7069 /*<UNUSED>*/, 7383 /*Teldrassil: The Burden of the Kaldorei*/, 7581 /*The Prison's Bindings*/, 7582 /*The Prison's Casing*/, 7701 /*WANTED: Overseer Maltorius*/, 7737 /*Gaining Even More Acceptance*/, 7838 /*Arena Grandmaster*/, 7881 /*Carnival Boots*/, 7889 /*Coarse Weightstone*/, 7894 /*Copper Modulator*/, 7899 /*Small Furry Paws*/, 7904 /*<UNUSED>*/, 7930 /*5 Tickets - Darkmoon Flower*/, 7934 /*50 Tickets - Darkmoon Storage Box*/, 7946 /*Spawn of Jubjub*/, 8151 /*The Hunter's Charm*/, 8227 /*Nat's Measuring Tape*/, 8233 /*A Simple Request*/, 8250 /*Magecraft*/, 8254 /*Cenarion Aid*/, 8282 /*Noggle's Lost Satchel*/, 8285 /*The Deserter*/, 8307 /*Desert Recipe*/, 8308 /*Brann Bronzebeard's Lost Letter*/, 8319 /*Encrypted Twilight Texts*/, 8336 /*A Fistful of Slivers*/, 8353 /*Chicken Clucking for a Mint*/, 8354 /*Chicken Clucking for a Mint*/, 8355 /*Incoming Gumdrop*/, 8356 /*Flexing for Nougat*/, 8357 /*Dancing for Marzipan*/, 8358 /*Incoming Gumdrop*/, 8359 /*Flexing for Nougat*/, 8360 /*Dancing for Marzipan*/, 8423 /*Warrior Kinship*/, 8424 /*War on the Shadowsworn*/, 8425 /*Voodoo Feathers*/, 8459 /*<UNUSED>*/, 8460 /*[DEPRECATED]Timbermaw Ally*/, 8462 /*[DEPRECATED]Speak to Nafien*/, 8465 /*[DEPRECATED]Speak to Salfa*/, 8492 /*The Alliance Needs Copper Bars!*/, 8494 /*The Alliance Needs Iron Bars!*/, 8499 /*The Alliance Needs Thorium Bars!*/, 8501 /*Target: Hive'Ashi Stingers*/, 8502 /*Target: Hive'Ashi Workers*/, 8503 /*The Alliance Needs Stranglekelp!*/, 8505 /*The Alliance Needs Purple Lotus!*/, 8509 /*The Alliance Needs Arthas' Tears!*/, 8511 /*The Alliance Needs Light Leather!*/, 8513 /*The Alliance Needs Medium Leather!*/, 8515 /*The Alliance Needs Thick Leather!*/, 8517 /*The Alliance Needs Linen Bandages!*/, 8520 /*The Alliance Needs Silk Bandages!*/, 8522 /*The Alliance Needs Runecloth Bandages!*/, 8524 /*The Alliance Needs Rainbow Fin Albacore!*/, 8526 /*The Alliance Needs Roast Raptor!*/, 8528 /*The Alliance Needs Spotted Yellowtail!*/, 8530 /*The Alliance Needs Singed Corestones!*/, 8532 /*The Horde Needs Copper Bars!*/, 8539 /*Target: Hive'Zora Hive Sisters*/, 8542 /*The Horde Needs Tin Bars!*/, 8544 /*Conqueror's Spaulders*/, 8545 /*The Horde Needs Mithril Bars!*/, 8549 /*The Horde Needs Peacebloom!*/, 8559 /*Conqueror's Greaves*/, 8560 /*Conqueror's Legguards*/, 8565 /*Past Victories in Arathi*/, 8566 /*Past Victories in Arathi*/, 8567 /*Past Victories in Warsong Gulch*/, 8568 /*Past Victories in Warsong Gulch*/, 8569 /*Past Efforts in Warsong Gulch*/, 8570 /*Past Efforts in Warsong Gulch*/, 8580 /*The Horde Needs Firebloom!*/, 8582 /*The Horde Needs Purple Lotus!*/, 8588 /*The Horde Needs Heavy Leather!*/, 8590 /*The Horde Needs Thick Leather!*/, 8593 /*Trousers of the Oracle*/, 8594 /*Mantle of the Oracle*/, 8595 /*Mortal Champions*/, 8596 /*Footwraps of the Oracle*/, 8600 /*The Horde Needs Rugged Leather!*/, 8602 /*Stormcaller's Pauldrons*/, 8604 /*The Horde Needs Wool Bandages!*/, 8607 /*The Horde Needs Mageweave Bandages!*/, 8609 /*The Horde Needs Runecloth Bandages!*/, 8611 /*The Horde Needs Lean Wolf Steaks!*/, 8613 /*The Horde Needs Spotted Yellowtail!*/, 8615 /*The Horde Needs Baked Salmon!*/, 8617 /*The Horde Needs Singed Corestones!*/, 8619 /*Morndeep the Elder*/, 8621 /*Stormcaller's Footguards*/, 8622 /*Stormcaller's Hauberk*/, 8624 /*Stormcaller's Leggings*/, 8625 /*Enigma Shoulderpads*/, 8626 /*Striker's Footguards*/, 8629 /*Avenger's Legguards*/, 8630 /*Avenger's Pauldrons*/, 8631 /*Enigma Leggings*/, 8633 /*Enigma Robes*/, 8634 /*Enigma Boots*/, 8635 /*Splitrock the Elder*/, 8636 /*Rumblerock the Elder*/, 8637 /*Deathdealer's Boots*/, 8640 /*Deathdealer's Leggings*/, 8641 /*Deathdealer's Spaulders*/, 8642 /*Silvervein the Elder*/, 8643 /*Highpeak the Elder*/, 8644 /*Stonefort the Elder*/, 8645 /*Obsidian the Elder*/, 8646 /*Hammershout the Elder*/, 8647 /*Bellowrage the Elder*/, 8648 /*Darkcore the Elder*/, 8649 /*Stormbrow the Elder*/, 8650 /*Snowcrown the Elder*/, 8651 /*Ironband the Elder*/, 8652 /*Graveborn the Elder*/, 8653 /*Goldwell the Elder*/, 8654 /*Primestone the Elder*/, 8655 /*Avenger's Greaves*/, 8658 /*Striker's Leggings*/, 8659 /*Striker's Pauldrons*/, 8660 /*Doomcaller's Footwraps*/, 8663 /*Doomcaller's Trousers*/, 8664 /*Doomcaller's Mantle*/, 8665 /*Genesis Boots*/, 8668 /*Genesis Trousers*/, 8669 /*Genesis Shoulderpads*/, 8670 /*Runetotem the Elder*/, 8671 /*Ragetotem the Elder*/, 8672 /*Stonespire the Elder*/, 8673 /*Bloodhoof the Elder*/, 8674 /*Winterhoof the Elder*/, 8675 /*Skychaser the Elder*/, 8676 /*Wildmane the Elder*/, 8677 /*Darkhorn the Elder*/, 8678 /*Wheathoof the Elder*/, 8679 /*Grimtotem the Elder*/, 8680 /*Windtotem the Elder*/, 8681 /*Thunderhorn the Elder*/, 8682 /*Skyseer the Elder*/, 8683 /*Dawnstrider the Elder*/, 8684 /*Dreamseer the Elder*/, 8685 /*Mistwalker the Elder*/, 8686 /*High Mountain the Elder*/, 8687 /*Target: Hive'Zora Tunnelers*/, 8688 /*Windrun the Elder*/, 8713 /*Starsong the Elder*/, 8714 /*Moonstrike the Elder*/, 8715 /*Bladeleaf the Elder*/, 8716 /*Starglade the Elder*/, 8717 /*Moonwarden the Elder*/, 8718 /*Bladeswift the Elder*/, 8719 /*Bladesing the Elder*/, 8720 /*Skygleam the Elder*/, 8721 /*Starweave the Elder*/, 8722 /*Meadowrun the Elder*/, 8723 /*Nightwind the Elder*/, 8724 /*Morningdew the Elder*/, 8725 /*Riversong the Elder*/, 8726 /*Brightspear the Elder*/, 8727 /*Farwhisper the Elder*/, 8744 /*A Carefully Wrapped Present*/, 8764 /*The Changing of Paths - Protector No More*/, 8765 /*The Changing of Paths - Invoker No More*/, 8766 /*The Changing of Paths - Conqueror No More*/, 8770 /*Target: Hive'Ashi Defenders*/, 8771 /*Target: Hive'Ashi Sandstalkers*/, 8772 /*Target: Hive'Zora Waywatchers*/, 8773 /*Target: Hive'Zora Reavers*/, 8774 /*Target: Hive'Regal Ambushers*/, 8775 /*Target: Hive'Regal Spitfires*/, 8776 /*Target: Hive'Regal Slavemakers*/, 8777 /*Target: Hive'Regal Burrowers*/, 8788 /*A Gently Shaken Gift*/, 8790 /*Imperial Qiraji Regalia*/, 8856 /*Desert Survival Kits*/, 8863 /*Festival Dumplings*/, 8864 /*Festive Lunar Dresses*/, 8865 /*Festive Lunar Pant Suits*/, 8866 /*Bronzebeard the Elder*/, 8971 /*REUSE*/, 8972 /*REUSE*/, 8973 /*REUSE*/, 8974 /*REUSE*/, 8975 /*REUSE*/, 8976 /*REUSE*/, 9053 /*A Better Ingredient*/, 9085 /*Shadows of Doom*/, 9130 /*Goods from Silvermoon City*/, 9134 /*Skymistress Gloaming*/, 9141 /*They Call Me ""The Rooster""*/, 9153 /*Under the Shadow*/, 9154 /*Light's Hope Chapel*/, 9180 /*Journey to Undercity*/, 9194 /*Craftsman's Writ - Runecloth Robe*/, 9198 /*Craftsman's Writ - Thorium Tube*/, 9204 /*Craftsman's Writ - Stonescale Eel*/, 9208 /*The Savage Guard - Arcanum of Protection*/, 9209 /*The Savage Guard - Arcanum of Rapidity*/, 9210 /*The Savage Guard - Arcanum of Focus*/, 9221 /*Superior Armaments of Battle - Friend of the Dawn*/, 9222 /*Epic Armaments of Battle - Friend of the Dawn*/, 9223 /*Superior Armaments of Battle - Honored Amongst the Dawn*/, 9259 /*Traitor to the Bloodsail*/, 9266 /*Making Amends*/, 9267 /*Mending Old Wounds*/, 9268 /*War at Sea*/, 9284 /*Aldor Faction Test*/, 9285 /*Consortium Faction Test*/, 9286 /*Scryers Faction Test*/, 9295 /*Letter from the Front*/, 9299 /*Note from the Front*/, 9300 /*Page from the Front*/, 9301 /*Envelope from the Front*/, 9302 /*Missive from the Front*/, 9304 /*Document from the Front*/, 9319 /*A Light in Dark Places*/, 9322 /*Wild Fires in Kalimdor*/, 9323 /*Wild Fires in the Eastern Kingdoms*/, 9327 /*The Forsaken*/, 9378 /*DND FLAG The Dread Citadel - Naxxramas*/, 9386 /*A Light in Dark Places*/, 9388 /*Flickering Flames in Kalimdor*/, 9389 /*Flickering Flames in the Eastern Kingdoms*/, 9411 /*<UNUSED>Infused Bandages*/, 9412 /*<UNUSED>Crystal Flake Throat Lozenge*/, 9413 /*<UNUSED>Crystal Flake Throat Lozenge*/, 9414 /*<UNUSED>Infused Bandages*/, 9422 /*Scouring the Desert*/, 9458 /*<UNUSED>Potion of Heightened Senses*/, 9459 /*<UNUSED>Anti-crit Potion*/, 9463 /*Medicinal Purpose*/, 9477 /*<UNUSED>Potion of Nature's Armor*/, 9478 /*<UNUSED>Portable Healing Font*/, 9479 /*<UNUSED>Glorious Standard of the Alliance*/, 9480 /*<UNUSED>Debuff Banner*/, 9481 /*<UNUSED>Light Consumable*/, 9482 /*<UNUSED>Nature Resist Potion*/, 9487 /*Arcane Reavers*/, 9488 /*A Simple Robe*/, 9577 /*DAILY TEST QUEST (PVP)*/, 9603 /*Beds, Bandages, and Beyond*/, 9611 /*Azuremyst: aa - A - Quest Flag 000*/, 9626 /*Meeting the Warchief*/, 9692 /*The Path of the Adept*/, 9713 /*Glowcap Harvesting Enabling Flag*/, 9727 /*Now That We're Still Friends...*/, 9742 /*More Spore Sacs*/, 9744 /*More Tendrils!*/, 9762 /*The Unwritten Prophecy*/, 9784 /*Identify Plant Parts*/, 9807 /*More Fertile Spores*/, 9809 /*More Glowcaps*/, 9818 /*The Underneath*/, 9883 /*More Crystal Fragments*/, 9884 /*Membership Benefits*/, 9885 /*Membership Benefits*/, 9886 /*Membership Benefits*/, 9887 /*Membership Benefits*/, 9915 /*More Heads Full of Ivory*/, 9926 /*FLAG Shadow Council/Warmaul Questline*/, 10019 /*More Venom Sacs*/, 10025 /*More Basilisk Eyes*/, 10181 /*Collector's Edition: -pn - E - FLAG*/, 10304 /*Vindicator Aldar*/, 10308 /*Another Heap of Ethereals*/, 10326 /*More Marks of Kil'jaeden*/, 10327 /*Single Mark of Kil'jaeden*/, 10414 /*Single Firewing Signet*/, 10415 /*More Firewing Signets*/, 10419 /*Arcane Tomes*/, 10421 /*Fel Armaments*/, 10454 /*FLAG - OFF THE RAILS*/, 10490 /*Call of Water*/, 10551 /*Allegiance to the Aldor*/, 10552 /*Allegiance to the Scryers*/, 10654 /*More Marks of Sargeras*/, 10655 /*Single Mark of Sargeras*/, 10658 /*More Sunfury Signets*/, 10659 /*Single Sunfury Signet*/, 10822 /*Single Sunfury Signet*/, 10823 /*More Sunfury Signets*/, 10827 /*More Marks of Sargeras*/, 10828 /*Single Mark of Sargeras*/, 10850 /*Nether Gas In a Fel Fire Engine*/, 10890 /*[UNUSED] <NYI> */, 10900 /*The Mark of Vashj*/, 10918 /*More Feathers*/, 10955 /*Morthis Whisperwing*/, 10981 /*Nexus-Prince Shaffar's Personal Chamber*/, 10999 /*One Shot, One Kill*/, 11006 /*More Shadow Dust*/, 11012 /*Blood Oath of the Netherwing*/, 11014 /*Enter the Taskmaster*/, 11019 /*Your Friend On The Inside*/, 11050 /*Accepting All Eggs*/, 11057 /*The Trouble Below*/, 11063 /*Earning Your Wings...*/, 11074 /*Tokens of the Descendants*/, 11109 /*Jorus the Cobalt Netherwing Drake*/, 11110 /*Malfas the Purple Netherwing Drake*/, 11111 /*Onyxien the Onyx Netherwing Drake*/, 11113 /*Voranaku the Violet Netherwing Drake*/, 11114 /*Zoya the Veridian Netherwing Drake*/, 11115 /*The Mark of Vashj (FLAG ONLY)*/, 11172 /*[DEPRECATED]The Zeppelin Crash*/, 11197 /*ZZOLD Upper Deck Promo - Ghost Wolf Mount OLD*/, 11208 /*Delivery for Drazzit*/, 11211 /*Help for Mudsprocket*/, 11226 /*Upper Deck Promo - Spectral Tiger Mount*/, 11334 /*He Shoots, He Scores!*/, 11353 /*FLAG: Got the work shirt*/, 11361 /*Fire Training*/, 11401 /*Call the Headless Horseman*/, 11449 /*Fire Training*/, 11450 /*Fire Training*/, 11518 /*Sunwell Daily Portal Flag*/, 11528 /*A Winter Veil Gift*/, 11554 /*A Friend in the Frontlines*/, 11555 /*Honored by Your Allies*/, 11556 /*Revered in the Field of Battle*/, 11557 /*Exalted Among All Combatants*/, 11577 /*WoW Collector's Edition: - DEM - E - FLAG*/, 11621 /*The Tablet of Leviroth*/, 11665 /*Crocolisks in the City*/, 11666 /*Bait Bandits*/, 11667 /*The One That Got Away*/, 11668 /*Shrimpin' Ain't Easy*/, 11669 /*Felblood Fillet*/, 11679 /*Reforging the Key*/, 11874 /*Upper Deck Promo - Rocket Mount*/, 11937 /*FLAG - all torch return quests are complete*/, 11987 /*zzOLDFortune Card: Silver*/, 12062 /*Insult Coren Direbrew*/, 12186 /*FLAG: Winner*/, 12187 /*FLAG: Participant*/, 12318 /*Save Brewfest!*/, 12396 /*Candy Bucket*/, 12397 /*Candy Bucket*/, 12398 /*Candy Bucket*/, 12399 /*Candy Bucket*/, 12400 /*Candy Bucket*/, 12401 /*Candy Bucket*/, 12402 /*Candy Bucket*/, 12403 /*Candy Bucket*/, 12404 /*Candy Bucket*/, 12405 /*Candy Bucket*/, 12406 /*Candy Bucket*/, 12407 /*Candy Bucket*/, 12408 /*Candy Bucket*/, 12409 /*Candy Bucket*/, 12410 /*Candy Bucket*/, 12485 /*Howling Fjord: aa - A - LK FLAG*/, 12494 /*FLAG: Riding Trainer Advertisement (20)*/, 12497 /*Galakrond and the Scourge*/, 12567 /*Blessing of Zim'Abwa*/, 12600 /*Upper Deck Promo - Bear Mount*/, 12616 /*Chamber of Secrets*/, 12618 /*Blessing of Zim'Torga*/, 12656 /*Blessing of Zim'Rhuk*/, 12663 /*Reunited*/, 12664 /*Dark Horizon*/, 12693 /*Wolvar Faction Choice Tracker*/, 12694 /*Oracle Faction Choice Tracker*/, 12845 /*Dalaran Teleport Crystal Flag*/, 12940 /*Candy Bucket*/, 12941 /*Candy Bucket*/, 12950 /*Candy Bucket*/, 13012 /*Sardis the Elder*/, 13013 /*Beldak the Elder*/, 13014 /*Morthie the Elder*/, 13015 /*Fargal the Elder*/, 13016 /*Northal the Elder*/, 13017 /*Jarten the Elder*/, 13018 /*Sandrene the Elder*/, 13019 /*Thoim the Elder*/, 13020 /*Stonebeard the Elder*/, 13021 /*Igasho the Elder*/, 13022 /*Nurgen the Elder*/, 13023 /*Kilias the Elder*/, 13024 /*Wanikaya the Elder*/, 13025 /*Lunaro the Elder*/, 13026 /*Bluewolf the Elder*/, 13027 /*Tauros the Elder*/, 13028 /*Graymane the Elder*/, 13029 /*Pamuya the Elder*/, 13030 /*Whurain the Elder*/, 13031 /*Skywarden the Elder*/, 13032 /*Muraco the Elder*/, 13033 /*Arp the Elder*/, 13065 /*Ohanzee the Elder*/, 13066 /*Yurauk the Elder*/, 13067 /*Chogan'gada the Elder*/, 13093 /*Reading the Bones*/, 13123 /*WotLK Collector's Edition: - DEM - E - FLAG*/, 13203 /*A Winter Veil Gift*/, 13210 /*Blizzard Account: - DEM - E - FLAG*/, 13452 /*Candy Bucket*/, 13456 /*Candy Bucket*/, 13459 /*Candy Bucket*/, 13460 /*Candy Bucket*/, 13461 /*Candy Bucket*/, 13462 /*Candy Bucket*/, 13463 /*Candy Bucket*/, 13472 /*Candy Bucket*/, 13541 /*13541*/, 13559 /*Hodir's Tribute*/, 13571 /*Fletcher's Lost and Found*/, 13573 /*Malfurion's Return*/, 13575 /*The Land Is in Their Blood*/, 13577 /*The Last Wildkin*/, 13581 /*The Blackwood Pledge*/, 13583 /*The Wildkin's Oath*/, 13586 /*The Emerald Dream*/, 13587 /*The Waking Nightmare*/, 13601 /*In Aid of the Refugees*/, 13662 /*Gaining Acceptance*/, 13807 /*FLAG: Tournament Invitation*/, 13825 /*Clamlette Surprise*/, 13826 /*Nat Pagle, Angler Extreme*/, 13830 /*The Ghostfish*/, 13834 /*Dangerously Delicious*/, 13840 /*REUSE*/, 13843 /*The Scrapbot Construction Kit*/, 13895 /*The Slumbering Ancients*/, 13899 /*The Darkscale Warlord*/, 13938 /*A Visit To The Wonderworks*/, 13948 /*Stepping Up Surveillance*/, 13952 /*The Grateful Dead*/, 13955 /*The Dragon Queen*/, 13957 /*The Mighty Hemet Nesingwary*/, 13966 /*A Winter Veil Gift*/, 13969 /*Grol'dom's Missing Kodo*/, 13990 /*Upper Deck Promo - Chicken Mount*/, 14046 /*The Baron's Demands*/, 14049 /*A Most Unusual Map*/, 14057 /*Guns. We Need Guns.*/, 14126 /*Life Savings*/, 14127 /*Return of the Highborne?*/, 14129 /*Runaway Shredder!*/, 14134 /*The Captain's Logs*/, 14135 /*Up a Tree*/, 14139 /*Phase 1 Complete (Tracking Event)*/, 14158 /*Phase 6 Complete (Tracking Event)*/, 14162 /*Report to Horzak*/, 14166 /*The Grateful Dead*/, 14168 /*The Grateful Dead*/, 14169 /*The Grateful Dead*/, 14171 /*The Grateful Dead*/, 14172 /*The Grateful Dead*/, 14173 /*The Grateful Dead*/, 14174 /*The Grateful Dead*/, 14175 /*The Grateful Dead*/, 14176 /*The Grateful Dead*/, 14177 /*The Grateful Dead*/, 14185 /*FLAG: Riding Trainer Advertisement (40)*/, 14186 /*FLAG: Riding Trainer Advertisement (60)*/, 14187 /*FLAG: Riding Trainer Advertisement (70)*/, 14188 /*Avenge Furien!*/, 14189 /*Translation*/, 14192 /*Prismbreak*/, 14195 /*All Becoming Clearer*/, 14200 /*Kickoff Mail Marker*/, 14213 /*Ten Pounds of Flesh*/, 14217 /*Satyrical Offerings*/, 14219 /*To the Hilt!*/, 14225 /*You'll Know It When You See It*/, 14245 /*It's a Town-In-A-Box*/, 14247 /*Stubborn Lands*/, 14255 /*Ethel Rethor*/, 14256 /*The Emerging Threat*/, 14260 /*Going Deep*/, 14270 /*The Keystone Shard*/, 14284 /*A Revenant's Vengeance*/, 14292 /*The Enemy of Our Enemy*/, 14302 /*Official Assessment*/, 14311 /*Taking Part*/, 14312 /*An Introduction Is In Order*/, 14318 /*Delicate Negotiations*/, 14327 /*My Word is My Bond*/, 14328 /*Three Princes*/, 14330 /*Behind Closed Doors*/, 14333 /*While You're Here*/, 14344 /*Jugkar's Undoing*/, 14359 /*Blessings From Above*/, 14360 /*Nothing a Couple of Melons Won't Fix*/, 14375 /*Last Chance at Humanity*/, 14376 /*Jugkar's Undoing*/, 14390 /*Easy is Boring*/, 14411 /*Feralas Breadcrumb [PH]*/, 14427 /*Item Quest*/, 14436 /*Dwarven Digging*/, 14450 /*Random Drop Test Progressive*/, 14451 /*Random Drop Flat Rate*/, 14467 /*Alas, Gilneas!*/, 14468 /*Another Warm Body*/, 14469 /*Hand-me-downs*/, 14471 /*First Degree Mortar*/, 14472 /*In The Face!*/, 14478 /*Operation Fishgut*/, 14479 /*There Are Many Like It*/, 14480 /*Extermination*/, 14485 /*Ticker Required*/, 14487 /*Still Beating Heart*/, 23733 /*Rites of the Earthmother*/, 24436 /*Halo Drops*/, 24441 /*Thunderhorn Totem*/, 24455 /*Rapid Deployment*/, 24505 /*Holdout at Hunter's Hill*/, 24644 /*Troll Introduction Complete*/, 24724 /*Crystal Restore*/, 24725 /*Crystal Charge*/, 24726 /*Crystal Force*/, 24727 /*Crystal Spire*/, 24728 /*Crystal Ward*/, 24729 /*Crystal Yield*/, 24743 /*Shadow's Edge*/, 24746 /*REUSE*/, 24803 /*Kalu'ak Fishing Derby*/, 24806 /*Better Luck Next Time*/, 24808 /*Tank Ring Flag*/, 24809 /*Healer Ring Flag*/, 24810 /*Melee Ring Flag*/, 24811 /*Caster Ring Flag*/, 24856 /*Invasion Imminent!*/, 24912 /*Empowerment*/, 24941 /*Langridge Shot*/, 24947 /*Momentum*/, 24952 /*Rocket Boot Boost*/, 25016 /*FLAG - Training Complete*/, 25023 /*Old Friends*/, 25036 /*Teegan's Troubles*/, 25040 /*FLAG - Worgen Attacked*/, 25071 /*FLAG - Purple Murloc*/, 25074 /*Meet Me at Triumph*/, 25087 /*Report to Twinbraid*/, 25099 /*Borrow Bastia*/, 25100 /*Let's Ride*/, 25125 /*Light at the End of the Tunnel*/, 25151 /*He Needs Ale!*/, 25163 /*Who Did This?*/, 25183 /*...And Bury the Rest*/, 25184 /*Wild Mine Cart Ride*/, 25197 /*The Admiral Won't Back Down*/, 25226 /*Kill Chip Endale Tracking Quest*/, 25238 /*Strength Ring Flag*/, 25245 /*Kill Candy Cane Tracking Quest*/, 25264 /*Ak'Zeloth*/, 25306 /*You're In The Army Gnow!*/, 25346 /*Mountain Giant Muisek*/, 25365 /*Woodpaw Investigation*/, 25366 /*The Battle Plans*/, 25378 /*Ysondre's Call*/, 25379 /*Taerar's Fall*/, 25457 /*Ron Targetting Test*/, 25639 /*[DND] Test Rifts*/, 25660 /*Haunted*/, 25829 /*Tracking Quest - Goldrinn Hub Complete*/, 26001 /*The Missing Blastgineer*/, 26002 /*Alliance Attack Plans*/, 26016 /*Orders from Base Camp*/, 26026 /*Dream of a Better Tomorrow*/, 26044 /*Where Are the Parts?*/, 26052 /*Speak to Shakes*/, 26059 /*Eyes and Ears: Malaka'jin*/, 26097 /*Proof of Lies*/, 26098 /*Betrayal at the Grove*/, 26101 /*Might Makes Right*/, 26136 /*FLAG - Rigor Mortis Removed*/, 26230 /*Feast or Famine*/, 26327 /*Anvilmar the Hero*/, 26415 /*Questflag for Captain's Log*/, 26511 /*Lake Everstill Clean Up*/, 26512 /*Tuning the Gnomecorder*/, 26568 /*This Ain't My War*/, 26587 /*Breaking Out is Hard to Do*/, 26598 /*The Heart of Mokk*/, 26628 /*Death From Below*/, 26630 /*Looks Like a Tauren Pirate to Me*/, 26705 /*It's a Town-In-A-Box Tracking Event*/, 26711 /*Off to the Bank*/, 26712 /*Off to the Bank*/, 26785 /*Part of the Pack*/, 26803 /*Missing Reports*/, 26806 /*Reports to Orgrimmar*/, 26880 /*Gilneas City Unphase Cheat*/, 26902 /*Get Back to Town Accepted Tracking Event*/, 26909 /*The Stone Shards*/, 26951 /*Cleanup on Isle E.*/, 26998 /*Iterating Upon Success*/, 27079 /*Twilight Gate Tracking*/, 27080 /*Twilight Gate Tracking*/, 27094 /*Deeper into Darkness*/, 27118 /*A Broken Trap*/, 27119 /*The Gordok Ogre Suit*/, 27120 /*The Gordok Ogre Suit*/, 27139 /*Hobart Needs You*/, 27181 /*Excising the Taint*/, 27218 /*Dastardly Denizens of the Deep*/, 27231 /*Reinforcements from Fenris*/, 27232 /*The Waters Run Red...*/, 27251 /*They Call Him Smiling Jim*/, 27285 /*The Black Shield*/, 27346 /*The Zeppelin Crash*/, 27363 /*A Budding Young Surgeon*/, 27386 /*A Strange Historian*/, 27414 /*Identifying the Brood*/, 27415 /*The Brood of Onyxia*/, 27417 /*The Brood of Onyxia*/, 27424 /*Overlord Mok'Morokk's Concern*/, 27984 /*Lunthistle's Tale*/, 28349 /*Megs in Marketing*/, 28395 /*Feathers for Nafien*/, 28396 /*Feathers for Grazle*/, 28855 /*Northern Stranglethorn 4.x: PRK - E - Just Hatched FLAG*/, 28878 /*A Winter Veil Gift*/, 28955 /*Candy Bucket*/, 28993 /*Candy Bucket*/, 28994 /*Candy Bucket*/, 28999 /*Candy Bucket*/, 29000 /*Candy Bucket*/, 29001 /*Candy Bucket*/, 29014 /*Candy Bucket*/, 29016 /*Candy Bucket*/, 29017 /*Candy Bucket*/, 29018 /*Candy Bucket*/, 29385 /*A Winter Veil Gift*/, 29475 /*Goblin Engineering*/, 29477 /*Gnomish Engineering*/, 29514 /*Herbs for Healing*/, 29692 /*Bring Me Another Shrubbery!*/, 29734 /*Deepforge the Elder*/, 29735 /*Stonebrand the Elder*/, 29736 /*Darkfeather the Elder*/, 29737 /*Firebeard the Elder*/, 29738 /*Moonlance the Elder*/, 29739 /*Windsong the Elder*/, 29740 /*Evershade the Elder*/, 29741 /*Sekhemi the Elder*/, 29742 /*Menkhaf the Elder*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (12 /*The People's Militia*/, 13 /*The People's Militia*/, 20 /*Blackrock Menace*/, 34 /*An Unwelcome Guest*/, 47 /*Gold Dust Exchange*/, 48 /*Sweet Amber*/, 56 /*The Night Watch*/, 60 /*Kobold Candles*/, 62 /*The Fargodeep Mine*/, 76 /*The Jasperlode Mine*/, 90 /*Seasoned Wolf Kabobs*/, 91 /*Solomon's Law*/, 92 /*Redridge Goulash*/, 115 /*Shadow Magic*/, 128 /*Blackrock Bounty*/, 133 /*Ghoulish Effigy*/, 159 /*Juice Delivery*/, 237 /*In Defense of the King's Lands*/, 240 /*Return to Jitters*/, 255 /*[DEPRECATED]Mercenaries*/, 261 /*Down the Scarlet Path*/, 267 /*The Trogg Threat*/, 279 /*Claws from the Deep*/, 295 /*Ormer's Revenge*/, 297 /*Gathering Idols*/, 299 /*Uncovering the Past*/, 303 /*The Dark Iron War*/, 307 /*Filthy Paws*/, 309 /*Protecting the Shipment*/, 311 /*Return to Marleth*/, 313 /*Forced to Watch from Afar*/, 335 /*A Noble Brew*/, 336 /*A Noble Brew*/, 354 /*Deaths in the Family*/, 358 /*Graverobbers*/, 365 /*Fields of Grief*/, 367 /*A New Plague*/, 370 /*At War With The Scarlet Crusade*/, 374 /*Proof of Demise*/, 398 /*Wanted: Maggot Eye*/, 399 /*Humble Beginnings*/, 418 /*Thelsamar Blood Sausages*/, 427 /*At War With The Scarlet Crusade*/, 464 /*War Banners*/, 484 /*Young Crocolisk Skins*/, 512 /*[DEPRECATED] Noble Deaths*/, 527 /*[DEPRECATED] Battle of Hillsbrad*/, 529 /*[DEPRECATED] Battle of Hillsbrad*/, 532 /*[DEPRECATED] Battle of Hillsbrad*/, 533 /*[DEPRECATED] Infiltration*/, 537 /*[DEPRECATED] Dark Council*/, 541 /*[DEPRECATED] Battle of Hillsbrad*/, 549 /*[DEPRECATED] WANTED: Syndicate Personnel*/, 555 /*[DEPRECATED] Soothing Turtle Bisque*/, 556 /*[DEPRECATED] Stone Tokens*/, 557 /*[DEPRECATED] Bracers of Binding*/, 559 /*[DEPRECATED] Farren's Proof*/, 676 /*The Hammer May Fall*/, 784 /*Vanquish the Betrayers*/, 818 /*A Solvent Spirit*/, 831 /*The Admiral's Orders*/, 843 /*Gann's Reclamation*/, 845 /*The Zhevra*/, 846 /*Revenge of Gann*/, 849 /*Revenge of Gann*/, 850 /*Kolkar Leaders*/, 851 /*Verog the Dervish*/, 852 /*Hezrul Bloodmark*/, 857 /*The Tear of the Moons*/, 875 /*Harpy Lieutenants*/, 903 /*Hunting the Huntress*/, 962 /*Serpentbloom*/, 1007 /*The Ancient Statuettes*/, 1008 /*The Zoram Strand*/, 1022 /*The Howling Vale*/, 1025 /*An Aggressive Defense*/, 1043 /*The Scythe of Elune*/, 1054 /*Culling the Threat*/, 1062 /*Goblin Invaders*/, 1068 /*Shredding Machines*/, 1153 /*A New Ore Sample*/, 1338 /*Stormpike's Order*/, 1360 /*Reclaimed Treasures*/, 1581 /*Elixirs for the Bladeleafs*/, 2342 /*Reclaimed Treasures*/, 2922 /*Save Techbot's Brain!*/, 2930 /*Data Rescue*/, 2962 /*The Only Cure is More Green Glow*/, 2973 /*A New Cloak's Sheen*/, 2974 /*A Grim Discovery*/, 2982 /*The High Wilderness*/, 2991 /*Nekrum's Medallion*/, 3281 /*[DEPRECATED] Stolen Silver*/, 4145 /*Larion and Muigin*/, 4283 /*FIFTY! YEP!*/, 4286 /*The Good Stuff*/, 4512 /*A Little Slime Goes a Long Way*/, 4521 /*Wild Guardians*/, 4811 /*The Red Crystal*/, 5062 /*Sacred Fire*/, 5096 /*Scarlet Diversions*/, 5097 /*All Along the Watchtowers*/, 5098 /*All Along the Watchtowers*/, 5245 /*[DEPRECATED]Troubled Spirits of Kel'Theril*/, 5421 /*Fish in a Bucket*/, 5545 /*A Bundle of Trouble*/, 5581 /*Portals of the Legion*/, 5723 /*Testing an Enemy's Strength*/, 5903 /*A Plague Upon Thee*/, 6042 /*Un-Life's Little Annoyances*/, 6143 /*Other Fish to Fry*/, 6324 /*Return to Morris*/, 6364 /*Return to Varg*/, 6386 /*Return to Razor Hill*/, 6392 /*Return to Gremlock*/, 6441 /*Satyr Horns*/, 6503 /*Ashenvale Outrunners*/, 6522 /*An Unholy Alliance*/, 6662 /*Me Brother, Nipsy*/, 7321 /*[DEPRECATED] Soothing Turtle Bisque*/, 7815 /*Snapjaws, Mon!*/, 8401 /*Fight for Warsong Gulch*/, 9456 /*Nightstalker Clean Up, Isle 2...*/, 9523 /*Precious and Fragile Things Need Special Handling*/, 9562 /*Murlocs... Why Here? Why Now?*/, 14320 /*In Need of Ingredients*/, 14321 /*Invasion*/, 14368 /*Save the Children!*/, 14473 /*It's Our Problem Now*/, 24468 /*Stranded at the Marsh*/, 24495 /*Pieces of the Past*/, 24575 /*Liberation Day*/, 28724 /*Iverron's Antidote*/, 28729 /*Teldrassil: Crown of Azeroth*/, 28731 /*Teldrassil: Passing Awareness*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `QuestDescription`='$n, my scouts tell me that the kobold infestation is larger than we had thought. A group of kobold workers has camped near the Echo Ridge Mine to the north.$B$BGo to the mine and remove them. We know there are at least 8. Kill them, see if there are more, then report back to me.', `VerifiedBuild`=19034 WHERE `ID`=15; -- [DEPRECATED] Investigate Echo Ridge UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Your previous investigations are proof that the Echo Ridge Mine needs purging. Return to the mine and help clear it of kobolds.$B$BWaste no time, $n. The longer the kobolds are left unmolested in the mine, the deeper a foothold they gain in Northshire.', `VerifiedBuild`=19034 WHERE `ID`=21; -- [DEPRECATED] Skirmish at Echo Ridge @@ -4587,27 +4587,27 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardFactionID1`=76, `A UPDATE `quest_template` SET `QuestDescription`='For your first trial, search the depths of Lake Elune''ara to locate a Shrine Bauble. It decays rapidly, so proceed with it to the Shrine of Remulos post haste. Use the bauble at the shrine, and then speak with Tajarri there; she is one of Moonglade''s most trusted wardens.$B$BYou only have a set amount of time to complete the task, and you may be competing against other druids searching for baubles themselves. Mental and physical dexterity will be critical to your success.$B$BGood luck, $n.', `VerifiedBuild`=19034 WHERE `ID`=28; -- Trial of the Lake UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (39 /*Deliver Thomas' Report*/, 61 /*Shipment to Stormwind*/, 169 /*Wanted: Gath'Ilzogg*/, 180 /*Wanted: Lieutenant Fangore*/, 317 /*Stocking Jetsteam*/, 426 /*The Mills Overrun*/, 500 /*[DEPRECATED] Crushridge Bounty*/, 544 /*[DEPRECATED] Prison Break In*/, 691 /*Worth Its Weight in Gold*/, 848 /*Fungal Spores*/, 1195 /*The Sacred Flame*/, 1486 /*Deviate Hides*/, 2340 /*Deliver the Gems*/, 3378 /*Prayer to Elune*/, 3764 /*Un'Goro Soil*/, 3906 /*Disharmony of Flame*/, 4081 /*KILL ON SIGHT: Dark Iron Dwarves*/, 4262 /*Overmaster Pyron*/, 6543 /*The Warsong Reports*/, 7816 /*Gammerita, Mon!*/, 7840 /*Lard Lost His Lunch*/, 8418 /*Forging the Mightstone*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='$n, there''s a new threat in Elwynn Forest! Murlocs are swimming up the streams of eastern Elwynn, scaring away fish and attacking gentle folk!$B$BI warned Marshal Dughan, but he''s more worried about the gnolls and the bandits. He''s not convinced that the murlocs are a danger.$B$BPlease, $n, speak to Dughan and persuade him to send more troops to the east!', `VerifiedBuild`=19034 WHERE `ID`=40; -- A Fishy Peril -UPDATE `quest_template` SET `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (46 /*Bounty on Murlocs*/, 184 /*Furlbrow's Deed*/, 310 /*Bitter Rivals*/, 314 /*Protecting the Herd*/, 315 /*The Perfect Stout*/, 602 /*Magical Analysis*/, 616 /*The Haunted Isle*/, 1030 /*Dartol's Rod*/, 1198 /*In Search of Thaelrid*/, 1384 /*Raid on the Kolkar*/, 1386 /*Assault on the Kolkar*/, 1479 /*The Bough of the Eternals*/, 1558 /*The Stonewrought Dam*/, 1687 /*Spooky Lighthouse*/, 2199 /*Lore for a Price*/, 2204 /*Restoring the Necklace*/, 2279 /*The Platinum Discs*/, 4986 /*Glyphed Oaken Branch*/, 5249 /*[DEPRECATED]To Winterspring!*/, 6604 /*Enraged Wildkin*/, 6781 /*More Armor Scraps*/, 6846 /*Begin the Attack!*/, 6848 /*Master Ryson's All Seeing Eye*/, 6862 /*Zinfizzlex's Portable Shredder Unit*/, 6881 /*Ivus the Forest Lord*/, 6941 /*Call of Air - Vipore's Fleet*/, 6942 /*Call of Air - Slidore's Fleet*/, 6943 /*Call of Air - Ichman's Fleet*/, 7022 /*Greatfather Winter is Here!*/, 7023 /*Greatfather Winter is Here!*/, 7026 /*Ram Riding Harnesses*/, 7042 /*Stolen Winter Veil Treats*/, 7168 /*Rise and Be Recognized*/, 7169 /*Honored Amongst the Guard*/, 7170 /*Earned Reverence*/, 7171 /*Legendary Heroes*/, 7172 /*The Eye of Command*/, 7282 /*Brotherly Love*/, 7301 /*Fallen Sky Lords*/, 7367 /*Defusing the Threat*/, 7386 /*Crystal Cluster*/, 8271 /*Hero of the Stormpike*/, 8275 /*Taking Back Silithus*/, 8827 /*Winter's Presents*/, 8897 /*Dearest Colara,*/, 8898 /*Dearest Colara,*/, 8899 /*Dearest Colara,*/, 8903 /*Dangerous Love*/, 8993 /*Gift Giving*/, 9292 /*Cracked Necrotic Crystal*/, 9294 /*Healing the Lake*/, 9308 /*<DEPRECATED>Blood Elf Remains?*/, 9314 /*Word from Azure Watch*/, 9409 /*Urgent Delivery!*/, 9415 /*Report to Marshal Bluewall*/, 9604 /*On the Wings of a Hippogryph*/, 9633 /*The Way to Auberdine*/, 9642 /*More Irradiated Crystal Shards*/, 10645 /*Teron Gorefiend, I am...*/, 10952 /*A Trip to the Dark Portal*/, 10954 /*Jheel is at Aeris Landing!*/, 10956 /*The Seat of the Naaru*/, 10962 /*Time to Visit the Caverns*/, 10968 /*Call on the Farseer*/, 11123 /*[DEPRECATED]Inspecting the Ruins*/, 11191 /*[DEPRECATED]This Old Lighthouse*/, 11194 /*[DEPRECATED]Is it Real?*/, 11321 /*Did Someone Say ""Souvenir?""*/, 11400 /*Brewfest Riding Rams*/, 11404 /*Call the Headless Horseman*/, 11882 /*Playing with Fire*/, 12286 /*Candy Bucket*/, 12331 /*Candy Bucket*/, 12332 /*Candy Bucket*/, 12333 /*Candy Bucket*/, 12334 /*Candy Bucket*/, 12335 /*Candy Bucket*/, 12336 /*Candy Bucket*/, 12337 /*Candy Bucket*/, 12338 /*Candy Bucket*/, 12339 /*Candy Bucket*/, 12340 /*Candy Bucket*/, 12341 /*Candy Bucket*/, 12342 /*Candy Bucket*/, 12343 /*Candy Bucket*/, 12344 /*Candy Bucket*/, 12345 /*Candy Bucket*/, 12346 /*Candy Bucket*/, 12347 /*Candy Bucket*/, 12348 /*Candy Bucket*/, 12349 /*Candy Bucket*/, 12350 /*Candy Bucket*/, 12351 /*Candy Bucket*/, 12352 /*Candy Bucket*/, 12353 /*Candy Bucket*/, 12354 /*Candy Bucket*/, 12355 /*Candy Bucket*/, 12356 /*Candy Bucket*/, 12357 /*Candy Bucket*/, 12358 /*Candy Bucket*/, 12359 /*Candy Bucket*/, 12360 /*Candy Bucket*/, 12420 /*Brew of the Month Club*/, 12881 /*The Brothers Bronzebeard*/, 12944 /*Candy Bucket*/, 12945 /*Candy Bucket*/, 13433 /*Candy Bucket*/, 13434 /*Candy Bucket*/, 13435 /*Candy Bucket*/, 13436 /*Candy Bucket*/, 13437 /*Candy Bucket*/, 13438 /*Candy Bucket*/, 13439 /*Candy Bucket*/, 13448 /*Candy Bucket*/, 13473 /*Candy Bucket*/, 13525 /*What's Happening to the Blackwood Furbolg?*/, 13543 /*Three Hammers to Break*/, 13547 /*Coaxing the Spirits*/, 13649 /*Justin's Fun Test*/, 13686 /*Alliance Tournament Eligibility Marker*/, 13700 /*Alliance Champion Marker*/, 13932 /*Another Year, Another Souvenir.*/, 14023 /*Spice Bread Stuffing*/, 14028 /*Cranberry Chutney*/, 14030 /*They're Ravenous In Darnassus*/, 14033 /*Candied Sweet Potatoes*/, 14035 /*Slow-roasted Turkey*/, 14064 /*Sharing a Bountiful Feast*/, 24553 /*The Purification of Quel'Delar*/, 24595 /*The Purification of Quel'Delar*/, 24804 /*Uncommon Scents*/, 25437 /*Ysondre's Call*/, 25479 /*To New Thalanaar*/, 25488 /*Two If By Boat*/, 25504 /*Do Me a Favor?*/, 25835 /*Free Freewind Post*/, 25838 /*Help from Steelgrill's Depot*/, 25882 /*A Hand at the Ranch*/, 25998 /*Get to the Airfield*/, 26119 /*FLAG - Claim Our Stake Launched*/, 26152 /*Wanted: James Clark*/, 26316 /*What's Keeping Jessup?*/, 26373 /*On to Kharanos*/, 26378 /*Hero's Call: Westfall!*/, 26531 /*Summoning Shadra*/, 26566 /*A Triumph of Gnomish Ingenuity*/, 27032 /*Bird is the Word*/, 27214 /*A Disturbing Development*/, 27215 /*The Hermit of Swamplight Manor*/, 27216 /*This Old Lighthouse*/, 27221 /*Oh, It's Real*/, 27224 /*Andorhal Phase Flag*/, 27235 /*Renn McGill*/, 27246 /*The Orc Report*/, 27262 /*Suspicious Hoofprints*/, 27263 /*Lieutenant Paval Reethe*/, 27264 /*Lieutenant Paval Reethe*/, 27275 /*Together Again*/, 27284 /*The Black Shield*/, 27286 /*Daelin's Men*/, 27287 /*The Deserters*/, 27355 /*A Boon for the Powerful*/, 27425 /*A Grim Connection*/, 27428 /*Tabetha's Assistance*/, 27430 /*Justice for the Hyals*/, 27675 /*Forged Documents*/, 27796 /*The Warden's Pawn*/, 27797 /*The Sentinel's Pawn*/, 27832 /*The Hidden Clutch*/, 27858 /*Rheastrasza's Gift*/, 27912 /*The Titans' Trove*/, 28180 /*The Sand, the Cider, and the Orb*/, 28260 /*Meet with Wulf Hansreim*/, 28262 /*Meet with Lord Tony Romano*/, 28263 /*Meet with Maginor Dumas*/, 28268 /*Meet with Lord Grayson Shadowbreaker*/, 28283 /*What's that Rattle?*/, 28490 /*Hero's Call: Darkshore!*/, 28503 /*Hero's Call: Thousand Needles!*/, 28507 /*Hero's Call: Tanaris!*/, 28511 /*Hero's Call: Feralas!*/, 28525 /*Hero's Call: Un'Goro Crater!*/, 28528 /*Hero's Call: Silithus!*/, 28531 /*Hero's Call: Desolace!*/, 28539 /*Hero's Call: Stonetalon Mountains!*/, 28544 /*Hero's Call: Winterspring!*/, 28550 /*Hero's Call: Southern Barrens!*/, 28559 /*Hero's Call: Bloodmyst Isle!*/, 28565 /*Hero's Call: Wetlands!*/, 28567 /*Hero's Call: Loch Modan!*/, 28573 /*Hero's Call: Arathi Highlands!*/, 28576 /*Hero's Call: Western Plaguelands!*/, 28951 /*Candy Bucket*/, 28952 /*Candy Bucket*/, 28954 /*Candy Bucket*/, 28956 /*Candy Bucket*/, 28960 /*Candy Bucket*/, 28961 /*Candy Bucket*/, 28963 /*Candy Bucket*/, 28964 /*Candy Bucket*/, 28968 /*Candy Bucket*/, 28970 /*Candy Bucket*/, 28977 /*Candy Bucket*/, 28978 /*Candy Bucket*/, 28979 /*Candy Bucket*/, 28980 /*Candy Bucket*/, 28983 /*Candy Bucket*/, 28985 /*Candy Bucket*/, 28988 /*Candy Bucket*/, 28990 /*Candy Bucket*/, 28991 /*Candy Bucket*/, 28995 /*Candy Bucket*/, 28997 /*Candy Bucket*/, 29006 /*Candy Bucket*/, 29007 /*Candy Bucket*/, 29008 /*Candy Bucket*/, 29010 /*Candy Bucket*/, 29011 /*Candy Bucket*/, 29012 /*Candy Bucket*/, 29013 /*Candy Bucket*/, 29020 /*Candy Bucket*/, 29035 /*A Cub's Cravings*/, 29037 /*'Borrowing' From the Winterfall*/, 29038 /*Hunting Practice*/, 29040 /*Cub's First Toy*/, 29054 /*Stink Bombs Away!*/, 29071 /*Make Haste to Stormwind!*/, 29092 /*Inform the Elder*/, 29267 /*Some Good Will Come*/, 29397 /*A New Supplier of Souvenirs*/, 29398 /*Fencing the Goods*/, 29403 /*The Collector's Agent*/, 29413 /*The Creepy Crate*/, 29430 /*A Friend in Need*/); +UPDATE `quest_template` SET `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (46 /*Bounty on Murlocs*/, 184 /*Furlbrow's Deed*/, 310 /*Bitter Rivals*/, 314 /*Protecting the Herd*/, 315 /*The Perfect Stout*/, 602 /*Magical Analysis*/, 603 /*Ansirem's Key*/, 611 /*The Curse of the Tides*/, 616 /*The Haunted Isle*/, 1030 /*Dartol's Rod*/, 1198 /*In Search of Thaelrid*/, 1384 /*Raid on the Kolkar*/, 1386 /*Assault on the Kolkar*/, 1479 /*The Bough of the Eternals*/, 1558 /*The Stonewrought Dam*/, 1687 /*Spooky Lighthouse*/, 2199 /*Lore for a Price*/, 2204 /*Restoring the Necklace*/, 2279 /*The Platinum Discs*/, 4986 /*Glyphed Oaken Branch*/, 5249 /*[DEPRECATED]To Winterspring!*/, 6604 /*Enraged Wildkin*/, 6781 /*More Armor Scraps*/, 6846 /*Begin the Attack!*/, 6848 /*Master Ryson's All Seeing Eye*/, 6862 /*Zinfizzlex's Portable Shredder Unit*/, 6881 /*Ivus the Forest Lord*/, 6941 /*Call of Air - Vipore's Fleet*/, 6942 /*Call of Air - Slidore's Fleet*/, 6943 /*Call of Air - Ichman's Fleet*/, 7022 /*Greatfather Winter is Here!*/, 7023 /*Greatfather Winter is Here!*/, 7026 /*Ram Riding Harnesses*/, 7042 /*Stolen Winter Veil Treats*/, 7168 /*Rise and Be Recognized*/, 7169 /*Honored Amongst the Guard*/, 7170 /*Earned Reverence*/, 7171 /*Legendary Heroes*/, 7172 /*The Eye of Command*/, 7282 /*Brotherly Love*/, 7301 /*Fallen Sky Lords*/, 7367 /*Defusing the Threat*/, 7386 /*Crystal Cluster*/, 8271 /*Hero of the Stormpike*/, 8275 /*Taking Back Silithus*/, 8827 /*Winter's Presents*/, 8897 /*Dearest Colara,*/, 8898 /*Dearest Colara,*/, 8899 /*Dearest Colara,*/, 8903 /*Dangerous Love*/, 8993 /*Gift Giving*/, 9292 /*Cracked Necrotic Crystal*/, 9294 /*Healing the Lake*/, 9308 /*<DEPRECATED>Blood Elf Remains?*/, 9314 /*Word from Azure Watch*/, 9409 /*Urgent Delivery!*/, 9415 /*Report to Marshal Bluewall*/, 9604 /*On the Wings of a Hippogryph*/, 9633 /*The Way to Auberdine*/, 9642 /*More Irradiated Crystal Shards*/, 10645 /*Teron Gorefiend, I am...*/, 10952 /*A Trip to the Dark Portal*/, 10954 /*Jheel is at Aeris Landing!*/, 10956 /*The Seat of the Naaru*/, 10962 /*Time to Visit the Caverns*/, 10968 /*Call on the Farseer*/, 11123 /*[DEPRECATED]Inspecting the Ruins*/, 11191 /*[DEPRECATED]This Old Lighthouse*/, 11194 /*[DEPRECATED]Is it Real?*/, 11321 /*Did Someone Say ""Souvenir?""*/, 11400 /*Brewfest Riding Rams*/, 11404 /*Call the Headless Horseman*/, 11882 /*Playing with Fire*/, 12286 /*Candy Bucket*/, 12331 /*Candy Bucket*/, 12332 /*Candy Bucket*/, 12333 /*Candy Bucket*/, 12334 /*Candy Bucket*/, 12335 /*Candy Bucket*/, 12336 /*Candy Bucket*/, 12337 /*Candy Bucket*/, 12338 /*Candy Bucket*/, 12339 /*Candy Bucket*/, 12340 /*Candy Bucket*/, 12341 /*Candy Bucket*/, 12342 /*Candy Bucket*/, 12343 /*Candy Bucket*/, 12344 /*Candy Bucket*/, 12345 /*Candy Bucket*/, 12346 /*Candy Bucket*/, 12347 /*Candy Bucket*/, 12348 /*Candy Bucket*/, 12349 /*Candy Bucket*/, 12350 /*Candy Bucket*/, 12351 /*Candy Bucket*/, 12352 /*Candy Bucket*/, 12353 /*Candy Bucket*/, 12354 /*Candy Bucket*/, 12355 /*Candy Bucket*/, 12356 /*Candy Bucket*/, 12357 /*Candy Bucket*/, 12358 /*Candy Bucket*/, 12359 /*Candy Bucket*/, 12360 /*Candy Bucket*/, 12420 /*Brew of the Month Club*/, 12881 /*The Brothers Bronzebeard*/, 12944 /*Candy Bucket*/, 12945 /*Candy Bucket*/, 13433 /*Candy Bucket*/, 13434 /*Candy Bucket*/, 13435 /*Candy Bucket*/, 13436 /*Candy Bucket*/, 13437 /*Candy Bucket*/, 13438 /*Candy Bucket*/, 13439 /*Candy Bucket*/, 13448 /*Candy Bucket*/, 13473 /*Candy Bucket*/, 13525 /*What's Happening to the Blackwood Furbolg?*/, 13543 /*Three Hammers to Break*/, 13547 /*Coaxing the Spirits*/, 13649 /*Justin's Fun Test*/, 13686 /*Alliance Tournament Eligibility Marker*/, 13700 /*Alliance Champion Marker*/, 13932 /*Another Year, Another Souvenir.*/, 14023 /*Spice Bread Stuffing*/, 14028 /*Cranberry Chutney*/, 14030 /*They're Ravenous In Darnassus*/, 14033 /*Candied Sweet Potatoes*/, 14035 /*Slow-roasted Turkey*/, 14064 /*Sharing a Bountiful Feast*/, 24553 /*The Purification of Quel'Delar*/, 24595 /*The Purification of Quel'Delar*/, 24804 /*Uncommon Scents*/, 25437 /*Ysondre's Call*/, 25479 /*To New Thalanaar*/, 25488 /*Two If By Boat*/, 25504 /*Do Me a Favor?*/, 25835 /*Free Freewind Post*/, 25838 /*Help from Steelgrill's Depot*/, 25882 /*A Hand at the Ranch*/, 25998 /*Get to the Airfield*/, 26119 /*FLAG - Claim Our Stake Launched*/, 26152 /*Wanted: James Clark*/, 26316 /*What's Keeping Jessup?*/, 26373 /*On to Kharanos*/, 26378 /*Hero's Call: Westfall!*/, 26531 /*Summoning Shadra*/, 26566 /*A Triumph of Gnomish Ingenuity*/, 27032 /*Bird is the Word*/, 27214 /*A Disturbing Development*/, 27215 /*The Hermit of Swamplight Manor*/, 27216 /*This Old Lighthouse*/, 27221 /*Oh, It's Real*/, 27224 /*Andorhal Phase Flag*/, 27235 /*Renn McGill*/, 27246 /*The Orc Report*/, 27262 /*Suspicious Hoofprints*/, 27263 /*Lieutenant Paval Reethe*/, 27264 /*Lieutenant Paval Reethe*/, 27275 /*Together Again*/, 27284 /*The Black Shield*/, 27286 /*Daelin's Men*/, 27287 /*The Deserters*/, 27355 /*A Boon for the Powerful*/, 27425 /*A Grim Connection*/, 27428 /*Tabetha's Assistance*/, 27430 /*Justice for the Hyals*/, 27473 /*What's Shaking in Ironforge*/, 27675 /*Forged Documents*/, 27796 /*The Warden's Pawn*/, 27797 /*The Sentinel's Pawn*/, 27832 /*The Hidden Clutch*/, 27858 /*Rheastrasza's Gift*/, 27912 /*The Titans' Trove*/, 28180 /*The Sand, the Cider, and the Orb*/, 28260 /*Meet with Wulf Hansreim*/, 28262 /*Meet with Lord Tony Romano*/, 28263 /*Meet with Maginor Dumas*/, 28268 /*Meet with Lord Grayson Shadowbreaker*/, 28283 /*What's that Rattle?*/, 28490 /*Hero's Call: Darkshore!*/, 28503 /*Hero's Call: Thousand Needles!*/, 28507 /*Hero's Call: Tanaris!*/, 28511 /*Hero's Call: Feralas!*/, 28525 /*Hero's Call: Un'Goro Crater!*/, 28528 /*Hero's Call: Silithus!*/, 28531 /*Hero's Call: Desolace!*/, 28539 /*Hero's Call: Stonetalon Mountains!*/, 28544 /*Hero's Call: Winterspring!*/, 28550 /*Hero's Call: Southern Barrens!*/, 28559 /*Hero's Call: Bloodmyst Isle!*/, 28565 /*Hero's Call: Wetlands!*/, 28567 /*Hero's Call: Loch Modan!*/, 28573 /*Hero's Call: Arathi Highlands!*/, 28576 /*Hero's Call: Western Plaguelands!*/, 28951 /*Candy Bucket*/, 28952 /*Candy Bucket*/, 28954 /*Candy Bucket*/, 28956 /*Candy Bucket*/, 28960 /*Candy Bucket*/, 28961 /*Candy Bucket*/, 28963 /*Candy Bucket*/, 28964 /*Candy Bucket*/, 28968 /*Candy Bucket*/, 28970 /*Candy Bucket*/, 28977 /*Candy Bucket*/, 28978 /*Candy Bucket*/, 28979 /*Candy Bucket*/, 28980 /*Candy Bucket*/, 28983 /*Candy Bucket*/, 28985 /*Candy Bucket*/, 28988 /*Candy Bucket*/, 28990 /*Candy Bucket*/, 28991 /*Candy Bucket*/, 28995 /*Candy Bucket*/, 28997 /*Candy Bucket*/, 29006 /*Candy Bucket*/, 29007 /*Candy Bucket*/, 29008 /*Candy Bucket*/, 29010 /*Candy Bucket*/, 29011 /*Candy Bucket*/, 29012 /*Candy Bucket*/, 29013 /*Candy Bucket*/, 29020 /*Candy Bucket*/, 29035 /*A Cub's Cravings*/, 29037 /*'Borrowing' From the Winterfall*/, 29038 /*Hunting Practice*/, 29040 /*Cub's First Toy*/, 29054 /*Stink Bombs Away!*/, 29071 /*Make Haste to Stormwind!*/, 29092 /*Inform the Elder*/, 29267 /*Some Good Will Come*/, 29397 /*A New Supplier of Souvenirs*/, 29398 /*Fencing the Goods*/, 29403 /*The Collector's Agent*/, 29413 /*The Creepy Crate*/, 29430 /*A Friend in Need*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `QuestDescription`='Hail, $n. Wild animals are growing more and more aggressive the farther we get from Goldshire, and the Eastvale Logging Camp suffers nearly constant attacks from wolves and bears!$B$BWe could use your help out here.', `VerifiedBuild`=19034 WHERE `ID`=52; -- Protect the Frontier UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='$n, you are a $c with proven interest in the security of Northshire. You are now tasked with the protection of the surrounding Elwynn Forest.$B$BIf you accept this duty, then I have prepared papers that must be delivered to Marshal Dughan in Goldshire. Goldshire lies along the southern road, past the border gates.', `VerifiedBuild`=19034 WHERE `ID`=54; -- Report to Goldshire UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='$n, I''m getting reports of an undead infestation in the forest! If you''re up to the job, journey to the Raven Hill graveyard and slay 15 of those vile Skeletal Fiends and 15 Skeletal Horrors. There are also reports of skeletons just south of Darkshire, in and around Tranquil Gardens Cemetery. The undead must be driven from Duskwood!', `VerifiedBuild`=19034 WHERE `ID`=57; -- The Night Watch UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='The situation in Raven Hill is still grim. The safety of Darkshire is in your hands, $n. I don''t have enough Watchers to keep the town safe. We need you to dispatch for Raven Hill yet again and rid the eastern mausoleum of 20 Plague Spreaders!', `VerifiedBuild`=19034 WHERE `ID`=58; -- The Night Watch UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='For your shrewdness and valor, I have a marker here that is good for one piece of armor. I want you to take it to Sara Timberlain at the Eastvale Logging Camp. Give her the marker, and she will fashion the armor for you. And after you receive it, $n, use it in the defense of Elwynn.$B$BEastvale is just east of this post across the bridge.', `VerifiedBuild`=19034 WHERE `ID`=59; -- Cloth and Leather Armor -UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `VerifiedBuild`=19034 WHERE `ID` IN (82 /*Noxious Lair Investigation*/, 103 /*Keeper of the Flame*/, 124 /*A Baying of Gnolls*/, 493 /*Journey to Hillsbrad Foothills*/, 753 /*A Humble Task*/, 764 /*The Venture Co.*/, 833 /*A Sacred Burial*/, 2438 /*The Emerald Dreamcatcher*/, 2873 /*Stoley's Shipment*/, 3524 /*Washed Ashore*/, 3542 /*Delivery to Andron Gant*/, 4136 /*Ribbly Screwspigot*/, 5535 /*Spiritual Unrest*/, 11454 /*Seek the Saboteurs*/, 13589 /*The Shatterspear Invaders*/, 13599 /*Grimclaw's Return*/, 13636 /*Stormpike's Orders*/, 13639 /*Resupplying the Excavation*/, 13647 /*Joining the Hunt*/, 13925 /*An Ounce of Prevention*/, 13963 /*By Hook Or By Crook*/, 14029 /*Breaking the Siege*/, 14258 /*Mortar the Point*/, 14299 /*Xylem's Asylum*/, 14345 /*Wash Out*/, 14377 /*Befriending Giants*/, 14389 /*Wasn't It Obvious?*/, 14413 /*The Pinnacle of Learning*/, 24694 /*The Shaper's Terrace*/, 24938 /*The Guns of Northwatch*/, 25191 /*Survey the Destruction*/, 25387 /*To Camp Mojache*/, 26430 /*Revantusk Village*/, 26631 /*Your First Day as a Pirate*/, 26807 /*Return to Eitrigg*/, 28467 /*Mystery Goo*/, 28759 /*Lions for Lambs*/, 28769 /*Lions for Lambs*/, 28770 /*Lions for Lambs*/, 28771 /*Lions for Lambs*/, 28772 /*Lions for Lambs*/, 28773 /*Lions for Lambs*/, 28774 /*Lions for Lambs*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `VerifiedBuild`=19034 WHERE `ID` IN (82 /*Noxious Lair Investigation*/, 103 /*Keeper of the Flame*/, 124 /*A Baying of Gnolls*/, 493 /*Journey to Hillsbrad Foothills*/, 575 /*Supply and Demand*/, 577 /*Some Assembly Required*/, 595 /*The Bloodsail Buccaneers*/, 753 /*A Humble Task*/, 764 /*The Venture Co.*/, 833 /*A Sacred Burial*/, 2438 /*The Emerald Dreamcatcher*/, 2873 /*Stoley's Shipment*/, 3524 /*Washed Ashore*/, 3542 /*Delivery to Andron Gant*/, 4136 /*Ribbly Screwspigot*/, 5535 /*Spiritual Unrest*/, 11454 /*Seek the Saboteurs*/, 13589 /*The Shatterspear Invaders*/, 13599 /*Grimclaw's Return*/, 13636 /*Stormpike's Orders*/, 13639 /*Resupplying the Excavation*/, 13647 /*Joining the Hunt*/, 13925 /*An Ounce of Prevention*/, 13963 /*By Hook Or By Crook*/, 14029 /*Breaking the Siege*/, 14258 /*Mortar the Point*/, 14299 /*Xylem's Asylum*/, 14345 /*Wash Out*/, 14377 /*Befriending Giants*/, 14389 /*Wasn't It Obvious?*/, 14413 /*The Pinnacle of Learning*/, 24694 /*The Shaper's Terrace*/, 24938 /*The Guns of Northwatch*/, 25191 /*Survey the Destruction*/, 25387 /*To Camp Mojache*/, 26430 /*Revantusk Village*/, 26631 /*Your First Day as a Pirate*/, 26807 /*Return to Eitrigg*/, 28467 /*Mystery Goo*/, 28759 /*Lions for Lambs*/, 28769 /*Lions for Lambs*/, 28770 /*Lions for Lambs*/, 28771 /*Lions for Lambs*/, 28772 /*Lions for Lambs*/, 28773 /*Lions for Lambs*/, 28774 /*Lions for Lambs*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='During the last orc invasion we were forced to smelt our iron down to make bullets, swords and armor. We sent word to Stormwind for a new shipment of materials but a band of Redridge gnolls hijacked the caravan and ran off into the hills behind Lakeshire.$b$bNow we''re coming up short on supplies to get this bridge rebuilt. If you can bring me 5 iron pikes and 5 iron rivets, $n, I''ll make sure you''re rewarded. $b$bNow let''s get to work!', `VerifiedBuild`=19034 WHERE `ID`=89; -- The Everstill Bridge UPDATE `quest_template` SET `QuestDescription`='As my understanding of Arugal''s magic grows so does my disdain for the hapless fool. I am close to completing my research on his so called remedy.$b$bMy knowledge will be complete when I learn what enchantment is causing the strange behavior going on in Pyrewood Village. By day, the peasants appear to be Human. But when the sun goes down the townsfolk turn into Moonrage Worgen.$b$bI need to draw energy from the enchanted shackles Arugal cast on them. Bring to me six enchanted Pyrewood Shackles, $n.', `VerifiedBuild`=19034 WHERE `ID`=99; -- Arugal's Folly UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='As the mystical taint creeps through the forest, the need for self-protection is undeniable, $n. The winds whisper to me and they speak of a great danger which waits patiently for you in the near future.$b$bIf you wish to protect yourself, noble $c, bring to me 10 ghoul fangs, 10 skeleton fingers and 5 vials of spider venom. For you I shall enchant a Totem of Infliction which will harm those who attempt violent acts against you.', `VerifiedBuild`=19034 WHERE `ID`=101; -- The Totem of Infliction UPDATE `quest_template` SET `RewardBonusMoney`=70800, `AllowableRaces`=-1, `QuestDescription`='Alas, the time to attack Andorhal and drive out the lich that controls it is upon us!$B$BInside the ruins of the city is where the lich - Araj the Summoner - holds dominion. He is guarded by numerous Scourge surrounding the remains of city''s center, and his personal retinue of guardians attached to him directly is formidable. You will need numerous allies to even stand a chance of facing him successfully.$B$BDestroy Araj, $n, and bring me a shard from his phylactery as proof!', `VerifiedBuild`=19034 WHERE `ID` IN (105 /*Alas, Andorhal*/, 211 /*Alas, Andorhal*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (109 /*Report to Gryan Stoutmantle*/, 127 /*Selling Fish*/, 173 /*Worgen in the Woods*/, 221 /*Worgen in the Woods*/, 222 /*Worgen in the Woods*/, 289 /*The Cursed Crew*/, 323 /*Proving Your Worth*/, 357 /*The Lich's Identity*/, 545 /*[DEPRECATED] Dalaran Patrols*/, 837 /*Encroachment*/, 1459 /*Reagents for Reclaimers Inc.*/, 1467 /*Reagents for Reclaimers Inc.*/, 1821 /*Agamand Heirlooms*/, 2862 /*War on the Woodpaw*/, 2869 /*Against the Hatecrest*/, 2870 /*Against Lord Shalzaru*/, 2877 /*Skulk Rock Clean-up*/, 3128 /*Natural Materials*/, 4821 /*Alien Egg*/, 4921 /*Lost in Battle*/, 5361 /*Family Tree*/, 6343 /*Return to Nyoma*/, 6564 /*Allegiance to the Old Gods*/, 10324 /*The Great Moongraze Hunt*/, 14399 /*Grandma's Lost It Alright*/, 14412 /*Washed Up*/, 24672 /*Onwards and Upwards*/, 24930 /*While You're At It*/, 28725 /*The Woodland Protector*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (109 /*Report to Gryan Stoutmantle*/, 127 /*Selling Fish*/, 173 /*Worgen in the Woods*/, 221 /*Worgen in the Woods*/, 222 /*Worgen in the Woods*/, 289 /*The Cursed Crew*/, 323 /*Proving Your Worth*/, 357 /*The Lich's Identity*/, 545 /*[DEPRECATED] Dalaran Patrols*/, 627 /*Favor for Krazek*/, 837 /*Encroachment*/, 1459 /*Reagents for Reclaimers Inc.*/, 1467 /*Reagents for Reclaimers Inc.*/, 1821 /*Agamand Heirlooms*/, 2862 /*War on the Woodpaw*/, 2869 /*Against the Hatecrest*/, 2870 /*Against Lord Shalzaru*/, 2877 /*Skulk Rock Clean-up*/, 3128 /*Natural Materials*/, 4821 /*Alien Egg*/, 4921 /*Lost in Battle*/, 5361 /*Family Tree*/, 6343 /*Return to Nyoma*/, 6564 /*Allegiance to the Old Gods*/, 10324 /*The Great Moongraze Hunt*/, 14399 /*Grandma's Lost It Alright*/, 14412 /*Washed Up*/, 24672 /*Onwards and Upwards*/, 24930 /*While You're At It*/, 28725 /*The Woodland Protector*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Please, $n, talk with my Gramma. If anyone can find a way to bring me together with Maybell, she can.$B$BShe''s inside our house east of here.', `VerifiedBuild`=19034 WHERE `ID`=111; -- Speak with Gramma UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='I find myself in quite a pinch here, $n. The bottles are close to running dry. The latest booze shipment is long overdue. The orc invasion has been hell.$b$bPerhaps you can go to work for me?$b$bI need you to pick up a keg of Thunderbrew Lager from Grimbooze Thunderbrew in the Westfall hills, a cask of Merlot from Stormwind, a bottle of Moonshine from Darkshire and a skin of Sweet Rum from Goldshire. Bring those back to me and I will see to it you are rewarded.', `VerifiedBuild`=19034 WHERE `ID`=116; -- Dry Times -UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `VerifiedBuild`=19034 WHERE `ID` IN (119 /*Return to Verner*/, 752 /*A Humble Task*/, 992 /*Gadgetzan Water Survey*/, 997 /*Denalan's Earth*/, 3541 /*Delivery to Jes'rimon*/, 3881 /*Expedition Salvation*/, 3883 /*Alien Ecology*/, 6030 /*Duke Nicholas Zverenhoff*/, 8324 /*Still Believing*/, 9133 /*Fly to Silvermoon City*/, 13953 /*Naga In Our Midst*/, 14026 /*Off With a Bang*/, 14072 /*Flushing Out Verog*/, 14322 /*Bad Science! Bad!*/, 14337 /*Shadowprey Village*/, 14338 /*Ghost Walker Post*/, 14343 /*Maurin's Concoction*/, 14380 /*An Impactful Discovery*/, 14407 /*Azshara Blues*/, 24453 /*Private Chat*/, 24497 /*Airborne Again*/, 24622 /*A Troll's Truest Companion*/, 24703 /*An Important Lesson*/, 24714 /*Chasing A-Me 01*/, 24755 /*More Than Expected*/, 24763 /*More Than Expected*/, 24775 /*More Than Expected*/, 24781 /*More Than Expected*/, 24787 /*More Than Expected*/, 24865 /*Is This Stuff Still Good?*/, 24866 /*An Abandoned Research Camp*/, 24911 /*Tropical Paradise Beckons*/, 25018 /*Andoren Will Know*/, 25103 /*Bootlegger Outpost*/, 25174 /*Twinbraid Needs to Know*/, 25175 /*The Bad News*/, 25342 /*Talk to Swar'jan*/, 25386 /*To Stonemaul Hold*/, 25402 /*Estulan's Examination*/, 25770 /*Keg Run*/, 25777 /*Onwards to Menethil*/, 26137 /*Checking on the Boys*/, 26139 /*Into Arathi*/, 26196 /*Longbraid the Grim*/, 26302 /*Chasing Yenniku's Fate*/, 26384 /*Darkcleric Marnal*/, 26394 /*Continue to Stormwind*/, 26432 /*The Fall of Jintha'Alor*/, 26642 /*Preserving the Barrens*/, 26650 /*The Damsel's Luck*/, 27034 /*He's That Age*/, 27053 /*Gahrron's Withering Cauldron*/, 27074 /*Fight the Hammer*/, 27383 /*Little Pamela*/, 28471 /*The Final Piece*/, 28517 /*The Howling Oak*/, 28521 /*Speak to Salfa*/, 28523 /*More Beads for Salfa*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `VerifiedBuild`=19034 WHERE `ID` IN (119 /*Return to Verner*/, 201 /*Investigate the Camp*/, 752 /*A Humble Task*/, 992 /*Gadgetzan Water Survey*/, 997 /*Denalan's Earth*/, 3541 /*Delivery to Jes'rimon*/, 3881 /*Expedition Salvation*/, 3883 /*Alien Ecology*/, 6030 /*Duke Nicholas Zverenhoff*/, 8324 /*Still Believing*/, 9133 /*Fly to Silvermoon City*/, 13953 /*Naga In Our Midst*/, 14026 /*Off With a Bang*/, 14072 /*Flushing Out Verog*/, 14322 /*Bad Science! Bad!*/, 14337 /*Shadowprey Village*/, 14338 /*Ghost Walker Post*/, 14343 /*Maurin's Concoction*/, 14380 /*An Impactful Discovery*/, 14407 /*Azshara Blues*/, 24453 /*Private Chat*/, 24497 /*Airborne Again*/, 24622 /*A Troll's Truest Companion*/, 24703 /*An Important Lesson*/, 24714 /*Chasing A-Me 01*/, 24755 /*More Than Expected*/, 24763 /*More Than Expected*/, 24775 /*More Than Expected*/, 24781 /*More Than Expected*/, 24787 /*More Than Expected*/, 24865 /*Is This Stuff Still Good?*/, 24866 /*An Abandoned Research Camp*/, 24911 /*Tropical Paradise Beckons*/, 25018 /*Andoren Will Know*/, 25103 /*Bootlegger Outpost*/, 25174 /*Twinbraid Needs to Know*/, 25175 /*The Bad News*/, 25342 /*Talk to Swar'jan*/, 25386 /*To Stonemaul Hold*/, 25402 /*Estulan's Examination*/, 25770 /*Keg Run*/, 25777 /*Onwards to Menethil*/, 26137 /*Checking on the Boys*/, 26139 /*Into Arathi*/, 26196 /*Longbraid the Grim*/, 26302 /*Chasing Yenniku's Fate*/, 26384 /*Darkcleric Marnal*/, 26394 /*Continue to Stormwind*/, 26432 /*The Fall of Jintha'Alor*/, 26642 /*Preserving the Barrens*/, 26650 /*The Damsel's Luck*/, 27034 /*He's That Age*/, 27053 /*Gahrron's Withering Cauldron*/, 27074 /*Fight the Hammer*/, 27383 /*Little Pamela*/, 28471 /*The Final Piece*/, 28517 /*The Howling Oak*/, 28521 /*Speak to Salfa*/, 28523 /*More Beads for Salfa*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=2, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (121 /*Messenger to Stormwind*/, 144 /*Messenger to Westfall*/, 146 /*Messenger to Darkshire*/, 244 /*Encroaching Gnolls*/, 301 /*Report to Ironforge*/, 400 /*Tools for Steelgrill*/, 2159 /*Dolanaar Delivery*/, 10835 /*Apothecary Antonivich*/, 14285 /*Safety in Numbers*/, 14287 /*Safety in Numbers*/, 14288 /*Safety in Numbers*/, 14289 /*Safety in Numbers*/, 14290 /*Safety in Numbers*/, 14291 /*Safety in Numbers*/, 14466 /*The King's Observatory*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (123 /*The Collector*/, 384 /*Beer Basted Boar Ribs*/, 432 /*Those Blasted Troggs!*/, 433 /*The Public Servant*/, 930 /*The Glowing Fruit*/, 1010 /*Bathran's Hair*/, 1016 /*Retaking Mystral Lake*/, 1026 /*Search the Bole*/, 1027 /*Playing Possum*/, 1045 /*A New Adornment*/, 1222 /*Stinky's Escape*/, 9474 /*The Mark of the Lightbringer*/, 9517 /*A Shameful Waste*/, 9799 /*Botanical Legwork*/, 11126 /*Traitors Among Us*/, 11128 /*Propaganda War*/, 11137 /*[DEPRECATED]Defias in Dustwallow?*/, 11209 /*[DEPRECATED]Nat's Bargain*/, 12133 /*Smash the Pumpkin*/, 13510 /*Timely Arrival*/, 13526 /*The Bear's Paw*/, 13542 /*Against the Wind*/, 13544 /*The Bear's Blessing*/, 13545 /*Cleansing the Afflicted*/, 13572 /*Jadefire Braziers*/, 13650 /*Keep Your Hands Off The Goods!*/, 13766 /*Closure is Only Natural*/, 13885 /*In Defense of Darkshore*/, 13907 /*Sweeping Clean the Ruins*/, 13910 /*A New Home*/, 24474 /*First Things First: We're Gonna Need Some Beer*/, 24475 /*All the Other Stuff*/, 25084 /*A Growing Threat*/, 25085 /*Mangletooth*/, 25486 /*The Grimtotem are Coming*/, 25532 /*Pirate Accuracy Increasing*/, 25542 /*Circle the Wagons... er, Boats*/, 25667 /*Culling the Wendigos*/, 25668 /*Pilfered Supplies*/, 25716 /*Cultists at our Doorstep*/, 25756 /*Get Zherin!*/, 25790 /*Back to Crazzle*/, 25792 /*Pushing Forward*/, 25817 /*The Cursed Crew*/, 25819 /*The Eye of Paleth*/, 25840 /*Eliminate the Resistance*/, 25869 /*Grimtotem in the Post*/, 25905 /*Rams on the Lam*/, 25932 /*It's Raid Night Every Night*/, 25937 /*Priceless Treasures*/, 25978 /*Entombed in Ice*/, 25979 /*Dealing with the Surge*/, 25997 /*Dark Iron Scheming*/, 26085 /*Rallying the Defenders*/, 26094 /*Striking Back*/, 26118 /*Seize the Ambassador*/, 26145 /*The Trogg Threat*/, 26205 /*A Job for the Multi-Bot*/, 26208 /*The Fight Continues*/, 26222 /*Scrounging for Parts*/, 26264 /*What's Left Behind*/, 26265 /*Dealing with the Fallout*/, 26331 /*Crushcog's Minions*/, 26342 /*Paint it Black*/, 26485 /*Snapjaws, Lad!*/, 26486 /*99 Bottles of Booze on the Beach*/, 26498 /*Death to the Vilebranch*/, 26516 /*It's Ours Now*/, 26525 /*Venomous Secrets*/, 26528 /*The Eye of Shadra*/, 26529 /*The Fang of Shadra*/, 26729 /*Water Elementals*/, 26730 /*You Can Take the Murloc Out of the Ocean...*/, 26765 /*Return to Corporal Kaleb*/, 26927 /*Suddenly, Murlocs!*/, 26929 /*A Load of Croc*/, 27026 /*Defcon: Bobcat*/, 27116 /*The Winds of Loch Modan*/, 27159 /*Scourge First... Horde Later*/, 27161 /*The Endless Flow*/, 27173 /*This Is Our Army*/, 27206 /*Alas, Andorhal*/, 27210 /*Traitors Among Us*/, 27212 /*Discrediting the Deserters*/, 27217 /*Thresher Oil*/, 27220 /*Nat's Bargain*/, 27242 /*Raptor Captor*/, 27243 /*Unleash the Raptors*/, 27245 /*Prisoners of the Grimtotems*/, 27252 /*The Black Shield*/, 27316 /*The Rattle of Bones*/, 27357 /*The Captive Bride*/, 27426 /*Confirming the Suspicion*/, 27427 /*Arms of the Grimtotems*/, 27792 /*All's Fair in Love, War, and Archaeology*/, 27823 /*A Dwarf's Got Needs*/, 27824 /*The Good Stuff*/, 28184 /*Chiselgrip, the Heart of the Steppes*/, 28245 /*Grunt Work*/, 28286 /*Enough Damage For One Day*/, 28868 /*The View from Down Here*/, 29155 /*A Shiny Reward*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (123 /*The Collector*/, 384 /*Beer Basted Boar Ribs*/, 432 /*Those Blasted Troggs!*/, 433 /*The Public Servant*/, 578 /*The Stone of the Tides*/, 601 /*Water Elementals*/, 930 /*The Glowing Fruit*/, 1010 /*Bathran's Hair*/, 1016 /*Retaking Mystral Lake*/, 1026 /*Search the Bole*/, 1027 /*Playing Possum*/, 1045 /*A New Adornment*/, 1222 /*Stinky's Escape*/, 9474 /*The Mark of the Lightbringer*/, 9517 /*A Shameful Waste*/, 9799 /*Botanical Legwork*/, 11126 /*Traitors Among Us*/, 11128 /*Propaganda War*/, 11137 /*[DEPRECATED]Defias in Dustwallow?*/, 11209 /*[DEPRECATED]Nat's Bargain*/, 12133 /*Smash the Pumpkin*/, 13510 /*Timely Arrival*/, 13526 /*The Bear's Paw*/, 13542 /*Against the Wind*/, 13544 /*The Bear's Blessing*/, 13545 /*Cleansing the Afflicted*/, 13572 /*Jadefire Braziers*/, 13650 /*Keep Your Hands Off The Goods!*/, 13766 /*Closure is Only Natural*/, 13885 /*In Defense of Darkshore*/, 13907 /*Sweeping Clean the Ruins*/, 13910 /*A New Home*/, 24474 /*First Things First: We're Gonna Need Some Beer*/, 24475 /*All the Other Stuff*/, 25084 /*A Growing Threat*/, 25085 /*Mangletooth*/, 25486 /*The Grimtotem are Coming*/, 25532 /*Pirate Accuracy Increasing*/, 25542 /*Circle the Wagons... er, Boats*/, 25667 /*Culling the Wendigos*/, 25668 /*Pilfered Supplies*/, 25716 /*Cultists at our Doorstep*/, 25756 /*Get Zherin!*/, 25790 /*Back to Crazzle*/, 25792 /*Pushing Forward*/, 25817 /*The Cursed Crew*/, 25819 /*The Eye of Paleth*/, 25840 /*Eliminate the Resistance*/, 25869 /*Grimtotem in the Post*/, 25905 /*Rams on the Lam*/, 25932 /*It's Raid Night Every Night*/, 25937 /*Priceless Treasures*/, 25978 /*Entombed in Ice*/, 25979 /*Dealing with the Surge*/, 25997 /*Dark Iron Scheming*/, 26085 /*Rallying the Defenders*/, 26094 /*Striking Back*/, 26118 /*Seize the Ambassador*/, 26145 /*The Trogg Threat*/, 26205 /*A Job for the Multi-Bot*/, 26208 /*The Fight Continues*/, 26222 /*Scrounging for Parts*/, 26264 /*What's Left Behind*/, 26265 /*Dealing with the Fallout*/, 26331 /*Crushcog's Minions*/, 26342 /*Paint it Black*/, 26485 /*Snapjaws, Lad!*/, 26486 /*99 Bottles of Booze on the Beach*/, 26498 /*Death to the Vilebranch*/, 26516 /*It's Ours Now*/, 26525 /*Venomous Secrets*/, 26528 /*The Eye of Shadra*/, 26529 /*The Fang of Shadra*/, 26729 /*Water Elementals*/, 26730 /*You Can Take the Murloc Out of the Ocean...*/, 26765 /*Return to Corporal Kaleb*/, 26927 /*Suddenly, Murlocs!*/, 26929 /*A Load of Croc*/, 27026 /*Defcon: Bobcat*/, 27116 /*The Winds of Loch Modan*/, 27159 /*Scourge First... Horde Later*/, 27161 /*The Endless Flow*/, 27173 /*This Is Our Army*/, 27206 /*Alas, Andorhal*/, 27210 /*Traitors Among Us*/, 27212 /*Discrediting the Deserters*/, 27217 /*Thresher Oil*/, 27220 /*Nat's Bargain*/, 27242 /*Raptor Captor*/, 27243 /*Unleash the Raptors*/, 27245 /*Prisoners of the Grimtotems*/, 27252 /*The Black Shield*/, 27316 /*The Rattle of Bones*/, 27357 /*The Captive Bride*/, 27426 /*Confirming the Suspicion*/, 27427 /*Arms of the Grimtotems*/, 27792 /*All's Fair in Love, War, and Archaeology*/, 27823 /*A Dwarf's Got Needs*/, 27824 /*The Good Stuff*/, 28184 /*Chiselgrip, the Heart of the Steppes*/, 28245 /*Grunt Work*/, 28286 /*Enough Damage For One Day*/, 28868 /*The View from Down Here*/, 29155 /*A Shiny Reward*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='I could really use a hand here, $n. With the town under siege, it''s been hard to get supplies. My tools were being delivered from Goldshire by wagon but the bridge was blown out. We put the tools in a boat but the orcs hit it with a catapult. Just my luck, my toolbox sank right to the bottom of the lake.$b$bRetrieve my toolbox, $n, and I''ll make it worth your while.', `VerifiedBuild`=19034 WHERE `ID`=125; -- The Lost Tools UPDATE `quest_template` SET `QuestDescription`='$n, the gnolls are still out there. I can hear their baying as they hunt in the hills above Lakeshire. And one cry is louder than the rest - Yowler, their leader.$B$BKill Yowler and send his pack scattering! Bring me his paw as proof.$B$BAnd be careful, this gnoll is their leader for a reason. He is no Mongrel...', `VerifiedBuild`=19034 WHERE `ID`=126; -- Howling in the Hills UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='We need to discover the location of the Defias hideout. $n, my scout reports that a Defias Messenger has been seen on the roads between Moonbrook, the Gold Coast Quarry and the Jangolode Mine. I want you to capture him. If he resists, kill him and bring me whatever he is carrying.', `VerifiedBuild`=19034 WHERE `ID`=142; -- The Defias Brotherhood -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `VerifiedBuild`=19034 WHERE `ID` IN (152 /*The Coast Isn't Clear*/, 228 /*Mor'Ladim*/, 421 /*Prove Your Worth*/, 423 /*Arugal's Folly*/, 437 /*The Dead Fields*/, 447 /*A Recipe For Death*/, 459 /*Demonic Thieves*/, 476 /*Gnarlpine Corruption*/, 479 /*Ambermill Investigations*/, 483 /*The Relics of Wakening*/, 487 /*The Road to Darnassus*/, 489 /*Seek Redemption!*/, 530 /*A Husband's Revenge*/, 834 /*Winds in the Desert*/, 866 /*Root Samples*/, 888 /*[DEPRICATED]Stolen Booty*/, 895 /*WANTED: Cap'n Garvey*/, 917 /*Webwood Egg*/, 918 /*Timberling Seeds*/, 928 /*Teldrassil: Passing Awareness*/, 938 /*Mist*/, 945 /*Therylune's Escape*/, 953 /*The Fall of Ameth'Aran*/, 958 /*Tools of the Highborne*/, 959 /*Trouble at the Docks*/, 966 /*The Tower of Althalaxx*/, 977 /*[DEPRECATED]Are We There, Yeti?*/, 983 /*Buzzbox 827*/, 1002 /*Buzzbox 323*/, 1003 /*Buzzbox 525*/, 1096 /*Gerenzo Wrenchwhistle*/, 1104 /*Salt Flat Venom*/, 1105 /*Hardened Shells*/, 1110 /*Rocket Car Parts*/, 1175 /*A Bump in the Road*/, 1176 /*Load Lightening*/, 1187 /*Razzeric's Tweaking*/, 1203 /*Jarl Needs a Blade*/, 1690 /*Wastewander Justice*/, 1691 /*More Wastewander Justice*/, 2098 /*Gyromast's Retrieval*/, 2770 /*Gahz'rilla*/, 2846 /*Tiara of the Deep*/, 2865 /*Scarab Shells*/, 2880 /*Troll Necklace Bounty*/, 2932 /*Grim Message*/, 3783 /*[DEPRECATED]Are We There, Yeti?*/, 4123 /*The Heart of the Mountain*/, 4134 /*Lost Thunderbrew Recipe*/, 4289 /*The Apes of Un'Goro*/, 4296 /*Tablet of the Seven*/, 4502 /*Volcanic Activity*/, 4726 /*Broodling Essence*/, 5082 /*[DEPRECATED]Threat of the Winterfall*/, 5529 /*Plagued Hatchlings*/, 5536 /*A Land Filled with Hatred*/, 5741 /*Sceptre of Light*/, 5761 /*Slaying the Beast*/, 5762 /*Hemet Nesingwary Jr.*/, 5943 /*Gizelton Caravan*/, 6022 /*To Kill With Purpose*/, 6027 /*Book of the Ancients*/, 6134 /*Ghost-o-plasm Round Up*/, 7723 /*Curse These Fat Fingers*/, 7724 /*Fiery Menace!*/, 7727 /*Incendosaurs? Whateverosaur is More Like It*/, 8277 /*Deadly Desert Venom*/, 8279 /*The Twilight Lexicon*/, 8280 /*Securing the Supply Lines*/, 8313 /*Sharing the Knowledge*/, 8330 /*Solanian's Belongings*/, 8365 /*Pirate Hats Ahoy!*/, 8470 /*Deadwood Ritual Totem*/, 9135 /*Return to Sathiel*/, 10975 /*Purging the Chambers of Bash'ir*/, 11158 /*[DEPRECATED]Bloodfen Feathers*/, 11159 /*[DEPRECATED]Spirits of Stonemaul Hold*/, 11169 /*[DEPRECATED]The Grimtotem Weapon*/, 11184 /*[DEPRECATED]WANTED: Goreclaw the Ravenous*/, 13421 /*Remember Everfrost!*/, 13504 /*Shatterspear Laborers*/, 13505 /*Remnants of the Highborne*/, 13506 /*Reason to Worry*/, 13507 /*Denying Manpower*/, 13508 /*Swift Response*/, 13509 /*War Supplies*/, 13513 /*On the Brink*/, 13518 /*The Last Wave of Survivors*/, 13520 /*The Boon of the Seas*/, 13521 /*Buzzbox 413*/, 13522 /*Threat from the Water*/, 13523 /*Power Over the Tides*/, 13527 /*No Accounting for Taste*/, 13528 /*Buzzbox 723*/, 13537 /*A Taste for Grouper*/, 13554 /*A Cure In The Dark*/, 13557 /*Bearer of Good Fortune*/, 13560 /*An Ocean Not So Deep*/, 13561 /*Solace for the Highborne*/, 13562 /*The Final Flame of Bashal'Aran*/, 13564 /*A Lost Companion*/, 13569 /*The Ritual Bond*/, 13570 /*Remembrance of Auberdine*/, 13576 /*Mutual Aid*/, 13578 /*Aroom's Farewell*/, 13580 /*Soothing the Elements*/, 13588 /*The Eye of All Storms*/, 13590 /*The Front Line*/, 13598 /*Unsavory Remedies*/, 13798 /*Rain of Destruction*/, 13831 /*A Troubling Prescription*/, 13880 /*Hot Lava*/, 13884 /*Put Out The Fire*/, 13892 /*Leave No Tracks*/, 13912 /*Swamped Secrets*/, 13946 /*Nature's Reprisal*/, 13970 /*Animal Services*/, 13973 /*The Grol'dom Militia*/, 13992 /*A Little Diversion*/, 14068 /*Waptor Twapping*/, 14109 /*The New You*/, 14110 /*The New You*/, 14113 /*Life of the Party*/, 14117 /*The Eyes of Ashenvale*/, 14118 /*Venison for the Troops*/, 14123 /*Waltz Right In*/, 14124 /*Liberate the Kaja'mite*/, 14128 /*Return of the Highborne?*/, 14153 /*Life of the Party*/, 14165 /*Stone Cold*/, 14197 /*A Quota to Meet*/, 14201 /*A Thousand Stories in the Sand*/, 14202 /*Survey the Lakeshore*/, 14216 /*Mystery of the Sarcen Stone*/, 14223 /*Peace of Mind*/, 14232 /*Ears Are Burning*/, 14246 /*Early Adoption*/, 14251 /*New Beginnings*/, 14252 /*Good Gold For Bad Tail*/, 14253 /*Fletch Me Some Plumage!*/, 14264 /*Wetter Than Wet*/, 14271 /*Report to Twocrush*/, 14296 /*Watch Your Step*/, 14297 /*Pro-liberation*/, 14300 /*The Trial of Fire*/, 14304 /*Blood Theory*/, 14305 /*A Time to Reap*/, 14306 /*Pulling Weeds*/, 14307 /*Stubborn Winds*/, 14309 /*Calming the Kodo*/, 14310 /*Segmentation Fault: Core Dumped*/, 14316 /*Cenarion Property*/, 14325 /*Will Work For Food*/, 14329 /*Not So Fast!*/, 14332 /*Time For Change*/, 14334 /*Blubbergut*/, 14335 /*Chipping In*/, 14339 /*Delivery Device*/, 14342 /*Infernal Encroachment*/, 14346 /*Cleansing Our Crevasse*/, 14362 /*Ears Are Burning*/, 14363 /*You'll Know It When You See It*/, 14370 /*Mysterious Azsharite*/, 14371 /*A Gigantic Snack*/, 14373 /*Infernal Encroachment*/, 14374 /*Portals of the Legion*/, 14378 /*Hunting Brendol*/, 14379 /*Rock Lobstrock!*/, 14381 /*Cleansing Our Crevasse*/, 14385 /*Azsharite Experiment Number One*/, 14391 /*Turning the Tables*/, 14393 /*Into the Fray!*/, 14425 /*The First Quest*/, 14431 /*The Blackmaw Scar*/, 14433 /*Diplomacy by Another Means*/, 14491 /*The Restless Earth*/, 24478 /*The Trial of Frost*/, 24479 /*The Trial of Shadow*/, 24502 /*Necessary Roughness*/, 24529 /*Bad to Worse*/, 24539 /*When Plants Attack*/, 24542 /*A Curious Bloom*/, 24546 /*A Line in the Dirt*/, 24552 /*Lion's Pride*/, 24565 /*Biological Intervention*/, 24566 /*Sowing a Solution*/, 24570 /*Adder Subtraction*/, 24571 /*Lashvine Seeds*/, 24574 /*To Harvest Chaos*/, 24601 /*The Nightmare Scar*/, 24606 /*Blood of the Barrens*/, 24618 /*Claim the Battle Scar*/, 24619 /*Parts-is-Parts*/, 24620 /*Hearts-is-Hearts*/, 24624 /*Mercy for the Lost*/, 24631 /*Flightmare*/, 24653 /*Echoes of Agamaggan*/, 24671 /*Cluster Cluck*/, 24684 /*A Weezil in the Henhouse*/, 24685 /*Dwarf Fortress*/, 24704 /*The Evil Dragons of Un'Goro Crater*/, 24708 /*The Fossil-Finder 3000*/, 24715 /*Repairing A-Me 01*/, 24719 /*Claws of White*/, 24721 /*The Eastern Pylon*/, 24723 /*The Western Pylon*/, 24730 /*Roll the Bones*/, 24731 /*The Fare of Lar'korwi*/, 24735 /*A Little Help From My Friends*/, 24736 /*Shizzle's Flyer*/, 24740 /*Volcanic Activity*/, 24741 /*Trading Up*/, 24742 /*Finding the Source*/, 24751 /*The Basics: Hitting Things*/, 24753 /*A Rough Start*/, 24754 /*Proving Pit*/, 24759 /*The Basics: Hitting Things*/, 24761 /*A Rough Start*/, 24762 /*Proving Pit*/, 24771 /*The Basics: Hitting Things*/, 24773 /*A Rough Start*/, 24774 /*Proving Pit*/, 24777 /*The Basics: Hitting Things*/, 24779 /*A Rough Start*/, 24780 /*Proving Pit*/, 24783 /*The Basics: Hitting Things*/, 24785 /*A Rough Start*/, 24786 /*Proving Pit*/, 24816 /*Who's Top of the Food Chain Now?*/, 24824 /*The Disturbed Earth*/, 24859 /*Naga Hide*/, 24862 /*Running the Gauntlet*/, 24863 /*Breaking the Siege*/, 24864 /*Irresistible Pool Pony*/, 24943 /*Re-Take the Courtyard*/, 24944 /*Back in the Fight*/, 24946 /*Rockin' Powder*/, 24949 /*Booty Duty*/, 24954 /*Children of a Turtle God*/, 24955 /*Un-Chartered*/, 24957 /*Get The Centipaarty Started*/, 24963 /*Maul 'Em With Kindness*/, 25000 /*Teegan's People*/, 25002 /*Scavenged*/, 25008 /*Filthy Animals*/, 25015 /*Make 'em Squeal*/, 25017 /*Ancient Obstacles*/, 25022 /*A Failure to Communicate*/, 25024 /*Repel the Paratroopers*/, 25028 /*Trouble From the Ground Up*/, 25037 /*Crab Fishin'*/, 25042 /*Marching On Our Stomachs*/, 25043 /*Fields of Blood*/, 25045 /*A Line in the Dirt*/, 25059 /*The Taurajo Briefs*/, 25068 /*The Crumbling Past*/, 25079 /*Powder Play*/, 25080 /*Batteries Not Yet Included*/, 25102 /*No Bull*/, 25110 /*Kaja'Cola Gives You IDEAS! (TM)*/, 25118 /*Looking for Lurkers*/, 25153 /*Bael'dun Rescue*/, 25201 /*The Ultimate Footbomb Uniform*/, 25204 /*Release the Valves*/, 25211 /*Cleaning Hovel*/, 25214 /*Escape Velocity*/, 25230 /*More Than Illness*/, 25252 /*Rulers of Dire Maul*/, 25284 /*Feeding the Fear*/, 25336 /*Testing the Vessel*/, 25344 /*Ogre Abduction*/, 25349 /*Twisted Sisters*/, 25361 /*A New Cloak's Sheen*/, 25362 /*A Grim Discovery*/, 25363 /*War on the Woodpaw*/, 25373 /*The Hilltop Threat*/, 25375 /*Taming The Tamers*/, 25394 /*More Than Illness*/, 25403 /*Ogre Abduction*/, 25406 /*Gordok Guards*/, 25409 /*Forces of Nature: Hippogryphs*/, 25410 /*Forces of Nature: Treants*/, 25420 /*Ancient Obstacles*/, 25450 /*Improved Quality*/, 25453 /*Improved Quality*/, 25465 /*Still With The Zapped Giants*/, 25466 /*Even More Fuel for the Zapping*/, 25567 /*Hammering It Out*/, 25568 /*Hammering It Out*/, 25569 /*Hammering It Out*/, 25570 /*Hammering It Out*/, 25605 /*Hammering It Out*/, 25606 /*Hammering It Out*/, 25672 /*Carcass Collection*/, 25703 /*Atrocities*/, 25705 /*False Idols*/, 25707 /*The Future of the Rockpool*/, 25722 /*Sedimentary, My Dear*/, 25723 /*Thresh Out of Luck*/, 25734 /*Down In Thelgen Rock*/, 25735 /*Incendicite Ore*/, 25800 /*When Life Gives You Crabs*/, 25820 /*A Mother's Worries*/, 25850 /*Strike the Earth!*/, 25853 /*Tooling Around*/, 25855 /*Gizmos and Gadgets*/, 25856 /*Crocolisk Hides*/, 25864 /*Dinosaur Crisis*/, 25865 /*The Mosshide Job*/, 25926 /*Mired in Hatred*/, 25927 /*The Threat of Flame*/, 25939 /*For Peat's Sake*/, 26003 /*Lessons from the Lost Isles*/, 26027 /*Call to Arms*/, 26037 /*Trelane's Defenses*/, 26045 /*I Got Your Parts Right Here...*/, 26046 /*Between a Rock and a Hard Place*/, 26047 /*And That's Why They Call Them Peons...*/, 26060 /*Da Voodoo: Stormer Heart*/, 26063 /*The Queen and Her Court*/, 26066 /*Reinforcements...*/, 26078 /*Extinguish the Fires*/, 26093 /*Northfold Manor*/, 26120 /*The Crazed Dragonmaw*/, 26238 /*The Savage Dwarves*/, 26240 /*Stomp To My Beat*/, 26269 /*The Green Hills of Stranglethorn*/, 26298 /*Hunt for Yenniku*/, 26301 /*Speaking with Nezzliok*/, 26306 /*Start Taking Back*/, 26307 /*Death to the Vilebranch*/, 26308 /*It's Ours Now*/, 26310 /*All That Skitters*/, 26343 /*Supply and Demand*/, 26344 /*Some Assembly Required*/, 26357 /*Faces of Evil*/, 26363 /*Summit of Fate*/, 26367 /*Ongo'longo's Revenge*/, 26368 /*Venomous Secrets*/, 26381 /*The Eye of Shadra*/, 26387 /*Starvation Diet*/, 26396 /*Return to Argus*/, 26406 /*The Fang of Shadra*/, 26429 /*Crush the Witherbark*/, 26462 /*The Wicked Revantusk*/, 26509 /*An Unwelcome Guest*/, 26510 /*We Must Prepare!*/, 26515 /*Ongo'longo's Revenge*/, 26517 /*Summit of Fate*/, 26521 /*Faces of Evil*/, 26523 /*All That Skitters*/, 26524 /*Dark Vessels*/, 26634 /*The Bane of Many A Pirate*/, 26636 /*Bravo Company Field Kit: Camouflage*/, 26638 /*Hunting the Hunters*/, 26641 /*Can't Make An Omelette Without...*/, 26645 /*The Night Watch*/, 26647 /*Ol' Blasty*/, 26665 /*Call of Booty*/, 26695 /*Prepare for Takeoff*/, 26697 /*The Final Voyage of the Brashtide*/, 26707 /*A Deadly Vine*/, 26761 /*Threat to the Kingdom*/, 26787 /*Bear In Mind*/, 26789 /*You no take axe!*/, 26846 /*A Nasty Exploit*/, 26956 /*I Ain't Sayin' You a Gourd-Digger...*/, 26992 /*Agony Abounds*/, 27000 /*Learning the Ropes*/, 27001 /*This Means WAR (Wild Arachnid Roundup)*/, 27011 /*Redpine Thievery*/, 27012 /*A Gnoll's Resolve*/, 27013 /*Too Close for Comfort*/, 27030 /*Foxtails By The Handful*/, 27031 /*Wing Nut*/, 27035 /*Standing Up*/, 27037 /*Vyrin's Revenge*/, 27073 /*Give 'em Hell!*/, 27082 /*Playing Dirty*/, 27151 /*Taelan Fordring's Legacy*/, 27153 /*The Good People of Hearthglen*/, 27155 /*Turning Yourself In*/, 27156 /*It's About Time!*/, 27186 /*Jarl Needs a Blade*/, 27339 /*The Reagent Thief*/, 27340 /*Direhorn Raiders*/, 27407 /*Bloodfen Feathers*/, 27410 /*Spirits of Stonemaul Hold*/, 27412 /*WANTED: Goreclaw the Ravenous*/, 27413 /*Catch a Dragon by the Tail*/, 27534 /*Augustus' Receipt Book*/, 28058 /*Look at the Size of It!*/, 28715 /*Demonic Thieves*/, 28829 /*Razor Beak and Antlers Pointy*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `VerifiedBuild`=19034 WHERE `ID` IN (152 /*The Coast Isn't Clear*/, 189 /*Bloodscalp Ears*/, 209 /*Skullsplitter Tusks*/, 228 /*Mor'Ladim*/, 421 /*Prove Your Worth*/, 423 /*Arugal's Folly*/, 437 /*The Dead Fields*/, 447 /*A Recipe For Death*/, 459 /*Demonic Thieves*/, 476 /*Gnarlpine Corruption*/, 479 /*Ambermill Investigations*/, 483 /*The Relics of Wakening*/, 487 /*The Road to Darnassus*/, 489 /*Seek Redemption!*/, 530 /*A Husband's Revenge*/, 605 /*Singing Blue Shards*/, 609 /*Voodoo Dues*/, 621 /*Zanzil's Secret*/, 834 /*Winds in the Desert*/, 866 /*Root Samples*/, 888 /*[DEPRICATED]Stolen Booty*/, 895 /*WANTED: Cap'n Garvey*/, 917 /*Webwood Egg*/, 918 /*Timberling Seeds*/, 928 /*Teldrassil: Passing Awareness*/, 938 /*Mist*/, 945 /*Therylune's Escape*/, 953 /*The Fall of Ameth'Aran*/, 958 /*Tools of the Highborne*/, 959 /*Trouble at the Docks*/, 966 /*The Tower of Althalaxx*/, 977 /*[DEPRECATED]Are We There, Yeti?*/, 983 /*Buzzbox 827*/, 1002 /*Buzzbox 323*/, 1003 /*Buzzbox 525*/, 1096 /*Gerenzo Wrenchwhistle*/, 1104 /*Salt Flat Venom*/, 1105 /*Hardened Shells*/, 1110 /*Rocket Car Parts*/, 1175 /*A Bump in the Road*/, 1176 /*Load Lightening*/, 1182 /*Goblin Sponsorship*/, 1187 /*Razzeric's Tweaking*/, 1203 /*Jarl Needs a Blade*/, 1690 /*Wastewander Justice*/, 1691 /*More Wastewander Justice*/, 2098 /*Gyromast's Retrieval*/, 2770 /*Gahz'rilla*/, 2846 /*Tiara of the Deep*/, 2865 /*Scarab Shells*/, 2880 /*Troll Necklace Bounty*/, 2932 /*Grim Message*/, 3783 /*[DEPRECATED]Are We There, Yeti?*/, 4123 /*The Heart of the Mountain*/, 4134 /*Lost Thunderbrew Recipe*/, 4289 /*The Apes of Un'Goro*/, 4296 /*Tablet of the Seven*/, 4502 /*Volcanic Activity*/, 4726 /*Broodling Essence*/, 5082 /*[DEPRECATED]Threat of the Winterfall*/, 5529 /*Plagued Hatchlings*/, 5536 /*A Land Filled with Hatred*/, 5741 /*Sceptre of Light*/, 5761 /*Slaying the Beast*/, 5762 /*Hemet Nesingwary Jr.*/, 5943 /*Gizelton Caravan*/, 6022 /*To Kill With Purpose*/, 6027 /*Book of the Ancients*/, 6134 /*Ghost-o-plasm Round Up*/, 7723 /*Curse These Fat Fingers*/, 7724 /*Fiery Menace!*/, 7727 /*Incendosaurs? Whateverosaur is More Like It*/, 8277 /*Deadly Desert Venom*/, 8279 /*The Twilight Lexicon*/, 8280 /*Securing the Supply Lines*/, 8313 /*Sharing the Knowledge*/, 8330 /*Solanian's Belongings*/, 8365 /*Pirate Hats Ahoy!*/, 8470 /*Deadwood Ritual Totem*/, 9135 /*Return to Sathiel*/, 10975 /*Purging the Chambers of Bash'ir*/, 11158 /*[DEPRECATED]Bloodfen Feathers*/, 11159 /*[DEPRECATED]Spirits of Stonemaul Hold*/, 11169 /*[DEPRECATED]The Grimtotem Weapon*/, 11184 /*[DEPRECATED]WANTED: Goreclaw the Ravenous*/, 13421 /*Remember Everfrost!*/, 13504 /*Shatterspear Laborers*/, 13505 /*Remnants of the Highborne*/, 13506 /*Reason to Worry*/, 13507 /*Denying Manpower*/, 13508 /*Swift Response*/, 13509 /*War Supplies*/, 13513 /*On the Brink*/, 13518 /*The Last Wave of Survivors*/, 13520 /*The Boon of the Seas*/, 13521 /*Buzzbox 413*/, 13522 /*Threat from the Water*/, 13523 /*Power Over the Tides*/, 13527 /*No Accounting for Taste*/, 13528 /*Buzzbox 723*/, 13537 /*A Taste for Grouper*/, 13554 /*A Cure In The Dark*/, 13557 /*Bearer of Good Fortune*/, 13560 /*An Ocean Not So Deep*/, 13561 /*Solace for the Highborne*/, 13562 /*The Final Flame of Bashal'Aran*/, 13564 /*A Lost Companion*/, 13569 /*The Ritual Bond*/, 13570 /*Remembrance of Auberdine*/, 13576 /*Mutual Aid*/, 13578 /*Aroom's Farewell*/, 13580 /*Soothing the Elements*/, 13588 /*The Eye of All Storms*/, 13590 /*The Front Line*/, 13598 /*Unsavory Remedies*/, 13798 /*Rain of Destruction*/, 13831 /*A Troubling Prescription*/, 13880 /*Hot Lava*/, 13884 /*Put Out The Fire*/, 13892 /*Leave No Tracks*/, 13912 /*Swamped Secrets*/, 13946 /*Nature's Reprisal*/, 13970 /*Animal Services*/, 13973 /*The Grol'dom Militia*/, 13992 /*A Little Diversion*/, 14068 /*Waptor Twapping*/, 14109 /*The New You*/, 14110 /*The New You*/, 14113 /*Life of the Party*/, 14117 /*The Eyes of Ashenvale*/, 14118 /*Venison for the Troops*/, 14123 /*Waltz Right In*/, 14124 /*Liberate the Kaja'mite*/, 14128 /*Return of the Highborne?*/, 14153 /*Life of the Party*/, 14165 /*Stone Cold*/, 14197 /*A Quota to Meet*/, 14201 /*A Thousand Stories in the Sand*/, 14202 /*Survey the Lakeshore*/, 14216 /*Mystery of the Sarcen Stone*/, 14223 /*Peace of Mind*/, 14232 /*Ears Are Burning*/, 14246 /*Early Adoption*/, 14251 /*New Beginnings*/, 14252 /*Good Gold For Bad Tail*/, 14253 /*Fletch Me Some Plumage!*/, 14264 /*Wetter Than Wet*/, 14271 /*Report to Twocrush*/, 14296 /*Watch Your Step*/, 14297 /*Pro-liberation*/, 14300 /*The Trial of Fire*/, 14304 /*Blood Theory*/, 14305 /*A Time to Reap*/, 14306 /*Pulling Weeds*/, 14307 /*Stubborn Winds*/, 14309 /*Calming the Kodo*/, 14310 /*Segmentation Fault: Core Dumped*/, 14316 /*Cenarion Property*/, 14325 /*Will Work For Food*/, 14329 /*Not So Fast!*/, 14332 /*Time For Change*/, 14334 /*Blubbergut*/, 14335 /*Chipping In*/, 14339 /*Delivery Device*/, 14342 /*Infernal Encroachment*/, 14346 /*Cleansing Our Crevasse*/, 14362 /*Ears Are Burning*/, 14363 /*You'll Know It When You See It*/, 14370 /*Mysterious Azsharite*/, 14371 /*A Gigantic Snack*/, 14373 /*Infernal Encroachment*/, 14374 /*Portals of the Legion*/, 14378 /*Hunting Brendol*/, 14379 /*Rock Lobstrock!*/, 14381 /*Cleansing Our Crevasse*/, 14385 /*Azsharite Experiment Number One*/, 14391 /*Turning the Tables*/, 14393 /*Into the Fray!*/, 14425 /*The First Quest*/, 14431 /*The Blackmaw Scar*/, 14433 /*Diplomacy by Another Means*/, 14491 /*The Restless Earth*/, 24478 /*The Trial of Frost*/, 24479 /*The Trial of Shadow*/, 24502 /*Necessary Roughness*/, 24529 /*Bad to Worse*/, 24539 /*When Plants Attack*/, 24542 /*A Curious Bloom*/, 24546 /*A Line in the Dirt*/, 24552 /*Lion's Pride*/, 24565 /*Biological Intervention*/, 24566 /*Sowing a Solution*/, 24570 /*Adder Subtraction*/, 24571 /*Lashvine Seeds*/, 24574 /*To Harvest Chaos*/, 24601 /*The Nightmare Scar*/, 24606 /*Blood of the Barrens*/, 24618 /*Claim the Battle Scar*/, 24619 /*Parts-is-Parts*/, 24620 /*Hearts-is-Hearts*/, 24624 /*Mercy for the Lost*/, 24631 /*Flightmare*/, 24653 /*Echoes of Agamaggan*/, 24671 /*Cluster Cluck*/, 24684 /*A Weezil in the Henhouse*/, 24685 /*Dwarf Fortress*/, 24704 /*The Evil Dragons of Un'Goro Crater*/, 24708 /*The Fossil-Finder 3000*/, 24715 /*Repairing A-Me 01*/, 24719 /*Claws of White*/, 24721 /*The Eastern Pylon*/, 24723 /*The Western Pylon*/, 24730 /*Roll the Bones*/, 24731 /*The Fare of Lar'korwi*/, 24735 /*A Little Help From My Friends*/, 24736 /*Shizzle's Flyer*/, 24740 /*Volcanic Activity*/, 24741 /*Trading Up*/, 24742 /*Finding the Source*/, 24751 /*The Basics: Hitting Things*/, 24753 /*A Rough Start*/, 24754 /*Proving Pit*/, 24759 /*The Basics: Hitting Things*/, 24761 /*A Rough Start*/, 24762 /*Proving Pit*/, 24771 /*The Basics: Hitting Things*/, 24773 /*A Rough Start*/, 24774 /*Proving Pit*/, 24777 /*The Basics: Hitting Things*/, 24779 /*A Rough Start*/, 24780 /*Proving Pit*/, 24783 /*The Basics: Hitting Things*/, 24785 /*A Rough Start*/, 24786 /*Proving Pit*/, 24816 /*Who's Top of the Food Chain Now?*/, 24824 /*The Disturbed Earth*/, 24859 /*Naga Hide*/, 24862 /*Running the Gauntlet*/, 24863 /*Breaking the Siege*/, 24864 /*Irresistible Pool Pony*/, 24943 /*Re-Take the Courtyard*/, 24944 /*Back in the Fight*/, 24946 /*Rockin' Powder*/, 24949 /*Booty Duty*/, 24954 /*Children of a Turtle God*/, 24955 /*Un-Chartered*/, 24957 /*Get The Centipaarty Started*/, 24963 /*Maul 'Em With Kindness*/, 25000 /*Teegan's People*/, 25002 /*Scavenged*/, 25008 /*Filthy Animals*/, 25015 /*Make 'em Squeal*/, 25017 /*Ancient Obstacles*/, 25022 /*A Failure to Communicate*/, 25024 /*Repel the Paratroopers*/, 25028 /*Trouble From the Ground Up*/, 25037 /*Crab Fishin'*/, 25042 /*Marching On Our Stomachs*/, 25043 /*Fields of Blood*/, 25045 /*A Line in the Dirt*/, 25059 /*The Taurajo Briefs*/, 25068 /*The Crumbling Past*/, 25079 /*Powder Play*/, 25080 /*Batteries Not Yet Included*/, 25102 /*No Bull*/, 25110 /*Kaja'Cola Gives You IDEAS! (TM)*/, 25118 /*Looking for Lurkers*/, 25153 /*Bael'dun Rescue*/, 25201 /*The Ultimate Footbomb Uniform*/, 25204 /*Release the Valves*/, 25211 /*Cleaning Hovel*/, 25214 /*Escape Velocity*/, 25230 /*More Than Illness*/, 25252 /*Rulers of Dire Maul*/, 25284 /*Feeding the Fear*/, 25336 /*Testing the Vessel*/, 25344 /*Ogre Abduction*/, 25349 /*Twisted Sisters*/, 25361 /*A New Cloak's Sheen*/, 25362 /*A Grim Discovery*/, 25363 /*War on the Woodpaw*/, 25373 /*The Hilltop Threat*/, 25375 /*Taming The Tamers*/, 25394 /*More Than Illness*/, 25403 /*Ogre Abduction*/, 25406 /*Gordok Guards*/, 25409 /*Forces of Nature: Hippogryphs*/, 25410 /*Forces of Nature: Treants*/, 25420 /*Ancient Obstacles*/, 25450 /*Improved Quality*/, 25453 /*Improved Quality*/, 25465 /*Still With The Zapped Giants*/, 25466 /*Even More Fuel for the Zapping*/, 25567 /*Hammering It Out*/, 25568 /*Hammering It Out*/, 25569 /*Hammering It Out*/, 25570 /*Hammering It Out*/, 25605 /*Hammering It Out*/, 25606 /*Hammering It Out*/, 25672 /*Carcass Collection*/, 25703 /*Atrocities*/, 25705 /*False Idols*/, 25707 /*The Future of the Rockpool*/, 25722 /*Sedimentary, My Dear*/, 25723 /*Thresh Out of Luck*/, 25734 /*Down In Thelgen Rock*/, 25735 /*Incendicite Ore*/, 25800 /*When Life Gives You Crabs*/, 25820 /*A Mother's Worries*/, 25850 /*Strike the Earth!*/, 25853 /*Tooling Around*/, 25855 /*Gizmos and Gadgets*/, 25856 /*Crocolisk Hides*/, 25864 /*Dinosaur Crisis*/, 25865 /*The Mosshide Job*/, 25926 /*Mired in Hatred*/, 25927 /*The Threat of Flame*/, 25939 /*For Peat's Sake*/, 26003 /*Lessons from the Lost Isles*/, 26027 /*Call to Arms*/, 26037 /*Trelane's Defenses*/, 26045 /*I Got Your Parts Right Here...*/, 26046 /*Between a Rock and a Hard Place*/, 26047 /*And That's Why They Call Them Peons...*/, 26050 /*Goggle Boggle*/, 26055 /*Drowned Sorrows*/, 26060 /*Da Voodoo: Stormer Heart*/, 26063 /*The Queen and Her Court*/, 26066 /*Reinforcements...*/, 26078 /*Extinguish the Fires*/, 26093 /*Northfold Manor*/, 26120 /*The Crazed Dragonmaw*/, 26238 /*The Savage Dwarves*/, 26240 /*Stomp To My Beat*/, 26269 /*The Green Hills of Stranglethorn*/, 26298 /*Hunt for Yenniku*/, 26301 /*Speaking with Nezzliok*/, 26306 /*Start Taking Back*/, 26307 /*Death to the Vilebranch*/, 26308 /*It's Ours Now*/, 26310 /*All That Skitters*/, 26343 /*Supply and Demand*/, 26344 /*Some Assembly Required*/, 26357 /*Faces of Evil*/, 26363 /*Summit of Fate*/, 26367 /*Ongo'longo's Revenge*/, 26368 /*Venomous Secrets*/, 26381 /*The Eye of Shadra*/, 26387 /*Starvation Diet*/, 26396 /*Return to Argus*/, 26406 /*The Fang of Shadra*/, 26429 /*Crush the Witherbark*/, 26462 /*The Wicked Revantusk*/, 26509 /*An Unwelcome Guest*/, 26510 /*We Must Prepare!*/, 26515 /*Ongo'longo's Revenge*/, 26517 /*Summit of Fate*/, 26521 /*Faces of Evil*/, 26523 /*All That Skitters*/, 26524 /*Dark Vessels*/, 26634 /*The Bane of Many A Pirate*/, 26636 /*Bravo Company Field Kit: Camouflage*/, 26638 /*Hunting the Hunters*/, 26641 /*Can't Make An Omelette Without...*/, 26645 /*The Night Watch*/, 26647 /*Ol' Blasty*/, 26665 /*Call of Booty*/, 26695 /*Prepare for Takeoff*/, 26697 /*The Final Voyage of the Brashtide*/, 26707 /*A Deadly Vine*/, 26761 /*Threat to the Kingdom*/, 26787 /*Bear In Mind*/, 26789 /*You no take axe!*/, 26846 /*A Nasty Exploit*/, 26956 /*I Ain't Sayin' You a Gourd-Digger...*/, 26992 /*Agony Abounds*/, 27000 /*Learning the Ropes*/, 27001 /*This Means WAR (Wild Arachnid Roundup)*/, 27011 /*Redpine Thievery*/, 27012 /*A Gnoll's Resolve*/, 27013 /*Too Close for Comfort*/, 27030 /*Foxtails By The Handful*/, 27031 /*Wing Nut*/, 27035 /*Standing Up*/, 27037 /*Vyrin's Revenge*/, 27073 /*Give 'em Hell!*/, 27082 /*Playing Dirty*/, 27151 /*Taelan Fordring's Legacy*/, 27153 /*The Good People of Hearthglen*/, 27155 /*Turning Yourself In*/, 27156 /*It's About Time!*/, 27186 /*Jarl Needs a Blade*/, 27339 /*The Reagent Thief*/, 27340 /*Direhorn Raiders*/, 27407 /*Bloodfen Feathers*/, 27410 /*Spirits of Stonemaul Hold*/, 27412 /*WANTED: Goreclaw the Ravenous*/, 27413 /*Catch a Dragon by the Tail*/, 27534 /*Augustus' Receipt Book*/, 28058 /*Look at the Size of It!*/, 28715 /*Demonic Thieves*/, 28829 /*Razor Beak and Antlers Pointy*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=1, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (154 /*Return the Comb*/, 738 /*Find Agmond*/, 2398 /*The Lost Dwarves*/, 4542 /*Message to Freewind Post*/, 14157 /*Old Divisions*/, 14294 /*Time to Regroup*/, 14406 /*The Crowley Orchard*/, 25073 /*Sen'jin Village*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `QuestDescription`='Here is your thread, $n. It has a thousand uses, from binding evil spirits to sewing life into inanimate objects.', `VerifiedBuild`=19034 WHERE `ID`=157; -- Deliver the Thread UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (164 /*Deliveries to Sven*/, 291 /*The Reports*/, 333 /*Harlan Needs a Resupply*/, 360 /*Return to the Magistrate*/, 1184 /*Parts of the Swarm*/, 3568 /*Seeping Corruption*/, 4723 /*Beached Sea Creature*/, 4727 /*Beached Sea Turtle*/, 5881 /*Calling in the Reserves*/, 6281 /*Continue to Stormwind*/, 6323 /*Ride to the Undercity*/, 6362 /*Ride to Thunder Bluff*/, 6384 /*Ride to Orgrimmar*/, 6391 /*Ride to Ironforge*/, 14221 /*Never Surrender, Sometimes Retreat*/, 14293 /*Save Krennan Aranas*/, 14367 /*The Allens' Storm Cellar*/, 14400 /*I Can't Wear This*/, 14403 /*The Hayward Brothers*/, 24578 /*The Blackwald*/); @@ -4617,14 +4617,10 @@ UPDATE `quest_template` SET `AreaGroupID`=0, `AllowableRaces`=18875469, `Verifie UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (178 /*Theocritus' Retrieval*/, 337 /*An Old History Book*/, 1023 /*The Lost Gem*/, 9260 /*Investigate the Scourge of Stormwind*/, 9261 /*Investigate the Scourge of Ironforge*/, 9262 /*Investigate the Scourge of Darnassus*/, 10752 /*Onward to Ashenvale*/, 12817 /*Investigate the Scourge of Exodar*/, 14410 /*The Wilds of Feralas*/, 25839 /*The Ultrasafe Personnel Launcher*/, 26402 /*General Shandris Feathermoon*/, 26548 /*Out to the Front*/); UPDATE `quest_template` SET `QuestPackageID`=561, `RewardMoneyDifficulty`=5, `RewardChoiceItemID1`=0, `RewardChoiceItemID2`=0, `RewardChoiceItemID3`=0, `RewardChoiceItemID4`=0, `RewardChoiceItemQuantity1`=0, `RewardChoiceItemQuantity2`=0, `RewardChoiceItemQuantity3`=0, `RewardChoiceItemQuantity4`=0, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=182; -- The Troll Menace UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID` IN (188 /*Tiger Mastery*/, 197 /*Raptor Mastery*/, 26714 /*Darkblaze, Brood of the Worldbreaker*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID` IN (189 /*Bloodscalp Ears*/, 209 /*Skullsplitter Tusks*/, 605 /*Singing Blue Shards*/, 609 /*Voodoo Dues*/, 621 /*Zanzil's Secret*/, 1182 /*Goblin Sponsorship*/, 26050 /*Goggle Boggle*/, 26055 /*Drowned Sorrows*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=17100, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=193; -- Panther Mastery UPDATE `quest_template` SET `RewardBonusMoney`=13200, `VerifiedBuild`=19034 WHERE `ID` IN (196 /*Raptor Prowess*/, 25739 /*If the Horde Don't Get You...*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `RewardFactionValue2`=4294967293, `VerifiedBuild`=19034 WHERE `ID`=201; -- Investigate the Camp UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='You have proven yourself time and again, and your resourcefulness seems to rival even that of Kurzen himself. You may be the salvation of our band of rebels...if you can pit yourself against Kurzen and prevail!$B$BHe commands his men from deep within the Stockpile. You must enter that cave, brave through his defenders, and face Kurzen and his leaders.$B$BFarewell, $n. My hope, and the fate of my men, go with you.', `VerifiedBuild`=19034 WHERE `ID`=202; -- Colonel Kurzen UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `AreaGroupID`=0, `QuestDescription`='$n, you are a hunter worthy of our company. From the battlefields of Lordaeron to the deepest jungle, I have rarely witnessed such prowess with weaponry as you have demonstrated.$b$bYou have killed the ferocious Sin''Dall, the elusive Bhag''thera, and the treacherous Tethis. But the true prize is the head of King Bangalash. That white tiger is the reason I am here... yet still, he taunts me from his roost to the south. Kill King Bangalash and your hunting prowess is proven to be second to none.', `VerifiedBuild`=19034 WHERE `ID`=208; -- Big Game Hunter -UPDATE `quest_template` SET `RewardFactionValue2`=4294967293, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=210; -- Krazek's Cookery -UPDATE `quest_template` SET `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID` IN (213 /*Hostile Takeover*/, 580 /*Whiskey Slim's Lost Grog*/, 587 /*Up to Snuff*/, 600 /*Venture Company Mining*/, 604 /*The Bloodsail Buccaneers*/, 628 /*Excelsior*/, 662 /*Deep Sea Salvage*/, 664 /*Drowned Sorrows*/, 669 /*Sunken Treasure*/, 705 /*Pearl Diving*/, 2418 /*Power Stones*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='It''s no secret that the trademark of the Defias Gang is their Red Bandanas. But we''ve learned that the material from which these bandanas are made signifies the member''s rank.$b$bThat being said, I want you to eliminate as many high ranking Defias members as you can. The highest ranking members will undoubtedly be found in VanCleef''s secret hideout. When you''re done bring me 10 Red Silk Bandanas as proof of their deaths and I will reward you. Good luck, $n.', `VerifiedBuild`=19034 WHERE `ID`=214; -- Red Silk Bandanas UPDATE `quest_template` SET `AllowableRaces`=18875469, `QuestDescription`='Thank you for saving me, $n. I know how this looks, but...allow me to explain.$B$BI was charged by Lieutenant Doren to re-enlist with Kurzen''s men, so that I might spy on them and bring sorely needed intelligence to the rebels. You saw here what I had thought would be my chance to infiltrate Kurzen''s Compound. I was wrong, and again, thanks for saving me.$B$BThis was a top secret mission, so you must tell no one. But if you speak with Doren he will explain.', `VerifiedBuild`=19034 WHERE `ID`=215; -- Jungle Secrets UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='The Thistlefur furbolgs are threatening our expansion! Thistlefur Village to our west blocks the way between us here and the Splintertree Post. It''s a path that would circumvent the village of Astranaar; without it, we give the Alliance an extra expansion path.$B$B$n, we must not allow... an expansion path gap!$B$BProceed to Thistlefur Village and thin out the furbolgs. You will be given compensation for this task, but more importantly you will be doing your duty for the Horde!', `VerifiedBuild`=19034 WHERE `ID`=216; -- Between a Rock and a Thistlefur @@ -4645,8 +4641,7 @@ UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Here''s you UPDATE `quest_template` SET `QuestDescription`='Here is the weapon against the fiend of which you spoke. You''re all ready, $n. Best of luck to you, and I look forward to your tale of glory!', `VerifiedBuild`=19034 WHERE `ID`=325; -- Armed and Ready UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='If you talk to anyone about wine, then you know we Gallinas sell the best wine in Stormwind. And we''re not far, still in the Trade District along the city''s lovely canals.$B$BHere, take this pamphlet. Bring it to my sister Suzetta at our shop for a complimentary bottle of the famous Dalaran Noir. You won''t regret it!', `VerifiedBuild`=19034 WHERE `ID`=332; -- Wine Shop Advert UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='My son Thurman is an apprentice at the Larson Clothiers, in the Mage''s Quarter. He was in a hurry today and forgot his shears and needles. I know a great $C like you must have important tasks at hand, but without his tools Thurman can''t do his apprentice work!$B$BPlease, $n. Can you take my son''s sewing kit to him? Larson Clothiers is one of two clothing shops in the Mage''s Quarter - it''s the one deeper in, near the Mage''s Tower.', `VerifiedBuild`=19034 WHERE `ID`=334; -- Package for Thurman -UPDATE `quest_template` SET `RewardFactionValue2`=4294967289, `VerifiedBuild`=19034 WHERE `ID` IN (348 /*Stranglethorn Fever*/, 3721 /*An OOX of Your Own*/, 9259 /*Traitor to the Bloodsail*/, 9266 /*Making Amends*/, 9267 /*Mending Old Wounds*/, 9268 /*War at Sea*/); -UPDATE `quest_template` SET `RewardBonusMoney`=37800, `FlagsEx`=8, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID`=351; -- Find OOX-17/TN! +UPDATE `quest_template` SET `RewardBonusMoney`=37800, `FlagsEx`=8, `VerifiedBuild`=19034 WHERE `ID`=351; -- Find OOX-17/TN! UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=6300, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=353; -- Stormpike's Delivery UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (356 /*Rear Guard Patrol*/, 368 /*A New Plague*/, 376 /*The Damned*/, 639 /*Sigil of Strom*/, 640 /*The Broken Sigil*/, 643 /*Sigil of Arathor*/, 844 /*Plainstrider Menace*/, 1270 /*Stinky's Escape*/, 5041 /*Supplies for the Crossroads*/, 8474 /*Old Whitebark's Pendant*/, 8886 /*Grimscale Pirates!*/, 8887 /*Captain Kelisendra's Lost Rutters*/, 8891 /*Abandoned Investigations*/, 8894 /*Cleaning up the Grounds*/, 9138 /*Suncrown Village*/, 9139 /*Goldenmist Village*/, 9146 /*Report to Captain Helios*/, 9150 /*Salvaging the Past*/, 9152 /*Tomber's Supplies*/, 9155 /*Down the Dead Scar*/, 9157 /*Forgotten Rituals*/, 9160 /*Investigate An'daroth*/, 9162 /*Hints of the Past*/, 9163 /*Into Occupied Territory*/, 9173 /*Retaking Windrunner Spire*/, 9176 /*The Twin Ziggurats*/, 9192 /*Trouble at the Underlight Mines*/, 9193 /*Investigate the Amani Catacombs*/, 9199 /*Troll Juju*/, 9207 /*Underlight Ore Samples*/, 9212 /*Escape from the Catacombs*/, 9214 /*Shadowpine Weaponry*/, 9275 /*A Little Dash of Seasoning*/, 9276 /*Attack on Zeb'Tela*/, 9315 /*Anok'suten*/, 9352 /*Darnassian Intrusions*/, 9431 /*A Different Approach*/, 9436 /*Bloodscalp Insight*/, 9437 /*Twilight of the Dawn Runner*/, 9443 /*The So-Called Mark of the Lightbringer*/, 11205 /*[DEPRECATED]Raze Direhorn Post!*/, 12155 /*Smash the Pumpkin*/, 13887 /*Venomhide Eggs*/, 14006 /*Read the Manual*/, 14019 /*Monkey Business*/, 14226 /*Trouble Under Foot*/, 14230 /*Manual Labor*/, 14236 /*Weed Whacker*/, 14238 /*Infrared = Infradead*/, 14241 /*Get to the Gyrochoppa!*/, 14249 /*Shear Will*/, 14250 /*Renewable Resource*/, 14261 /*Ice Cold*/, 14263 /*Waste of Thyme*/, 24603 /*Don't Stop Bereavin'*/, 24608 /*Mangletooth*/, 24975 /*Fields of Grief*/, 24976 /*Variety is the Spice of Death*/, 24978 /*Reaping the Reapers*/, 24980 /*The Scarlet Palisade*/, 24981 /*A Thorn in our Side*/, 24990 /*Darkhound Pounding*/, 24995 /*Off the Scales*/, 24996 /*Holland's Experiment*/, 24997 /*Graverobbers*/, 24999 /*Planting the Seed of Fear*/, 25009 /*At War With The Scarlet Crusade*/, 25051 /*Darkmist Extermination*/, 25056 /*Grisly Grizzlies*/, 25165 /*Never Trust a Big Barb and a Smile*/, 25167 /*Breaking the Chain*/, 25170 /*Cleaning Up the Coastline*/, 25179 /*Loss Reduction*/, 25189 /*Spirits Be Praised*/, 25190 /*Raggaran's Rage*/, 25192 /*Raggaran's Fury*/, 25193 /*Lost But Not Forgotten*/, 25194 /*Unbidden Visitors*/, 25205 /*The Wolf and The Kodo*/, 25206 /*Ignoring the Warnings*/, 25210 /*Signs of Change*/, 25232 /*The Burning Blade*/, 25260 /*Fizzled*/, 25367 /*Zukk'ash Infestation*/, 25487 /*The Grimtotem are Coming*/, 25526 /*In the Outhouse*/, 25543 /*Circle the Wagons... er, Boats*/, 25589 /*A Little Payback*/, 25610 /*Sunken Treasure*/, 25675 /*Ogre Combat*/, 25677 /*It's All Mine*/, 25678 /*Pick Your Fate*/, 25683 /*The Dreadmaul Furnace*/, 25687 /*Not Just Any Body*/, 25691 /*The Charred Granite of the Dark Portal*/, 25692 /*The Vile Blood of Demons*/, 25697 /*The Amulet of Allistarj*/, 25698 /*The Amulet of Sevine*/, 25791 /*Back to Riznek*/, 25870 /*Grimtotem in the Post*/, 25872 /*The Brave and the Bold*/, 26030 /*Sigil of Strom*/, 26031 /*Sigil of Thoradin*/, 26107 /*Raising Spirits*/, 26108 /*Guile of the Raptor*/, 26179 /*The Venture Co.*/, 26188 /*Mazzranache*/, 26211 /*Snapjaws, Mon!*/, 26223 /*Stalking the Stalkers*/, 26225 /*Pupellyverbos Port*/, 26279 /*The Defense of Grom'gol: Ogre Oppression*/, 26280 /*The Defense of Grom'gol: Murloc Menace*/, 26351 /*Mind Vision*/, 26359 /*See Raptor*/, 26433 /*The Holy Water of Clarity*/, 26487 /*Akiris by the Bundle*/, 26533 /*Zanzil's Secret*/, 26550 /*Backdoor Dealings*/, 26590 /*The Holy Water of Clarity*/, 26682 /*A Shambling Threat*/, 26921 /*Scourge First... Alliance Later*/, 26922 /*The Endless Flow*/, 26931 /*Foxes and Hounds*/, 26933 /*Foes Before Hoes*/, 26934 /*Latent Disease*/, 27144 /*The Reckoning*/, 27293 /*The Grimtotem Plot*/, 27296 /*Raze Direhorn Post!*/, 27311 /*No Weapons For You!*/, 27313 /*Darkcloud Grimtotem*/, 27317 /*The Rattle of Bones*/, 27358 /*The Captive Bride*/, 27878 /*Forcible Acquisition*/, 27882 /*It's Not About History, It's About Power*/, 28417 /*Done Nothing Wrong*/, 28418 /*Burning Vengeance*/, 28426 /*Chiselgrip, the Heart of the Steppes*/, 28441 /*Enough Damage For One Day*/, 28444 /*Latent Demons of the Land*/, 28445 /*A Heap of Delicious Worg*/, 28448 /*A Deal With a Dragon*/, 29253 /*A Shiny Reward*/, 29401 /*Blown Away*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (361 /*A Letter Undelivered*/, 404 /*A Putrid Task*/, 445 /*Delivery to Silverpine Forest*/, 9263 /*Investigate the Scourge of Orgrimmar*/, 9264 /*Investigate the Scourge of Thunder Bluff*/, 9265 /*Investigate the Scourge of the Undercity*/, 12816 /*Investigate the Scourge of Silvermoon*/, 13866 /*To The Ramparts!*/, 24518 /*The Low Road*/, 24750 /*The Rise of the Darkspear*/, 24770 /*The Rise of the Darkspear*/, 24776 /*The Rise of the Darkspear*/, 24782 /*The Rise of the Darkspear*/, 24961 /*The Truth of the Grave*/, 24974 /*Ever So Lonely*/, 25090 /*A Putrid Task*/, 25187 /*Lost in the Floods*/, 26407 /*Mosh'Ogg Handiwork*/, 26534 /*Let's See What You've Got, Zanzil*/, 26551 /*Eliminate the Outcast*/, 26589 /*The Wilds of Feralas*/); @@ -4672,8 +4667,8 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `Que UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='Greetings, $n. I am Conservator Ilthalaine. My purpose in Shadowglen is to ensure that the balance of nature is maintained.$b$bThe spring rains were particularly heavy this year, causing some of the forest''s beasts to flourish while others suffered.$b$bUnfortunately, the nightsaber and thistle boar populations grew too large. Shadowglen can only produce so much food for the beasts. Journey forth, young $c, and thin the boar and saber populations so that nature''s harmony will be preserved.', `VerifiedBuild`=19034 WHERE `ID`=456; -- The Balance of Nature UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='Thinning the younger population of creatures here in Shadowglen was a good start, $n, but there is still work to be done.$b$bThe resources of the forest will be depleted too quickly if the problem is not addressed. Killing nature''s beasts is a necessary evil for the good of all who share the land. Venture farther in Shadowglen to the northeast and slay mangy nightsabers and thistle boars in the name of balance.', `VerifiedBuild`=19034 WHERE `ID`=457; -- Nature's Dues UPDATE `quest_template` SET `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (460 /*Resting in Pieces*/, 638 /*Trollbane*/, 671 /*Foul Magics*/, 672 /*Raising Spirits*/, 673 /*Foul Magics*/, 701 /*Guile of the Raptor*/, 770 /*The Demon Scarred Cloak*/, 819 /*Chen's Empty Keg*/, 842 /*Crossroads Conscription*/, 858 /*Ignition*/, 869 /*To Track a Thief*/, 891 /*A Captain's Vengeance*/, 896 /*Miner's Fortune*/, 2949 /*Return of the Ring*/, 3921 /*Wenikee Boltbucket*/, 4102 /*[DEPRECATED]Cleansing Felwood*/, 4987 /*Glyphed Oaken Branch*/, 5023 /*Better Late Than Never*/, 5147 /*Wanted - Arnak Grimtotem*/, 6284 /*Arachnophobia*/, 6741 /*More Booty!*/, 6801 /*Lokholar the Ice Lord*/, 6825 /*Call of Air - Guse's Fleet*/, 6826 /*Call of Air - Jeztor's Fleet*/, 6827 /*Call of Air - Mulverick's Fleet*/, 6847 /*Master Ryson's All Seeing Eye*/, 6861 /*Zinfizzlex's Portable Shredder Unit*/, 6961 /*Great-father Winter is Here!*/, 6963 /*Stolen Winter Veil Treats*/, 7001 /*Empty Stables*/, 7002 /*Ram Hide Harnesses*/, 7021 /*Great-father Winter is Here!*/, 7024 /*Great-father Winter is Here!*/, 7163 /*Rise and Be Recognized*/, 7164 /*Honored Amongst the Clan*/, 7165 /*Earned Reverence*/, 7166 /*Legendary Heroes*/, 7167 /*The Eye of Command*/, 7281 /*Brotherly Love*/, 7368 /*Defusing the Threat*/, 7381 /*The Return of Korrak*/, 7385 /*A Gallon of Blood*/, 8272 /*Hero of the Frostwolf*/, 8828 /*Winter's Presents*/, 8884 /*Fish Heads, Fish Heads...*/, 8888 /*The Magister's Apprentice*/, 8889 /*Deactivating the Spire*/, 8981 /*Gift Giving*/, 9143 /*Dealing with Zeb'Sora*/, 9145 /*Help Ranger Valanna!*/, 9147 /*The Fallen Courier*/, 9166 /*Deliver the Plans to An'telas*/, 9171 /*Culinary Crunch*/, 9217 /*More Rotting Hearts*/, 9218 /*Spinal Dust*/, 9219 /*More Spinal Dust*/, 9310 /*Faint Necrotic Crystal*/, 9358 /*Ranger Sareyn*/, 9359 /*Farstrider Retreat*/, 9394 /*Where's Wyllithen?*/, 9395 /*Saltheril's Haven*/, 9416 /*Report to General Kirika*/, 9483 /*Life's Finer Pleasures*/, 9704 /*Slain by the Wretched*/, 9877 /*A Restorative Draught*/, 10103 /*Report to Zurai*/, 10213 /*Investigate the Crash*/, 10289 /*Journey to Thrallmar*/, 10639 /*Teron Gorefiend, I am...*/, 11124 /*[DEPRECATED]Inspecting the Ruins*/, 11203 /*[DEPRECATED]Seek Out Tabetha*/, 11213 /*Check Up on Tabetha*/, 11215 /*Help Mudsprocket*/, 11225 /*The Hermit of Witch Hill*/, 11357 /*Masked Orphan Matron*/, 11405 /*Call the Headless Horseman*/, 11413 /*Did Someone Say ""Souvenir?""*/, 11558 /*Dangerous Love*/, 12306 /*Brew of the Month Club*/, 12361 /*Candy Bucket*/, 12362 /*Candy Bucket*/, 12363 /*Candy Bucket*/, 12364 /*Candy Bucket*/, 12365 /*Candy Bucket*/, 12366 /*Candy Bucket*/, 12367 /*Candy Bucket*/, 12368 /*Candy Bucket*/, 12369 /*Candy Bucket*/, 12370 /*Candy Bucket*/, 12371 /*Candy Bucket*/, 12373 /*Candy Bucket*/, 12374 /*Candy Bucket*/, 12376 /*Candy Bucket*/, 12377 /*Candy Bucket*/, 12378 /*Candy Bucket*/, 12380 /*Candy Bucket*/, 12381 /*Candy Bucket*/, 12382 /*Candy Bucket*/, 12383 /*Candy Bucket*/, 12384 /*Candy Bucket*/, 12386 /*Candy Bucket*/, 12387 /*Candy Bucket*/, 12388 /*Candy Bucket*/, 12389 /*Candy Bucket*/, 12390 /*Candy Bucket*/, 12391 /*Candy Bucket*/, 12392 /*Candy Bucket*/, 12393 /*Candy Bucket*/, 12394 /*Candy Bucket*/, 12395 /*Candy Bucket*/, 12946 /*Candy Bucket*/, 12947 /*Candy Bucket*/, 13464 /*Candy Bucket*/, 13465 /*Candy Bucket*/, 13466 /*Candy Bucket*/, 13467 /*Candy Bucket*/, 13468 /*Candy Bucket*/, 13469 /*Candy Bucket*/, 13470 /*Candy Bucket*/, 13471 /*Candy Bucket*/, 13474 /*Candy Bucket*/, 13483 /*Spring Gatherers*/, 13501 /*Candy Bucket*/, 13548 /*Candy Bucket*/, 13687 /*Horde Tournament Eligibility Marker*/, 13701 /*Horde Champion Marker*/, 13878 /*Through Fire and Flames*/, 13889 /*Hungry, Hungry Hatchling*/, 13903 /*Gorishi Grub*/, 13904 /*Poached, Scrambled, Or Raw?*/, 13905 /*Searing Roc Feathers*/, 13931 /*Another Year, Another Souvenir.*/, 14003 /*Samophlange Repair*/, 14004 /*Return to Samophlanger*/, 14043 /*Candied Sweet Potatoes*/, 14044 /*Undersupplied in the Undercity*/, 14047 /*Slow-roasted Turkey*/, 14052 /*Take it up with Tony*/, 14066 /*Investigate the Wreckage*/, 14114 /*The New You (Tracking Event)*/, 14137 /*Class Training (Tracking Event)*/, 14237 /*Forward Movement*/, 14239 /*Don't Go Into the Light!*/, 14240 /*To the Cliffs*/, 14244 /*Up, Up & Away!*/, 14248 /*Help Wanted*/, 24523 /*Wildmane Totem*/, 24805 /*Uncommon Scents*/, 25356 /*To the Summit*/, 25391 /*Weapons of Spirit*/, 25478 /*To the Summit*/, 25836 /*Free Freewind Post*/, 26317 /*A Lashtail Hatchling*/, 26321 /*I Think She's Hungry*/, 26447 /*Diabolical Plans*/, 26558 /*Summoning Shadra*/, 26964 /*Warchief's Command: Silverpine Forest!*/, 27182 /*The Hermit of Witch Hill*/, 27253 /*Inspecting the Ruins*/, 27254 /*The Black Shield*/, 27256 /*The Black Shield*/, 27257 /*The Black Shield*/, 27258 /*The Black Shield*/, 27259 /*Suspicious Hoofprints*/, 27260 /*Lieutenant Paval Reethe*/, 27276 /*Together Again*/, 27295 /*Seek Out Tabetha*/, 27306 /*Talk to Ogron*/, 27365 /*A Fitting Weapon*/, 27880 /*Half-Ton Holdouts*/, 27897 /*The Hidden Clutch*/, 27898 /*Rheastrasza's Gift*/, 27913 /*The Titans' Trove*/, 28089 /*Warchief's Command: Hillsbrad Foothills!*/, 28284 /*What's that Rattle?*/, 28422 /*The Sand, the Cider, and the Orb*/, 28456 /*The Spoils of War*/, 28493 /*Warchief's Command: Ashenvale!*/, 28494 /*Warchief's Command: Northern Barrens!*/, 28496 /*Warchief's Command: Azshara!*/, 28504 /*Warchief's Command: Thousand Needles!*/, 28509 /*Warchief's Command: Tanaris!*/, 28510 /*Warchief's Command: Feralas!*/, 28526 /*Warchief's Command: Un'Goro Crater!*/, 28532 /*Warchief's Command: Stonetalon Mountains!*/, 28545 /*Warchief's Command: Winterspring!*/, 28548 /*Warchief's Command: Desolace!*/, 28549 /*Warchief's Command: Southern Barrens!*/, 28554 /*Warchief's Command: Dustwallow Marsh!*/, 28568 /*Warchief's Command: Silverpine Forest!*/, 28571 /*Warchief's Command: Hillsbrad Foothills!*/, 28572 /*Warchief's Command: Arathi Highlands!*/, 28574 /*Warchief's Command: The Hinterlands!*/, 28575 /*Warchief's Command: Western Plaguelands!*/, 28577 /*Warchief's Command: Eastern Plaguelands!*/, 28580 /*Warchief's Command: Badlands!*/, 28581 /*Warchief's Command: Searing Gorge!*/, 28651 /*Novice Elreth*/, 28667 /*Warchief's Command: Burning Steppes!*/, 28671 /*Warchief's Command: Blasted Lands!*/, 28677 /*Warchief's Command: Swamp of Sorrows!*/, 28688 /*Warchief's Command: Northern Stranglethorn Vale!*/, 28704 /*Warchief's Command: The Cape of Stranglethorn!*/, 28858 /*Blasted Lands: The Other Side of the World*/, 28953 /*Candy Bucket*/, 28957 /*Candy Bucket*/, 28958 /*Candy Bucket*/, 28959 /*Candy Bucket*/, 28962 /*Candy Bucket*/, 28966 /*Candy Bucket*/, 28969 /*Candy Bucket*/, 28971 /*Candy Bucket*/, 28972 /*Candy Bucket*/, 28973 /*Candy Bucket*/, 28974 /*Candy Bucket*/, 28975 /*Candy Bucket*/, 28976 /*Candy Bucket*/, 28984 /*Candy Bucket*/, 28986 /*Candy Bucket*/, 28987 /*Candy Bucket*/, 28989 /*Candy Bucket*/, 28992 /*Candy Bucket*/, 28996 /*Candy Bucket*/, 28998 /*Candy Bucket*/, 29002 /*Candy Bucket*/, 29003 /*Candy Bucket*/, 29004 /*Candy Bucket*/, 29005 /*Candy Bucket*/, 29009 /*Candy Bucket*/, 29015 /*Miner's Fortune*/, 29019 /*Candy Bucket*/, 29021 /*Samophlange*/, 29022 /*Samophlange*/, 29023 /*Samophlange*/, 29026 /*Wenikee Boltbucket*/, 29027 /*Nugget Slugs*/, 29073 /*Make Haste to Orgrimmar!*/, 29086 /*Competition Schmompetition*/, 29268 /*Some Good Will Come*/, 29390 /*Guardians of Hyjal: Call of the Ancients*/, 29396 /*A New Supplier of Souvenirs*/, 29416 /*Fencing the Goods*/, 29429 /*The Creepy Crate*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `VerifiedBuild`=19034 WHERE `ID` IN (470 /*Digging Through the Ooze*/, 761 /*Swoop Hunting*/, 919 /*Timberling Sprouts*/, 923 /*Mossy Tumors*/, 982 /*Deep Ocean, Vast Sea*/, 1001 /*Buzzbox 411*/, 1069 /*[DEPRECATED] Deepmoss Spider Eggs*/, 1393 /*Galen's Escape*/, 1487 /*Deviate Eradication*/, 2781 /*WANTED: Caliph Scorpidsting*/, 2875 /*WANTED: Andre Firebeard*/, 3443 /*Forging the Shaft*/, 4763 /*The Blackwood Corrupted*/, 5713 /*One Shot. One Kill.*/, 6026 /*That's Asking A Lot*/, 7066 /*Seed of Life*/, 7441 /*Pusillin and the Elder Azj'Tordin*/, 7728 /*STOLEN: Smithing Tuyere and Lookout's Spyglass*/, 8287 /*A Terrible Purpose*/, 8310 /*Breaking the Code*/, 8338 /*Tainted Arcane Sliver*/, 8345 /*The Shrine of Dath'Remar*/, 13514 /*The Ancients' Ire*/, 13591 /*Disturbing Connections*/, 13605 /*The Last Refugee*/, 13655 /*Explorers' League Document (2 of 6)*/, 13656 /*Explorers' League Document (1 of 6)*/, 13657 /*Explorers' League Document (3 of 6)*/, 13658 /*Explorers' League Document (4 of 6)*/, 13659 /*Explorers' League Document (6 of 6)*/, 13660 /*Explorers' League Document (5 of 6)*/, 13661 /*Heartfelt Appreciation*/, 13945 /*Resident Danger*/, 13971 /*The Kodo's Return*/, 13998 /*In Fungus We Trust*/, 14050 /*Gazlowe's Fortune*/, 14161 /*Basilisk Bashin'*/, 14198 /*Rider on the Storm*/, 14227 /*Putting Their Heads Together*/, 14254 /*Heavy Metal*/, 14257 /*Slitherblade Slaughter*/, 14282 /*Mystery Solved*/, 14301 /*Return and Report*/, 14324 /*Full of Hot Water*/, 14364 /*Putting Their Heads Together*/, 14394 /*Death to Agogridon*/, 14423 /*Dozercism*/, 14435 /*The Blackmaw Doublecross*/, 14486 /*Handling the Goods*/, 24700 /*Hard to Harvest*/, 24701 /*Marshal's Refuse*/, 24717 /*The Apes of Un'Goro*/, 24855 /*Aberrant Flora*/, 24910 /*Rocket Rescue*/, 24926 /*Serving A-Me 01*/, 24927 /*Dead Man's Chest*/, 24958 /*Volcanoth!*/, 25081 /*Claim the Battlescar*/, 25185 /*The Deed Is Done*/, 25250 /*Sealing the Dream*/, 25364 /*Alpha Strike*/, 25398 /*Sealing the Dream*/, 25427 /*Alpha Strike*/, 25671 /*Thinning the Horde*/, 25704 /*The Mad Magus*/, 25706 /*Neptool's Revenge*/, 26035 /*Worth Its Weight in Gold*/, 26038 /*Attack on the Tower*/, 26041 /*Stones of Binding*/, 26075 /*The Turd Problem*/, 26082 /*To Battlescar!*/, 26127 /*The Twilight's Hammer Revealed*/, 26128 /*The Battle of Thandol Span*/, 26305 /*Saving Yenniku*/, 26345 /*Excelsior*/, 26513 /*Like a Fart in the Wind*/, 26649 /*Drive-By Piracy*/, 26691 /*Worgen in the Woods*/, 26928 /*Smells Like A Plan*/, 26953 /*Zen'Kiki, the Druid*/, 26955 /*Zen'Kiki and the Cultists*/, 27183 /*Marsh Frog Legs*/, 27184 /*Jarl Needs Eyes*/, 27188 /*What's Haunting Witch Hill?*/, 27190 /*Cleansing Witch Hill*/, 27191 /*Hungry as an Ogre!*/, 27347 /*Corrosion Prevention*/, 27348 /*Secure the Cargo!*/, 27977 /*Recon Essentials*/, 28428 /*A Perfect Costume*/, 28430 /*A Perfect Costume*/, 28431 /*A Perfect Costume*/, 28475 /*Twilight Scheming*/, 28477 /*Twilight Scheming*/); -UPDATE `quest_template` SET `FlagsEx`=8, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID`=485; -- Find OOX-09/HL! +UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `VerifiedBuild`=19034 WHERE `ID` IN (470 /*Digging Through the Ooze*/, 761 /*Swoop Hunting*/, 919 /*Timberling Sprouts*/, 923 /*Mossy Tumors*/, 982 /*Deep Ocean, Vast Sea*/, 1001 /*Buzzbox 411*/, 1069 /*[DEPRECATED] Deepmoss Spider Eggs*/, 1393 /*Galen's Escape*/, 1487 /*Deviate Eradication*/, 2781 /*WANTED: Caliph Scorpidsting*/, 2875 /*WANTED: Andre Firebeard*/, 3443 /*Forging the Shaft*/, 4763 /*The Blackwood Corrupted*/, 5534 /*Kim'jael's ""Missing"" Equipment*/, 5713 /*One Shot. One Kill.*/, 6026 /*That's Asking A Lot*/, 7066 /*Seed of Life*/, 7441 /*Pusillin and the Elder Azj'Tordin*/, 7728 /*STOLEN: Smithing Tuyere and Lookout's Spyglass*/, 8287 /*A Terrible Purpose*/, 8310 /*Breaking the Code*/, 8338 /*Tainted Arcane Sliver*/, 8345 /*The Shrine of Dath'Remar*/, 13514 /*The Ancients' Ire*/, 13591 /*Disturbing Connections*/, 13605 /*The Last Refugee*/, 13655 /*Explorers' League Document (2 of 6)*/, 13656 /*Explorers' League Document (1 of 6)*/, 13657 /*Explorers' League Document (3 of 6)*/, 13658 /*Explorers' League Document (4 of 6)*/, 13659 /*Explorers' League Document (6 of 6)*/, 13660 /*Explorers' League Document (5 of 6)*/, 13661 /*Heartfelt Appreciation*/, 13945 /*Resident Danger*/, 13971 /*The Kodo's Return*/, 13998 /*In Fungus We Trust*/, 14050 /*Gazlowe's Fortune*/, 14161 /*Basilisk Bashin'*/, 14198 /*Rider on the Storm*/, 14227 /*Putting Their Heads Together*/, 14254 /*Heavy Metal*/, 14257 /*Slitherblade Slaughter*/, 14282 /*Mystery Solved*/, 14301 /*Return and Report*/, 14324 /*Full of Hot Water*/, 14364 /*Putting Their Heads Together*/, 14394 /*Death to Agogridon*/, 14423 /*Dozercism*/, 14435 /*The Blackmaw Doublecross*/, 14486 /*Handling the Goods*/, 24700 /*Hard to Harvest*/, 24701 /*Marshal's Refuse*/, 24717 /*The Apes of Un'Goro*/, 24855 /*Aberrant Flora*/, 24910 /*Rocket Rescue*/, 24926 /*Serving A-Me 01*/, 24927 /*Dead Man's Chest*/, 24958 /*Volcanoth!*/, 25081 /*Claim the Battlescar*/, 25185 /*The Deed Is Done*/, 25250 /*Sealing the Dream*/, 25364 /*Alpha Strike*/, 25398 /*Sealing the Dream*/, 25427 /*Alpha Strike*/, 25671 /*Thinning the Horde*/, 25704 /*The Mad Magus*/, 25706 /*Neptool's Revenge*/, 26035 /*Worth Its Weight in Gold*/, 26038 /*Attack on the Tower*/, 26041 /*Stones of Binding*/, 26051 /*Sunken Treasure*/, 26075 /*The Turd Problem*/, 26082 /*To Battlescar!*/, 26127 /*The Twilight's Hammer Revealed*/, 26128 /*The Battle of Thandol Span*/, 26305 /*Saving Yenniku*/, 26345 /*Excelsior*/, 26513 /*Like a Fart in the Wind*/, 26594 /*Return to MacKinley*/, 26649 /*Drive-By Piracy*/, 26691 /*Worgen in the Woods*/, 26928 /*Smells Like A Plan*/, 26953 /*Zen'Kiki, the Druid*/, 26955 /*Zen'Kiki and the Cultists*/, 27183 /*Marsh Frog Legs*/, 27184 /*Jarl Needs Eyes*/, 27188 /*What's Haunting Witch Hill?*/, 27190 /*Cleansing Witch Hill*/, 27191 /*Hungry as an Ogre!*/, 27347 /*Corrosion Prevention*/, 27348 /*Secure the Cargo!*/, 27977 /*Recon Essentials*/, 28428 /*A Perfect Costume*/, 28430 /*A Perfect Costume*/, 28431 /*A Perfect Costume*/, 28475 /*Twilight Scheming*/, 28477 /*Twilight Scheming*/); +UPDATE `quest_template` SET `FlagsEx`=8, `VerifiedBuild`=19034 WHERE `ID` IN (485 /*Find OOX-09/HL!*/, 7785 /*Examine the Vessel*/, 7810 /*Arena Master*/, 7907 /*Darkmoon Beast Deck*/, 7908 /*Arena Master*/, 7927 /*Darkmoon Portals Deck*/, 7928 /*Darkmoon Warlords Deck*/, 7929 /*Darkmoon Elementals Deck*/, 7937 /*Your Fortune Awaits You...*/, 7944 /*Your Fortune Awaits You...*/, 7945 /*Your Fortune Awaits You...*/, 8784 /*Secrets of the Qiraji*/, 9296 /*reuse*/, 9297 /*reuse*/, 9298 /*reuse*/, 9875 /*Uncatalogued Species*/, 10938 /*Darkmoon Blessings Deck*/, 10939 /*Darkmoon Storms Deck*/, 10940 /*Darkmoon Furies Deck*/, 10941 /*Darkmoon Lunacy Deck*/, 12517 /*Rogues Deck*/, 12518 /*Mages Deck*/, 12781 /*Welcome!*/, 12798 /*Swords Deck*/, 13311 /*Demons Deck*/, 13324 /*Darkmoon Prisms Deck*/, 13325 /*Darkmoon Chaos Deck*/, 13326 /*Darkmoon Nobles Deck*/, 13327 /*Darkmoon Undeath Deck*/, 13622 /*Ancient History*/, 24667 /*Firestone Point*/, 25771 /*One Draenei's Junk...*/, 25772 /*Kum'isha's Endeavors*/, 27664 /*Darkmoon Volcanic Deck*/, 27665 /*Darkmoon Hurricane Deck*/, 27666 /*Darkmoon Tsunami Deck*/, 27667 /*Darkmoon Earthquake Deck*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AreaGroupID`=0, `QuestDescription`='Now the time has come to save the Druids of the Talon. If we fail now, $n, they will be forever lost in sleep.$b$bI shall prepare the Relics of Wakening and perform the ritual. For my work to take effect, the cursed beast responsible for this horrible situation must be slain.$b$bIt was Ursal the Mauler who meddled with our brethren''s calling and it is Ursal the Mauler who must now pay so they can be freed. Travel northwest on the road and find the path north into The Cleft. Ursal''s den will be there.', `VerifiedBuild`=19034 WHERE `ID`=486; -- Ursal the Mauler UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='Eager for work, I see. Lucky for you a day never goes by that I don''t wish I had a fledgling $c to perform my bidding.$b$bYou see, $n, I can make you very happy and provide you with things you never dreamed of having. But in order for that to happen you must bring me certain items.$b$bMy business in the forest often requires certain... reagents. Fetch for me nightsaber fangs, strigid owl feathers and swatches of webwood spider silk.$b$bLet''s keep this our little secret, $r.', `VerifiedBuild`=19034 WHERE `ID`=488; -- Zenn's Bidding UPDATE `quest_template` SET `Flags`=16392, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=495; -- The Crown of Will @@ -4685,22 +4680,13 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `Que UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='$n. If you don''t mind a long journey then I have a task for you, to again help Stormwind fill its library.$B$BThe old kingdom of Alterac fell after the great war, and it had a large collection of books. It''s a tragedy that the city is ruined, but even more tragic is all of their knowledge lost! We must recover what we can.$B$BSouthshore is the closest town to the Ruins of Alterac. Go there and speak with Loremaster Dibbs. He can direct you to the ruins, and to what books may be found there.', `VerifiedBuild`=19034 WHERE `ID`=538; -- Southshore UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=39300, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=543; -- The Perenolde Tiara UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Now that many of his regular troops are reduced, you must face his highly trained forces. When they''re not in the wilderness slaughtering our rebel soldiers, they are found deep in the back of the Kurzen Compound, in a cave they call the Stockpile.$B$BI know many of Kurzen''s troops personally, and I know they are skilled, loyal, and cruel. This is no easy task I set before you, $n.$B$BAfter you defeat them, report to Lieutenant Doren, my commanding officer. He will want your report firsthand.', `VerifiedBuild`=19034 WHERE `ID`=574; -- Special Forces -UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID` IN (575 /*Supply and Demand*/, 577 /*Some Assembly Required*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardFactionValue2`=4294967291, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (578 /*The Stone of the Tides*/, 601 /*Water Elementals*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='We must find if Yenniku is dead.$B$BSlay the Bloodscalp Headhunters and take from them their Shrunken Heads. You must gather many, many heads, and I will inspect them to make sure Yenniku''s head is not among them.$B$BAnd if Yenniku was killed by the Bloodscalps, then may a 600-year curse fall on the spirit of their chief, Gan''zulah!$B$BGo, $n. You may find many Headhunters at the ruins of Zuuldaia and Zul''Kunda, along the coast to the north.', `VerifiedBuild`=19034 WHERE `ID`=582; -- Headhunting UPDATE `quest_template` SET `RewardMoneyDifficulty`=1, `VerifiedBuild`=19034 WHERE `ID` IN (583 /*Welcome to the Jungle*/, 839 /*<UNUSED>*/, 9892 /*More Obsidian Warbeads*/, 12966 /*You Can't Miss Him*/, 13076 /*Time Yet Remains*/, 13579 /*Protector of Ameth'Aran*/, 13879 /*Thunder Peak*/, 13902 /*Mounting the Offensive*/, 13972 /*Among Humans Again*/, 14372 /*Thargad's Camp*/, 24693 /*Mossy Pile*/, 24698 /*Adventures in Archaeology*/, 24794 /*Speak With Spraggle*/, 24854 /*Finding Stormclaw*/, 25064 /*Moraya*/, 25473 /*Kaja'Cola*/, 25702 /*Home... Gone... Naga...*/, 26023 /*The Forsaken Trollbane*/, 26114 /*Quae Trusts You*/, 26678 /*Doublerum*/, 26698 /*Seeking Seahorn*/, 26865 /*Enemies Below*/, 26878 /*Disciples of Naralex*/, 26943 /*Home Sweet Gnome*/, 27062 /*Looming Threat*/, 28068 /*Adventurers Wanted: Blackrock Depths*/, 28069 /*Adventurers Wanted: Blackrock Depths*/, 28169 /*Withdraw to the Loading Room!*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardFactionValue2`=4294967292, `VerifiedBuild`=19034 WHERE `ID`=595; -- The Bloodsail Buccaneers -UPDATE `quest_template` SET `RewardFactionValue2`=4294967293, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=603; -- Ansirem's Key -UPDATE `quest_template` SET `RewardFactionValue2`=4294967294, `VerifiedBuild`=19034 WHERE `ID`=606; -- Scaring Shaky -UPDATE `quest_template` SET `RewardFactionValue2`=4294967290, `VerifiedBuild`=19034 WHERE `ID` IN (608 /*The Bloodsail Buccaneers*/, 613 /*Cracking Maury's Foot*/, 2767 /*Rescue OOX-22/FE!*/, 26628 /*Death From Below*/); -UPDATE `quest_template` SET `RewardFactionValue2`=4294967290, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=611; -- The Curse of the Tides -UPDATE `quest_template` SET `RewardFactionValue2`=4294967291, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (614 /*The Captain's Chest*/, 8551 /*The Captain's Chest*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardFactionValue2`=4294967291, `QuestDescription`='You looking fer work, $n? I might have some if you''re up for a little challenge.$B$BI got a friend named Groy who makes a killing selling what the naga call akiris reed: it''s some kind of valuable ocean reed. Not too sure what it''s for, but he pays well for bundles of the stuff.$B$BYa bring me ten stalks of the stuff, and we''ll have business to do. The naga were last seen along the beach to the north of here.', `VerifiedBuild`=19034 WHERE `ID`=617; -- Akiris by the Bundle -UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardFactionValue2`=4294967290, `AllowableRaces`=18875469, `QuestDescription`='$n, since I have you here, I got a message from Groy while you were gone. He mentioned bein'' satisfied with the last shipment that arrived and has a client that wants some more of the stuff right away.$B$BI won''t be headin'' to Theramore for a week, but if you''re willin'' to make the journey, there''s no reason you can''t take the stuff for me.$B$BFeeling adventurous? You do know where Dustwallow Marsh is, doncha? I''d be careful though, Theramore can be dangerous if you''re the wrong kind of crowd.', `VerifiedBuild`=19034 WHERE `ID`=623; -- Akiris by the Bundle -UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardFactionValue2`=4294967292, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=627; -- Favor for Krazek +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='You looking fer work, $n? I might have some if you''re up for a little challenge.$B$BI got a friend named Groy who makes a killing selling what the naga call akiris reed: it''s some kind of valuable ocean reed. Not too sure what it''s for, but he pays well for bundles of the stuff.$B$BYa bring me ten stalks of the stuff, and we''ll have business to do. The naga were last seen along the beach to the north of here.', `VerifiedBuild`=19034 WHERE `ID`=617; -- Akiris by the Bundle +UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=18875469, `QuestDescription`='$n, since I have you here, I got a message from Groy while you were gone. He mentioned bein'' satisfied with the last shipment that arrived and has a client that wants some more of the stuff right away.$B$BI won''t be headin'' to Theramore for a week, but if you''re willin'' to make the journey, there''s no reason you can''t take the stuff for me.$B$BFeeling adventurous? You do know where Dustwallow Marsh is, doncha? I''d be careful though, Theramore can be dangerous if you''re the wrong kind of crowd.', `VerifiedBuild`=19034 WHERE `ID`=623; -- Akiris by the Bundle UPDATE `quest_template` SET `QuestDescription`='$n, I put my faith in you and anyone you can muster to help free me. The great Skymane King Mukla is my captor. He commands the beasts of this island, and they keep me here against my will with the aid of this chain. If you can slay him and find the key to this shackle, I shall be indebted to you greatly.$B$BI often hear him to the southeast side of the island, but please be careful: he is not to be trifled with.', `VerifiedBuild`=19034 WHERE `ID`=630; -- Message in a Bottle UPDATE `quest_template` SET `QuestDescription`='My name is Myzrael. I am a princess of the earth, and my captors, the giants, have trapped me deep beneath the Arathi Highlands. These crystal shards are the only way I can speak with the surface world.$B$BPlease help me. Allies of the giants, the Drywhisker Kobolds, have a shard like this one in their Drywhisker Gorge, to the east. To power the cluster, you must gather Motes of Myzrael from the kobolds and apply them to it.$B$BI beg you, $n, aid me!', `VerifiedBuild`=19034 WHERE `ID`=642; -- The Princess Trapped -UPDATE `quest_template` SET `RewardBonusMoney`=75600, `Flags`=2, `RewardFactionValue2`=4294967290, `VerifiedBuild`=19034 WHERE `ID`=648; -- Rescue OOX-17/TN! +UPDATE `quest_template` SET `RewardBonusMoney`=75600, `Flags`=2, `VerifiedBuild`=19034 WHERE `ID`=648; -- Rescue OOX-17/TN! UPDATE `quest_template` SET `QuestDescription`='Opening the Stones of Binding loosened much of my confinement, but a lock still holds me chained. It is the Keystone you see among this circle of stones. And the key is held by one of my captors, the stone watcher Fozruk.$B$BYou must obtain that key, which the stone watchers call the Rod of Order, from Fozruk and use it to open the Keystone.$B$B$n, you have done so much to aid me. Just a little more...and my gratitude will shake the very foundations of the earth!', `VerifiedBuild`=19034 WHERE `ID`=652; -- Breaking the Keystone UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Hail, and well met, $n. I lead a group of adventurers investigating odd happenings in this area.$B$BMy cousin in Hillsbrad recently put down his dog Stanley because the animal mystically grew to an immense size and savagely attacked anyone who came near him.$B$BI believe the undead are involved, and we''re looking for signs to prove as much.$B$BTwo of my companions, Quae and Kinelory, headed to the Go''Shek Farm in the Arathi Highlands, and haven''t checked in for days. Find them for me? I grow concerned.', `VerifiedBuild`=19034 WHERE `ID`=659; -- Hints of a New Plague? UPDATE `quest_template` SET `QuestDescription`='All right, $n. I''m ready if you are.$B$BShall we?', `VerifiedBuild`=19034 WHERE `ID`=660; -- Hints of a New Plague? @@ -4708,7 +4694,6 @@ UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Your streng UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='The head of the beast is ready to be taken off... with great force, $n. You have shown every sign that you are able to help us with this final mighty blow. The leaders of these attacks have made their lair within the ruins of Stromgarde, a glaring symbol of human frailty.$B$BFind and slay those Boulderfist lords and their lackey shaman who would try and drive us from these lands.', `VerifiedBuild`=19034 WHERE `ID`=679; -- Call to Arms UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Greetings, $n. You have the look of an adventurer about you, and I have a task that needs some tending to.$B$BArchmage Trelane, my original master, fled Stromgarde in the Arathi Highlands not too long ago, and he''s asked me to help him in recovering some of the items he left behind.$B$BThe city fell under siege, and he attempted to defend the Tower of Arathor, but to no avail. I have agents in the Highlands already, but they''ve requested I send more aid. Are you interested?', `VerifiedBuild`=19034 WHERE `ID`=690; -- Malin's Request UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Hey, $n. Sorry to be so short with ye earlier... and no, that ain''t a pun.$B$BI figured out where Trelane''s first item ended up: Kor''gresh has it in Boulderfist Hall. An'' by the way he was throwing down blasts of ice at his kin to keep them in line, he must be close to figurin'' out how to use all of its powers.$B$BBoulderfist Hall''s south of here an'' then east of Thandol Span. Find the ogre an'' get back that wand.$B$BWhile you''re gone, I''ll figure out what we''re gonna do about Stromgarde.', `VerifiedBuild`=19034 WHERE `ID`=693; -- Wand over Fist -UPDATE `quest_template` SET `RewardFactionValue2`=4294967292, `VerifiedBuild`=19034 WHERE `ID`=703; -- Barbecued Buzzard Wings UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='$n. I received reports from Prospector Ironband at his excavation site in Loch Modan--he needs some legwork done concerning another of our excavations.$B$BI don''t have more details than that, but if you want to stretch your legs then go speak with Ironband.', `VerifiedBuild`=19034 WHERE `ID`=707; -- Ironband Wants You! UPDATE `quest_template` SET `QuestDescription`='$n, you''ve already proven more able than all my apprentices combined.$B$BThe next parts I need require a little more strength. Large stone slabs can be found on rock elementals if you''re careful enough. Their bodies are stronger and larger, and therefore more prone to having pieces large enough for my tests. You can find them further west of here or southeast along the mountains'' edges.$B$BTake your time; I''ll need a while to test these smaller pieces you brought me.', `VerifiedBuild`=19034 WHERE `ID`=711; -- Study of the Elements: Rock UPDATE `quest_template` SET `QuestDescription`='$n, there''s one more part I need from the elementals here in the Badlands: the bracers of rock binding from the greater rock elementals. By my calculations, those bracers should be enough to gauge the strength of my own shackles.$B$BMy attempts at scrying the greater rock elementals showed a group of them southwest of here, near some ogres if I recall.$B$BBring me 5 of their bracers just so I have extras. Servo''s notorious for misplacing my reagents and research.', `VerifiedBuild`=19034 WHERE `ID`=712; -- Study of the Elements: Rock @@ -4728,7 +4713,7 @@ UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Venomtails UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='Bah! I almost forgot I need to get breakfast ready.$B$B$n, get yourself movin'' and get me some taillasher eggs. I''ll need at least three of them if I''m going to have enough for tomorrow''s meal.$B$BThe Bloodtalon taillashers can be fierce, and protect their eggs to the death more often than not. They sometimes bury their eggs too deep in the earth to uncover safely, but if you head to the Echo Isles to the southeast of Sen''jin Village, you can usually find them all over those islands.', `VerifiedBuild`=19034 WHERE `ID`=815; -- Break a Few Eggs UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='Many of the hides we use come from Durotar tigers, $n. Blankets, armor, tents: there are a great many reasons we hunt the beasts, and many reasons we let them thrive at the same time.$B$BThe time has come for us to cull the flock, so to speak. Our numbers grow, and our needs are beginning to overwhelm our stocks. I need more hides if I''m to prepare suitable goods for our people.$B$BBring me 4 Durotar tiger furs, and I shall reward you. You can find them on the islands south of here.', `VerifiedBuild`=19034 WHERE `ID`=817; -- Practical Prey UPDATE `quest_template` SET `RewardXPDifficulty`=8, `Float10`=0.25, `RewardBonusMoney`=6600, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=824; -- Je'neu of the Earthen Ring -UPDATE `quest_template` SET `Flags`=2, `RewardFactionValue2`=4294967290, `VerifiedBuild`=19034 WHERE `ID`=836; -- Rescue OOX-09/HL! +UPDATE `quest_template` SET `Flags`=2, `VerifiedBuild`=19034 WHERE `ID`=836; -- Rescue OOX-09/HL! UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (863 /*The Escape*/, 887 /*Southsea Freebooters*/, 8482 /*Incriminating Documents*/, 8885 /*The Ring of Mmmrrrggglll*/, 9164 /*Captives at Deatholme*/, 9169 /*Deactivate An'owyn*/, 9174 /*Vanquishing Aquantion*/, 9175 /*The Lady's Necklace*/, 9215 /*Bring Me Kel'gash's Head!*/, 9220 /*War on Deatholme*/, 9281 /*Clearing the Way*/, 14067 /*The Stolen Silver*/, 14243 /*Warchief's Revenge*/, 14422 /*Raptor Raptor Rocket*/, 25004 /*The Mills Overrun*/, 25006 /*The Grasp Weakens*/, 25030 /*The Haunted Mills*/, 25107 /*The Grand Tablet*/, 25169 /*The War of Northwatch Aggression*/, 25177 /*Storming the Beaches*/, 25383 /*Ysondre's Farewell*/, 25454 /*Perfect Yeti Hide*/, 25645 /*Return to Sage Palerunner*/, 25682 /*Mission Complete*/, 26212 /*Lard Lost His Lunch*/, 26224 /*Hunt the Savages*/, 26281 /*The Defense of Grom'gol: Trollish Thievery*/, 26304 /*Nighttime in the Jungle*/, 26332 /*Skullsplitter Mojo*/, 26338 /*Population Con-Troll*/, 26405 /*Zul'Mamwe Mambo*/, 26535 /*Recipe for Disaster*/, 27085 /*Supporting the Troops*/, 27229 /*SMASH BROODQUEEN*/, 27244 /*The Lost Report*/, 27261 /*Questioning Reethe*/, 27294 /*More than Coincidence*/, 27879 /*Survival of the Fattest*/, 28439 /*I Am the Law and I Am the Lash*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=7500, `Flags`=327688, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=867; -- Harpy Raiders UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Hey, $n. I been sent to the Crossroads to watch over the land and take note of its happenings for my masters in Orgrimmar.$B$BOne object of my studies are the insect-like creatures found to the south in the Field of Giants. We know little of the creatures, so I be makin'' it a point to discover more. They seem to have intelligence to them, more so than any normal animal.$B$BTake this digging claw and collect some of the creatures'' eggs from their mounds, but be careful: if alerted, they will attack you.', `VerifiedBuild`=19034 WHERE `ID`=868; -- Egg Hunt @@ -4762,7 +4747,7 @@ UPDATE `quest_template` SET `AllowableRaces`=18875469, `QuestDescription`='Ah, t UPDATE `quest_template` SET `AllowableRaces`=18875469, `QuestDescription`='I suggest you find Raene and let her know the rod is finished. I''m sure she''ll know what your next course should be.$B$BBe careful... I sense a great deal of power within it for both good and ill. I hope that you and Raene know what you are doing.$B$BGood luck, $n.', `VerifiedBuild`=19034 WHERE `ID`=1029; -- Return to Raene UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=18875469, `QuestDescription`='I''d hoped Orendil''s cure would save Relara, but I fear it only slowed the disease running through her. We must find more powerful medicine! Thankfully, Orendil spoke to me of further remedies should his first one fail.$B$BElune''s Tear is a type of stone that rests in only one place: the remains of Iris Lake, destroyed by the eruption of Thunder Peak, northeast of Astranaar. Orendil said the stone will wash away corruption.$B$BPlease, $n, bring me Elune''s Tear and pray it will end my child''s sickness!', `VerifiedBuild`=19034 WHERE `ID`=1033; -- Elune's Tear UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='Elune''s Tear washed clear some of my daughter''s sickness. Her nightmares are lessened and I thank the goddess for her blessing. But ... fever still rages within her.$B$BOrendil told me of a frosted dust found among the Ruins of Stardust. Perhaps it will abate Relara''s fever. Gather some of the dust, then please return to me.$B$BThe Ruins of Stardust lie to the south, $n. May Elune speed your journey.', `VerifiedBuild`=19034 WHERE `ID`=1034; -- The Ruins of Stardust -UPDATE `quest_template` SET `RewardFactionValue2`=4294967294, `QuestDescription`='$n... yeah, I''ve heard of you. I''ve heard that you''re no friend of Booty Bay - just like us Bloodsail Buccaneers. Fleet Master Firallon is looking for hale and hearty $g men : women; just like you for a special mission.$B$BIf you''re interested, head on out to the Crimson Veil and speak with him below decks. She''s anchored off the Wild Coast east of here, next to the Riptide and the Damsel''s Luck.', `VerifiedBuild`=19034 WHERE `ID`=1036; -- Avast Ye, Scallywag +UPDATE `quest_template` SET `QuestDescription`='$n... yeah, I''ve heard of you. I''ve heard that you''re no friend of Booty Bay - just like us Bloodsail Buccaneers. Fleet Master Firallon is looking for hale and hearty $g men : women; just like you for a special mission.$B$BIf you''re interested, head on out to the Crimson Veil and speak with him below decks. She''s anchored off the Wild Coast east of here, next to the Riptide and the Damsel''s Luck.', `VerifiedBuild`=19034 WHERE `ID`=1036; -- Avast Ye, Scallywag UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Hello, $n.$B$BYou seem to be full of wanderlust by the looks of you. Have you been to the Stonetalon Mountains? It is a land plagued by the Venture Co. and other enemies of the night elves.$B$BRecently, Sentinel Wolfrunner sent my friend Kaela Shadowspear there to investigate what''s happening to the land, but I have yet to hear word back from her. I''m even more concerned because the Alliance sent a gnome mage along with her... a sign of trouble for sure.$B$BWould you find her and report back to me?', `VerifiedBuild`=19034 WHERE `ID`=1070; -- On Guard in Stonetalon UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='You see, $n, I''m a member of the Enlightened Assembly of Arcanology, Alchemy and Engineering Sciences, and it''s my goal... nay, my DUTY! to show the night elves that a blend of magic, mixtures, and mechanisms can help save their forests.$B$BBut it''s a hard fought war, and the goblins reproduce like rabbits it seems. I haven''t even had time to build my newest inventions!$B$BI need some time to plan and organize. But to do that, I need your help keeping the goblins at bay in Windshear Crag to the east...', `VerifiedBuild`=19034 WHERE `ID`=1071; -- A Gnome's Respite UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='This is it, $n. Pay close attention. The devices are done, and ready to be used.$B$BTake these pages--they''ll explain more about the detonators and explosives, and where you should place them.$B$BRemember, the success of your mission doesn''t depend on how much destruction you cause. Plan Alpha''s success depends on you bringing back the Venture Co.''s engineering plans from inside the lumber mill south of Cragpool Lake.', `VerifiedBuild`=19034 WHERE `ID`=1079; -- Covert Ops - Alpha @@ -4781,7 +4766,6 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `Que UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='$n, it is now time for you to travel to far-off lands. You are ready.$B$BYou now hunt Frostmaw, a yeti in the Alterac Mountains. He is elusive, his white coat blending into the snows of his mountain home. He rarely shows himself.$B$BBut I will show you how to entice a creature such as he. Here, take this scroll. On it I have written how Frostmaw may be lured.$B$BNow go, $n. Your journey is long and many challenges lay waiting. When you return with Frostmaw''s mane, only then is your task complete.', `VerifiedBuild`=19034 WHERE `ID`=1136; -- [DEPRECATED] Frostmaw UPDATE `quest_template` SET `QuestDescription`='Indurium has an amazing resistance to heat! I''m sure it will work for Fizzle''s pistons. But he''ll need true indurium ore, not just the flakes.$B$BTo get the ore, it must be mined from deep within Uldaman, on the northern borders of the Badlands. That is the true source of indurium.$B$BSend Fizzle Brassbolts my regards, and tell him what I told you.$B$BSafe travels, $n. And it won''t surprise me if we meet again -- once Fizzle learns of indurium he''ll probably send you to Uldaman to acquire it!', `VerifiedBuild`=19034 WHERE `ID`=1137; -- News for Fizzle UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Your time with me is just about finished. I am knowledgeable, but the Test of Lore is not mine to give. There are lessons to be learned and places to visit that others claim domain over.$B$BIf you are prepared, then seek out Braug Dimspirit--he is a shaman of great wisdom. He will test you further, so heed his words, $n.$B$BWhen you are ready, find the tunnel that connects the Stonetalon Mountains with Ashenvale: Braug dwells near there. And be careful, $n, the night elves may wish to impede your test.', `VerifiedBuild`=19034 WHERE `ID`=1152; -- Test of Lore -UPDATE `quest_template` SET `RewardFactionValue3`=4294967294, `VerifiedBuild`=19034 WHERE `ID`=1180; -- Goblin Sponsorship UPDATE `quest_template` SET `RewardMoneyDifficulty`=8, `AllowableRaces`=18875469, `QuestDescription`='Strength has left me. Your help is needed!$b$bLong ago this site was a great temple of Elune. But misfortune led to ruin when the corruption of an Old God seeped up from below and tainted the sacred moonwell.$b$bAku''Mai, servant of the Old God, rose from the waters.$b$bThe Twilight''s Hammer cultists have allied with the naga to occupy these grounds. The cultists, led by Kelris, sacrifice innocents to Aku''Mai for power.$b$bSlay Kelris and bring his head to Ashelan at the Blackfathom Camp, $n, please.', `VerifiedBuild`=19034 WHERE `ID`=1200; -- Blackfathom Villainy UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='$n, two of our spies were sent to steal documents from a ship at the Theramore docks. They gained the papers but were discovered, and were forced to throw the documents into the sea.$B$BOne spy later escaped, but was unable to recover the prize. He reported his failure to me, and I now charge the task to you.$B$BThe documents are in a footlocker, in the waters somewhere beneath the Theramore docks. Find those documents, $n, and bring them to me.', `VerifiedBuild`=19034 WHERE `ID`=1202; -- The Theramore Docks UPDATE `quest_template` SET `RewardBonusMoney`=21000, `AllowableRaces`=-1, `QuestDescription`='I''m working on a dish I call "Mudrock Soup and Bugs." I still need the major ingredients, and... well, I don''t think I''d last long trudging through Dustwallow Marsh!$B$BSo, $n, can you do some hunting for me? First, I need the tongues of Mudrock turtles. You can find Mudrocks along the coast, mostly around the bay.$B$BBut I don''t want just any tongues! I hear that the tongues of some Mudrocks are forked...$B$BThey say the forked tongues have a distinct flavor, and I want that flavor in my dish...', `VerifiedBuild`=19034 WHERE `ID`=1204; -- Mudrock Soup and Bugs @@ -4789,12 +4773,9 @@ UPDATE `quest_template` SET `RewardBonusMoney`=27600, `AllowableRaces`=-1, `Ques UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Jorgen, you ol'' sonuva.... So, that''s how it''s going to be, huh?$B$BAll right, I can deal with that. I hope he finds the Twisting Nether that much sooner!$B$BHere''s what''s gonna happen, $n. I''ll start using my contacts here, but you''re doing most of the footwork so I save some coin.$B$BHead to Darkshire in Duskwood and find Watcher Backus--he usually patrols the north road right outside of town. Just tell him you''re looking into any Defias activity for me and he''ll help you out with any information he can.', `VerifiedBuild`=19034 WHERE `ID`=1243; -- The Missing Diplomat UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Whoa, this looks way too complex to be something to just lead you astray. I shouldn''t even be looking at this stuff. Take it to Trias--he''ll be able to make sense of it. And DON''T let anyone get in your way. This is bigger than me. It might even be bigger than him, but we''ll see.$B$BAnd do me a favor, $n, don''t tell anyone I helped you. If my superiors found out I knew about any of this and didn''t share it with them they''d probably hang me.', `VerifiedBuild`=19034 WHERE `ID`=1245; -- The Missing Diplomat UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Cursed muckshell! You can''t kill Marg! Ah, but I am dead. So it must have slain me...$B$BBut my mission! My mission! You, $n, must complete it.$B$BWhile near Theramore, I spied a group of Alliance soldiers camped on the beach. And one soldier wore a pendant... a pendant laden with more gems than any soldier could afford!$B$BThat night I snuck into their camp and stole the pendant, but on my return to base a muckshell crab-man killed me!$B$B$n, you must find that muckshell and recover the pendant!', `VerifiedBuild`=19034 WHERE `ID`=1261; -- Marg Speaks -UPDATE `quest_template` SET `RewardBonusMoney`=85200, `VerifiedBuild`=19034 WHERE `ID` IN (1318 /*Unfinished Gordok Business*/, 4742 /*Seal of Ascension*/, 5166 /*Breastplate of the Chromatic Flight*/, 5167 /*Legplates of the Chromatic Defier*/, 5307 /*Corruption*/, 5848 /*Of Love and Family*/, 7461 /*The Madness Within*/, 7506 /*The Emerald Dream...*/, 7703 /*Unfinished Gordok Business*/, 7761 /*Blackhand's Command*/, 7787 /*Rise, Thunderfury!*/, 8183 /*The Heart of Hakkar*/, 8751 /*The Protector of Kalimdor*/, 8756 /*The Qiraji Conqueror*/, 8761 /*The Grand Invoker*/, 8801 /*C'Thun's Legacy*/); +UPDATE `quest_template` SET `RewardBonusMoney`=85200, `VerifiedBuild`=19034 WHERE `ID` IN (1318 /*Unfinished Gordok Business*/, 4621 /*Avast Ye, Admiral!*/, 4742 /*Seal of Ascension*/, 5166 /*Breastplate of the Chromatic Flight*/, 5167 /*Legplates of the Chromatic Defier*/, 5307 /*Corruption*/, 5848 /*Of Love and Family*/, 7461 /*The Madness Within*/, 7506 /*The Emerald Dream...*/, 7703 /*Unfinished Gordok Business*/, 7761 /*Blackhand's Command*/, 7787 /*Rise, Thunderfury!*/, 8183 /*The Heart of Hakkar*/, 8751 /*The Protector of Kalimdor*/, 8756 /*The Qiraji Conqueror*/, 8761 /*The Grand Invoker*/, 8801 /*C'Thun's Legacy*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Now that you scared the centaur clans, it''s time to bleed them. When traveling Desolace, hunt centaur. I don''t care which clan you hunt. Just gather ears. A hoard of ears.$B$BBy weakening their numbers you will weaken their resolve, and stamp out any thoughts of expansion.$B$BGood hunting, $n.', `VerifiedBuild`=19034 WHERE `ID`=1366; -- Centaur Bounty -UPDATE `quest_template` SET `RewardFactionValue1`=4294967291, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=1368; -- Gelkis Alliance UPDATE `quest_template` SET `QuestDescription`='$n, you helped us against the Magram. Now, help us beat the Maraudine! Kill the head of their clan, Khan Hratha!$B$BTo face him, blow the Maraudine War Horn. It is atop a high bluff in the Valley of Spears.$B$BBut to blow the horn, you must gain a warhorn mouthpiece. These are rare, carried only by trusted Maraudine centaur.$B$BAfter the horn is blown, centaur will come. Kill them until Hratha appears.$B$BKhan Hratha holds the piece of... a key. Bring it to me...', `VerifiedBuild`=19034 WHERE `ID`=1380; -- Khan Hratha -UPDATE `quest_template` SET `RewardFactionValue1`=4294967289, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=1382; -- Strange Alliance -UPDATE `quest_template` SET `RewardFactionValue2`=4294967289, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=1385; -- Brutal Politics UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Many clans make up the centaur race. Each has its own leader and agenda, but all the clans have one thing in common. Cruelty.$B$BIf we are to ever find peace, then the centaurs must be removed. And so I put you on the task to do just that.$B$BWhile wandering Desolace, hunt centaur and take their ears. Bring me many, many ears.$B$BDo this in service of the Alliance, $n, and we will be one step closer to war''s end.', `VerifiedBuild`=19034 WHERE `ID`=1387; -- Centaur Bounty UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `QuestDescription`='This crate of powerstones needs to go to Nethergarde Keep, in the Blasted Lands. They won''t hold their power for long, so we can''t ship them with the next caravan.$B$BYou must take them, and you must take them quickly.$B$BBring them to Quartermaster Lungertz in Nethergarde Keep. To reach the keep, you must travel east through Deadwind Pass, then east through the Swamp of Sorrows, then south through the Blasted Lands.$B$BUse caution, $n. You will travel through dangerous lands, yet you must not fail.', `VerifiedBuild`=19034 WHERE `ID`=1395; -- Supplies for Nethergarde UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='I owe you greatly, $n. An honorable heart beats within you. And now I have another task for which I humbly ask your aid.$B$BIf I''m ever to reach Nethergarde, then I must fix this wagon. And for that... I will need wood. Strong, dry wood--not the spongy, tangled wood of the swamp''s trees.$B$B$n, go east to the coast and search for driftwood that has been dried by the sun. Bring it to me.', `VerifiedBuild`=19034 WHERE `ID`=1398; -- [DEPRECATED]Driftwood @@ -4872,10 +4853,10 @@ UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='It''s terri ', `VerifiedBuild`=19034 WHERE `ID`=2928; -- Gyrodrillmatic Excavationators UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='I trusted Thermaplugg, $r. Never did I expect that he would betray me and the entire gnomish people. And for what? Power? Wealth? All things that he would have had in time. Now we have been displaced from our home and that madman is in charge. The king of nothing....$B$BWe will retake Gnomeregan, $n. We will not stop until the city is back in our control. If you wish to join in our fight, a simple task I ask of you: Kill the betrayer. Destroy Mekgineer Thermaplugg.', `VerifiedBuild`=19034 WHERE `ID`=2929; -- The Grand Betrayal UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Have the first look at my new invention, $n. All you need to do is target whatever it is you''d like to take a picture of, and push the button.$B$BWhat was that creature from the Hinterlands that you mentioned? Gammerita? Well, good luck finding her. I''m sure Daryn will be quite pleased with the snapshot you return to her.$B$BIn any case, here''s the Super Snapper. Have fun!', `VerifiedBuild`=19034 WHERE `ID`=2944; -- The Super Snapper FX -UPDATE `quest_template` SET `RewardMoney`=4294966997, `VerifiedBuild`=19034 WHERE `ID` IN (2945 /*Grime-Encrusted Ring*/, 2951 /*The Sparklematic 5200!*/, 2953 /*More Sparklematic Action*/, 4601 /*The Sparklematic 5200!*/, 4602 /*The Sparklematic 5200!*/, 4603 /*More Sparklematic Action*/, 4604 /*More Sparklematic Action*/); +UPDATE `quest_template` SET `RewardMoney`=-299, `VerifiedBuild`=19034 WHERE `ID` IN (2945 /*Grime-Encrusted Ring*/, 2951 /*The Sparklematic 5200!*/, 2953 /*More Sparklematic Action*/, 4601 /*The Sparklematic 5200!*/, 4602 /*The Sparklematic 5200!*/, 4603 /*More Sparklematic Action*/, 4604 /*More Sparklematic Action*/); UPDATE `quest_template` SET `RewardBonusMoney`=18600, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (2947 /*Return of the Ring*/, 26181 /*Back to Darkbreak Cove*/, 27351 /*A Royal Reward*/, 27354 /*Mastering the Arcane*/); -UPDATE `quest_template` SET `RewardMoney`=4294964297, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=2948; -- Gnome Improvement -UPDATE `quest_template` SET `RewardMoney`=4294964297, `VerifiedBuild`=19034 WHERE `ID`=2950; -- Nogg's Ring Redo +UPDATE `quest_template` SET `RewardMoney`=-2999, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=2948; -- Gnome Improvement +UPDATE `quest_template` SET `RewardMoney`=-2999, `VerifiedBuild`=19034 WHERE `ID`=2950; -- Nogg's Ring Redo UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `AllowableRaces`=-1, `QuestDescription`='The effects of the Gordunni Ogre tribe can hardly go unnoticed in this area. Look around, $n; their very presence scars this land. We must push them back before they expand even further into Feralas.$B$BFollow the river north, and you will find their outpost. Decrease their numbers, $n. We must show them that their kind is not wanted here.', `VerifiedBuild`=19034 WHERE `ID`=2975; -- The Ogres of Feralas UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='These seem to be plans for some sort of dark ceremony, $n. From what I can make out, this ritual is conducted by the Gordunni mage-lords.$B$BFind one of these mage-lords, and from him, gather an orb.$B$BThe orb of a mage contains great power, and will help us discover more about this ceremony and the magic that the Gordunni wield.', `VerifiedBuild`=19034 WHERE `ID`=2979; -- Dark Ceremony UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AllowableRaces`=-1, `QuestDescription`='Now that you have proven that you are a true fighter, I trust that you possess the courage to continue with the task at hand.$B$BTravel to the High Wilderness, southwest of here. There lie some abandoned and destroyed structures, on land that once belonged to the night elves. Look for these ruins, and when you see the withered trees and desecrated terrain, you will find the Gordunni. Push them back.$B$BThese ogres are much stronger than the ones you faced previously, $n. Be aware.', `VerifiedBuild`=19034 WHERE `ID`=2980; -- The Ogres of Feralas @@ -4933,7 +4914,7 @@ UPDATE `quest_template` SET `QuestDescription`='The antidote is ready, $n. Pleas UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Expert engineering yields two distinct disciplines: gnome and goblin. Clearly, goblin engineering is the choice of all brilliant engineers. Learn to master the world through the judicious use of high explosives and fantastic gear!$B$B$n, read this manual. If you want to learn about goblin engineering, then take it to Nixx Sprocketspring in Gadgetzan. Remember - membership is permanent and prevents joining the other discipline, so make sure this is what you want before finishing his task.', `VerifiedBuild`=19034 WHERE `ID`=3526; -- Goblin Engineering UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `QuestDescription`='This final tablet goes to someone very dangerous, $n. Heed me when I tell you that I trust this person far less than anyone else I''ve asked you to meet with.$B$BArchmage Xylem has a tower up in the hills overlooking Azshara. He''s human, but he acts like no human I''ve met... or killed. He exudes power, and I dare not ask him what he plans on doing with the tablet.$B$BHe came to me, but told me that his bodyguard Sanath would help me get to the tower when I was ready to meet him. Look north for Sanath.', `VerifiedBuild`=19034 WHERE `ID`=3561; -- Delivery to Archmage Xylem UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `QuestDescription`='Take this letter to Jediga. Let her know that our deal has been beneficial and I be pleased with her work.$B$BYou tell her she come back to Orgrimmar fast and Jes''rimon make sure he take good care of her.$B$BTell her that, and maybe in the future I have need of your services again, $n.', `VerifiedBuild`=19034 WHERE `ID`=3563; -- Jes'rimon's Payment to Jediga -UPDATE `quest_template` SET `RewardMoneyDifficulty`=1, `RewardFactionValue2`=4294967290, `QuestDescription`='Kim''jael indeed!! Do you know what Kim''jael means to the Blood elves, $n? Little rat... or something like that. The big bullies!$B$BThey hired me to help them scout the area looking for some sort of lost treasures. Of course I jumped aboard the moment they said "treasure" and the amount they were willing to pay, but of course, they turned on me and tried to kill me... ME!$B$BGoes to show you, you can''t trust a Blood elf.$B$BThe problem is, they still have my equipment and I can''t get it back. Help me out?', `VerifiedBuild`=19034 WHERE `ID`=3601; -- Kim'jael Indeed! +UPDATE `quest_template` SET `RewardMoneyDifficulty`=1, `QuestDescription`='Kim''jael indeed!! Do you know what Kim''jael means to the Blood elves, $n? Little rat... or something like that. The big bullies!$B$BThey hired me to help them scout the area looking for some sort of lost treasures. Of course I jumped aboard the moment they said "treasure" and the amount they were willing to pay, but of course, they turned on me and tried to kill me... ME!$B$BGoes to show you, you can''t trust a Blood elf.$B$BThe problem is, they still have my equipment and I can''t get it back. Help me out?', `VerifiedBuild`=19034 WHERE `ID`=3601; -- Kim'jael Indeed! UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=85200, `QuestDescription`='Razelikh''s lair is atop the highest mountain in the Blasted Lands. The only way to the lair is through the use of the teleport runes near the mountain. As long as you hold the amulet, you can freely transport up to the lair. Once you reach the lair, you must conjure the beast. The amulet is your key, $n. Use it on the Altar of the Defiler.$B$BShould you defeat the Defiler, bring back his horn. It will become a symbol of hope for all that view it - proof that heroes do exist in this war torn world. ', `VerifiedBuild`=19034 WHERE `ID`=3628; -- You Are Rakh'likh, Demon UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Expert engineering yields two distinct disciplines: gnome and goblin. I only bother to mention goblin engineering because I''m a fair trainer. They like to make things that blow up, and they rarely care what is in the way - even themselves.$B$B$n, read this manual. If you want to learn how to blow yourself up, then take it to Nixx Sprocketspring in Gadgetzan. Remember - membership is permanent and prevents joining the other discipline, so make sure this is what you want before finishing his task.', `VerifiedBuild`=19034 WHERE `ID`=3629; -- Goblin Engineering @@ -4973,7 +4954,6 @@ UPDATE `quest_template` SET `QuestDescription`='A friend of mine named Iverron u UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `QuestDescription`='I''m always looking for a quick way to earn a gold, $n. If you help me with my newest idea, I''ll let you in on a little of the profit. How does that sound to you?$B$BI thought so!$B$BHead to the tar pits in northern Un''Goro Crater, and collect me some tar. Not just any tar, now, you''ll need to get it from the beasts that live around the tar pits. Regular tar just simply isn''t sticky enough.$B$BThe plant-like creatures contain chlorophyll in their skin, and mixed with the tar, it''s super sticky!', `VerifiedBuild`=19034 WHERE `ID`=4504; -- Super Sticky UPDATE `quest_template` SET `QuestDescription`='Here''s the lure. Inside the hive network should be a crystal of some sort. We think the silithid use the crystal as some sort of hive-wide attunement device. As for where this crystal might be, I''d say try the hatcheries inside the hive.$B$BUsing the lure on the crystal should roust out the queen, but be warned - she will probably be protected by several guards. Take out the queen and remove her brain. As icky as that sounds, we desperately need to study it. Good luck, $n!', `VerifiedBuild`=19034 WHERE `ID`=4507; -- Pawn Captures Queen UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `AllowableRaces`=-1, `QuestDescription`='I''m going to need more samples, $n. But--and I don''t know how to put this--they have to be pure samples. I know, I know. "What does ''pure'' mean, Laris?" I''m not sure. I do know that these are corrupt... just like Felwood. Which is what makes my realization so important. The oozes seem to adapt... to take on the aspects of the area they''re in. I''ll need to find samples that haven''t been polluted. But where? Where?!$B$BBah! $n, take these containers just in case you find any on your own.', `VerifiedBuild`=19034 WHERE `ID`=4513; -- A Little Slime Goes a Long Way -UPDATE `quest_template` SET `RewardBonusMoney`=85200, `RewardFactionValue2`=4294967289, `VerifiedBuild`=19034 WHERE `ID`=4621; -- Avast Ye, Admiral! UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Finally, you are of age, $n... of age to battle in the name of the Horde. To conquer for the glory of the Warchief.$B$BYes...$B$B<Kaltunk looks you over.>$B$BYou will do nicely.$B$BNo doubt you wish to find a great dragon or demon and strangle it with your bare hands, but perhaps it would be wise to start on something less... dangerous.$B$B<Kaltunk laughs.>$B$BReport to Gornek, he should be able to assign a task better suited to a young $c. You will find Gornek in the Den, to the west. ', `VerifiedBuild`=19034 WHERE `ID`=4641; -- Your Place In The World UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `QuestDescription`='You have no doubt seen the worgs which the Blackrock orcs command.$B$BIt is curious - no matter how many we destroy, their numbers never dwindle. My scouts have reported that the worgs are bred, trained, and ultimately exported from Blackrock Spire: capital city of the Blackrock orcs. You must travel to Blackrock Spire and discover the source of this menace. Discover... and destroy.$B$BGood luck, $n. May Cenarius protect you... @@ -5027,8 +5007,7 @@ UPDATE `quest_template` SET `RewardBonusMoney`=85200, `QuestDescription`='A grea UPDATE `quest_template` SET `RewardBonusMoney`=56700, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=5518; -- The Gordok Ogre Suit UPDATE `quest_template` SET `RewardBonusMoney`=70800, `QuestDescription`='$G Brother : Sister; $n - your deeds on behalf of the Argent Dawn are far too numerous to be recounted easily. As a fitting tribute, I''ll part with one of our special Chromatic Mantles of the Dawn - a version that protects the wearer from all forms of resistible magic simultaneously. Chromatic Mantles of the Dawn are reserved for only the mightiest of the Dawn''s heroes!$B$BBring to me twenty-five valor tokens as a sign of tribute, and I''ll give you the finest of all our mantles.', `VerifiedBuild`=19034 WHERE `ID`=5521; -- Chromatic Mantle of the Dawn UPDATE `quest_template` SET `RewardBonusMoney`=85200, `QuestDescription`='Your knowledge of Eldre''Thalas - Dire Maul - in Feralas will now come into play, $n. In the eastern part of the ruined city is where Alzzin the Wildshaper has exerted his corrupt dominion. Go there with all due haste and brave whatever challenges await you.$B$BThe Fruit of Fertility, now corrupted as the Felvine, should be close to Alzzin. When he falls, capture whatever essence of the Felvine you can. Seal it in the Reliquary, and bring it to me.$B$BGood luck, and Cenarion''s speed.', `VerifiedBuild`=19034 WHERE `ID`=5526; -- Shards of the Felvine -UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardFactionValue2`=4294967290, `VerifiedBuild`=19034 WHERE `ID` IN (5534 /*Kim'jael's ""Missing"" Equipment*/, 26051 /*Sunken Treasure*/); -UPDATE `quest_template` SET `RewardMoney`=4294817297, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=5538; -- Mold Rhymes With... +UPDATE `quest_template` SET `RewardMoney`=-149999, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=5538; -- Mold Rhymes With... UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='Hegnar Rumbleshot sells guns off the road to Anvilmar. Riflemen and mortar teams spend a lot of time practicing out near his shop, and he''s always needing fresh ammunition.$B$BBut... the last crate of ammo I sent him got lost along the way. My courier said he was camped near the Grizzled Den when wendigo chased him away... and the fool left Rumbleshot''s ammo behind!$B$B$n, can you get that ammo and take it to Rumbleshot? He''s been waiting on it and I''m sure he''s running low.', `VerifiedBuild`=19034 WHERE `ID`=5541; -- Ammo for Rumbleshot UPDATE `quest_template` SET `AllowableRaces`=4, `VerifiedBuild`=19034 WHERE `ID` IN (5625 /*Garments of the Light*/, 14083 /*Learn to Ride in Dun Morogh*/); UPDATE `quest_template` SET `QuestInfoID`=21, `QuestDescription`='Time''s come for you to head to Stormwind, $n. High Priestess Laurena in the Cathedral of Light wants to speak to you. Gotta be somethin'' really good or really bad for the High Priestess to want you there personally, but I''m guessin'' you''ve only done well for yourself and it''s a good thing that she wants to speak to ya.$B$BBut don''t waste too much time ''round here. I''d head there as soon as you can.', `VerifiedBuild`=19034 WHERE `ID`=5637; -- Desperate Prayer @@ -5123,13 +5102,12 @@ UPDATE `quest_template` SET `RewardBonusMoney`=85200, `FlagsEx`=8, `AllowableRac UPDATE `quest_template` SET `RewardBonusMoney`=85200, `AllowableRaces`=18875469, `QuestDescription`='Seek out Major Mattingly in the Valley of Heroes, $n. He will be expecting you...', `VerifiedBuild`=19034 WHERE `ID`=7496; -- Celebrating Good Times UPDATE `quest_template` SET `RewardBonusMoney`=56700, `FlagsEx`=8, `VerifiedBuild`=19034 WHERE `ID` IN (7604 /*A Binding Contract*/, 9250 /*Frame of Atiesh*/); UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='All the preparations are made. Now, you must perform the ritual to create a Circle of Greater Summoning, then use the parchment infused with Xorothian stardust... to open a portal to Xoroth.$B$BI have written the instructions for the ritual onto a scroll. Study it closely, for you must perform each step exactly if you wish to succeed.$B$BFortune to you, $n. And may the souls of your enemies swiftly find their way into your shard pouch.', `VerifiedBuild`=19034 WHERE `ID`=7631; -- Dreadsteed of Xoroth -UPDATE `quest_template` SET `RewardMoney`=4293467297, `AllowableRaces`=-1, `QuestDescription`='In order to prepare yourself for this task, you must first show due sacrifice and judgment... with an emphasis on sacrifice.$B$BYou must acquire High Priest Rohan''s exorcism censer for your task. Even though its use will be for good and just reasons, due compensation must be given for it.$B$BProceed to Ironforge and speak with the High Priest. By bringing ample coin with you to help offset the loss of his censer, it will show your due sacrifice.$B$BGo now $n, time is of the essence.', `VerifiedBuild`=19034 WHERE `ID`=7637; -- Emphasis on Sacrifice -UPDATE `quest_template` SET `RewardMoney`=4293467297, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=7642; -- Collection of Goods +UPDATE `quest_template` SET `RewardMoney`=-1499999, `AllowableRaces`=-1, `QuestDescription`='In order to prepare yourself for this task, you must first show due sacrifice and judgment... with an emphasis on sacrifice.$B$BYou must acquire High Priest Rohan''s exorcism censer for your task. Even though its use will be for good and just reasons, due compensation must be given for it.$B$BProceed to Ironforge and speak with the High Priest. By bringing ample coin with you to help offset the loss of his censer, it will show your due sacrifice.$B$BGo now $n, time is of the essence.', `VerifiedBuild`=19034 WHERE `ID`=7637; -- Emphasis on Sacrifice +UPDATE `quest_template` SET `RewardMoney`=-1499999, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID`=7642; -- Collection of Goods UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='The time has come, $n, for you to learn about what it will take for you to acquire something you have no doubt waited on for some time... your charger.$B$BSpeak with Lord Grayson Shadowbreaker in Stormwind''s Cathedral District. It is he who will guide you not only though the legerdemain of a Paladin''s most trusted mount, but the tasks before you to acquire one of your own.$B$BI wish you the best in this trial. For the Light, noble $G brother : sister;!', `VerifiedBuild`=19034 WHERE `ID`=7670; -- Lord Grayson Shadowbreaker UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='When that traitor, Maltorius, left our clan, he left with something more valuable than a pristine arcane crystal: Our recipe for fiery flux! I''d bet anything that the recipe was part of the deal in his new promotion amongst the Dark Irons.$B$BI want you to get our secret plans back, $n. I''m sure they''re somewhere near Maltorius, deep inside the Slag Pit.', `VerifiedBuild`=19034 WHERE `ID`=7722; -- What the Flux? UPDATE `quest_template` SET `RewardBonusMoney`=85200, `FlagsEx`=8, `AllowableRaces`=-1, `LogDescription`='Return the Head of Nefarian to Vol''jin in Orgrimmar.', `VerifiedBuild`=19034 WHERE `ID`=7783; -- The Lord of Blackrock UPDATE `quest_template` SET `RewardBonusMoney`=85200, `AllowableRaces`=-1, `LogDescription`='Speak with Overlord Natoj in Orgrimmar. He stands waiting for you in the Valley of Strength.', `QuestDescription`='Seek out Overlord Natoj in the Valley of Strength.', `VerifiedBuild`=19034 WHERE `ID`=7784; -- The Lord of Blackrock -UPDATE `quest_template` SET `FlagsEx`=8, `VerifiedBuild`=19034 WHERE `ID` IN (7785 /*Examine the Vessel*/, 7810 /*Arena Master*/, 7907 /*Darkmoon Beast Deck*/, 7908 /*Arena Master*/, 7927 /*Darkmoon Portals Deck*/, 7928 /*Darkmoon Warlords Deck*/, 7929 /*Darkmoon Elementals Deck*/, 7937 /*Your Fortune Awaits You...*/, 7944 /*Your Fortune Awaits You...*/, 7945 /*Your Fortune Awaits You...*/, 8784 /*Secrets of the Qiraji*/, 9296 /*reuse*/, 9297 /*reuse*/, 9298 /*reuse*/, 9875 /*Uncatalogued Species*/, 10938 /*Darkmoon Blessings Deck*/, 10939 /*Darkmoon Storms Deck*/, 10940 /*Darkmoon Furies Deck*/, 10941 /*Darkmoon Lunacy Deck*/, 12517 /*Rogues Deck*/, 12518 /*Mages Deck*/, 12781 /*Welcome!*/, 12798 /*Swords Deck*/, 13311 /*Demons Deck*/, 13324 /*Darkmoon Prisms Deck*/, 13325 /*Darkmoon Chaos Deck*/, 13326 /*Darkmoon Nobles Deck*/, 13327 /*Darkmoon Undeath Deck*/, 13622 /*Ancient History*/, 24667 /*Firestone Point*/, 25771 /*One Draenei's Junk...*/, 25772 /*Kum'isha's Endeavors*/, 27664 /*Darkmoon Volcanic Deck*/, 27665 /*Darkmoon Hurricane Deck*/, 27666 /*Darkmoon Tsunami Deck*/, 27667 /*Darkmoon Earthquake Deck*/); UPDATE `quest_template` SET `RewardBonusMoney`=85200, `QuestDescription`='I have told you all that I know, $n. It is you who must find elementium. It is you who must destroy the Firelord''s corporeal form.$B$BDo this and gain the blessing of Thunderaan.', `VerifiedBuild`=19034 WHERE `ID`=7786; -- Thunderaan the Windseeker UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `AllowableRaces`=-1, `QuestDescription`='The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $n, and you will be rewarded. ', `VerifiedBuild`=19034 WHERE `ID` IN (7789 /*Quell the Silverwing Usurpers*/, 7875 /*Quell the Silverwing Usurpers*/); @@ -5161,7 +5139,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AllowableRaces`=-1, `Que UPDATE `quest_template` SET `RewardMoney`=20, `RewardMoneyDifficulty`=2, `VerifiedBuild`=19034 WHERE `ID` IN (8194 /*Apprentice Angler*/, 8221 /*Rare Fish - Keefer's Angelfish*/, 8224 /*Rare Fish - Dezian Queenfish*/, 8225 /*Rare Fish - Brownell's Blue Striped Racer*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=85200, `VerifiedBuild`=19034 WHERE `ID`=8201; -- A Collection of Heads UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=56700, `VerifiedBuild`=19034 WHERE `ID`=8240; -- A Bijou for Zanza -UPDATE `quest_template` SET `QuestInfoID`=21, `RewardItem1`=0, `RewardAmount1`=0, `RewardFactionValue2`=4294967293, `VerifiedBuild`=19034 WHERE `ID`=8249; -- Junkboxes Needed +UPDATE `quest_template` SET `QuestInfoID`=21, `RewardItem1`=0, `RewardAmount1`=0, `VerifiedBuild`=19034 WHERE `ID`=8249; -- Junkboxes Needed UPDATE `quest_template` SET `RewardBonusMoney`=6600, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (8262 /*Arathor Advanced Care Package*/, 8265 /*Defiler's Advanced Care Package*/, 11098 /*To Skettis!*/, 11228 /*Hell Has Frozen Over...*/, 11295 /*The Offensive Begins*/, 11436 /*Let's Go Surfing Now*/, 11448 /*The Explorers' League Outpost*/, 11474 /*Problems on the High Bluff*/, 11489 /*Iron Rune Constructs and You: Collecting Data*/, 11491 /*Iron Rune Constructs and You: The Bluff*/, 11585 /*Hellscream's Vigil*/, 11596 /*The Defense of Warsong Hold*/, 11636 /*Magic Carpet Ride*/, 11642 /*Tank Ain't Gonna Fix Itself*/, 11703 /*Get to Getry*/, 11720 /*The Invasion of Gammoth*/, 11791 /*Notify Arlos*/, 11977 /*A Tauren Among Taunka*/, 11979 /*The Taunka and the Tauren*/, 12034 /*Victory Nears...*/, 12071 /*Attack by Air! */, 12101 /*The Good Doctor...*/, 12104 /*Return to Soar*/, 12115 /*Koltira and the Language of Death*/, 12181 /*Give it a Name*/, 12182 /*To Venomspite!*/, 12235 /*Naxxramas and the Fall of Wintergarde*/, 12281 /*Understanding the Scourge War Machine*/, 12320 /*Understanding the Language of Death*/, 12440 /*To Stars' Rest!*/, 12486 /*To Bor'gorok Outpost, Quickly!*/, 12767 /*Speak with your Ambassador*/); UPDATE `quest_template` SET `TimeAllowed`=300, `VerifiedBuild`=19034 WHERE `ID`=8274; -- Test Kill Quest UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=50700, `QuestDescription`='Blasted! The antidote didn''t work. Noggle must''ve been stung by one of the stronger creatures in the far south.$B$BI''m going to need you to go there and get me some more samples, $n. The good news is that since their poison is stronger I won''t require as many. The bad news is that there are more kinds of poisonous creatures crawling around the southern area so you''ll have to draw from more sources.', `VerifiedBuild`=19034 WHERE `ID`=8278; -- Noggle's Last Hope @@ -5237,7 +5215,7 @@ UPDATE `quest_template` SET `LogDescription`='Bring the Husk of the Old God, 2 I UPDATE `quest_template` SET `RewardBonusMoney`=56700, `QuestDescription`='The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $n, and I will make you a powerful weapon from the finest Qiraji materials.', `VerifiedBuild`=19034 WHERE `ID`=8707; -- Blade of Vaulted Secrets UPDATE `quest_template` SET `AllowableRaces`=33555378, `QuestDescription`='Greetings, $n. Before I assign you to more involved tasks in the war, you''ll need to do your share of field duty. $B$BYou will find Captain Skullsplit''s Orgrimmar Legion outside Hive''Regal.$B$BReport to him and come back to me with proof of your field service. I shall have a more advanced assignment ready for you.$B$BOh, please do your best to stay away from the Ironforge Brigade. Tensions are high among our Alliance and Horde volunteers.', `VerifiedBuild`=19034 WHERE `ID`=8731; -- Field Duty UPDATE `quest_template` SET `QuestDescription`='We''ve sent our best scouts deep into the silithid hives to gather intelligence. Scout Landion has been watching the silithid movements at Hive''Regal for several days now. Find him and obtain a written report. We need to be able to act on that information as soon as possible, $n.', `VerifiedBuild`=19034 WHERE `ID`=8738; -- Hive'Regal Scout Report -UPDATE `quest_template` SET `RewardMoney`=4294917297, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (8763 /*The Hero of the Day*/, 8799 /*The Hero of the Day*/); +UPDATE `quest_template` SET `RewardMoney`=-49999, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (8763 /*The Hero of the Day*/, 8799 /*The Hero of the Day*/); UPDATE `quest_template` SET `QuestDescription`='We have not sat idly by for a millennium, $n.$B$BWe have watched these beasts feast on their own when they have exhausted their utility. We have listened as they have plotted and schemed to destroy our world. And we have learned of their own internal treachery.$B$BWeaknesses exist and we know how to use those weaknesses to our advantage.$B$BFind and bring me their ceremonial armaments: Combined with the element created from the volatility of their own God, they will become a force of reckoning.', `VerifiedBuild`=19034 WHERE `ID`=8789; -- Imperial Qiraji Armaments UPDATE `quest_template` SET `AllowableRaces`=-1, `QuestDescription`='Hello, I''m glad that you''ve decided to hear me out. The Horde needs all of the help that it can get to prepare for the Ahn''Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won''t be able to meet our goals without your assistance, $n!$B$BYou should go speak with the guy in charge, Warlord Gorchuk. What do you say, $c? Will you help out with the vital preparations?', `VerifiedBuild`=19034 WHERE `ID` IN (8792 /*The Horde Needs Your Help!*/, 8793 /*The Horde Needs Your Help!*/, 8794 /*The Horde Needs Your Help!*/, 10500 /*The Horde Needs Your Help!*/); UPDATE `quest_template` SET `QuestDescription`='Hello, I''m glad that you''ve decided to hear me out. The Alliance needs all of the help that it can get to prepare for the Ahn''Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won''t be able to meet our goals without your assistance, $n!$B$BYou should go speak with the guy in charge, Field Marshal Snowfall. What do you say, $c? Will you help out with the vital preparations?', `VerifiedBuild`=19034 WHERE `ID` IN (8795 /*The Alliance Needs Your Help!*/, 8796 /*The Alliance Needs Your Help!*/, 8797 /*The Alliance Needs Your Help!*/); @@ -5252,8 +5230,8 @@ UPDATE `quest_template` SET `AllowableRaces`=33555378, `QuestDescription`='It''s UPDATE `quest_template` SET `AllowableRaces`=33555378, `QuestDescription`='$n, I have one last favor to ask of you. Would you please relay what''s transpired here to Magister Duskwither, back at the Farstrider Retreat? Let him know that I am well, but make certain that he is aware that some of the apprentices have become Wretched.$B$BThank you for your help!', `VerifiedBuild`=19034 WHERE `ID`=8890; -- Word from the Spire UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=50332671, `QuestDescription`='Sunsail Anchorage has been overrun by Wretched scum. As soon as we manage to get reinforcements to the area we''ll show those thugs who''s boss, $n.$B$BIn the meantime you can help by showing them a bit of discipline. Go in there and show them we are not to be trifled with. You will find Sunsail Anchorage just to the west of Fairbreeze Village.', `VerifiedBuild`=19034 WHERE `ID`=8892; -- Situation at Sunsail Anchorage UPDATE `quest_template` SET `RewardMoneyDifficulty`=2, `AllowableRaces`=50332671, `QuestDescription`='I''m pleased to discover that you''re at least somewhat competent, $n. I''ll give you another task since you seem so eager to prove yourself.$B$BThis is a letter to Ley-Keeper Caidanis, the arcanist in charge of the upkeep of the North Sanctum. Go southwest of Falconwing Square and you will find him. He is a very important person, so I hope you don''t bother him too much with trivial chatter.', `VerifiedBuild`=19034 WHERE `ID`=8895; -- Delivery to the North Sanctum -UPDATE `quest_template` SET `RewardMoney`=4294567297, `QuestDescription`='Ah, you''re in need of my latest project... the extra-dimensional ghost revealer! Unfortunately I''ve run out of funds and manpower.$B$BYou''re willing to help? Excellent! Our first task is to build a device to harvest the very fabric of death! Building an ectoplasmic distiller won''t be an easy task, $n.$B$BI''ll need you to bring me an arcanite converter, some greater eternal essences and stonescale oil. I''ll also need some volcanic ash from the lava pools in the Burning Steppes to build a filter.', `VerifiedBuild`=19034 WHERE `ID`=8921; -- The Ectoplasmic Distiller -UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardFactionValue2`=4294967291, `TimeAllowed`=6000, `VerifiedBuild`=19034 WHERE `ID`=9065; -- The Pattymac Special +UPDATE `quest_template` SET `RewardMoney`=-399999, `QuestDescription`='Ah, you''re in need of my latest project... the extra-dimensional ghost revealer! Unfortunately I''ve run out of funds and manpower.$B$BYou''re willing to help? Excellent! Our first task is to build a device to harvest the very fabric of death! Building an ectoplasmic distiller won''t be an easy task, $n.$B$BI''ll need you to bring me an arcanite converter, some greater eternal essences and stonescale oil. I''ll also need some volcanic ash from the lava pools in the Burning Steppes to build a filter.', `VerifiedBuild`=19034 WHERE `ID`=8921; -- The Ectoplasmic Distiller +UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `TimeAllowed`=6000, `VerifiedBuild`=19034 WHERE `ID`=9065; -- The Pattymac Special UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=50332671, `QuestDescription`='I hope you learn a valuable lesson today, $n. Never trust someone else to lie for you.$B$BNow I want you to go back to my two dimwitted students and discipline them using this wand. My magic tells me that you''ll find them along the road to the west on the other side of the Dead Scar.$B$BCome back to me after you''ve done this. I''ll give you a small reward for your troubles.', `VerifiedBuild`=19034 WHERE `ID`=9066; -- Swift Discipline UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (9067 /*The Party Never Ends*/, 9156 /*Wanted: Knucklerot and Luzran*/, 25591 /*Thunderdrome: Grudge Match!*/, 25688 /*The Altar of Storms*/, 26043 /*BEWARE OF CRAGJAW!*/, 26334 /*Bloodlord Mandokir*/, 26386 /*Surkhan*/, 26419 /*Shadra the Venom Queen*/, 27090 /*Andorhal, Once and For All*/, 27297 /*Justice Dispensed*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=33555378, `QuestDescription`='Since you''re here, $n, I''ve a favor to ask you. Ley-Keeper Velania''s apprentice dropped by earlier to ask for assistance. Apparently there''s some malfunction happening at the West Sanctum. I''ve been a bit busy entertaining our... most pleasant... dwarven guest. See if you can give her a hand. You''ll find the West Sanctum southwest of here.', `VerifiedBuild`=19034 WHERE `ID`=9119; -- Malfunction at the West Sanctum @@ -5717,7 +5695,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=31500, UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `RewardBonusMoney`=48000, `VerifiedBuild`=19034 WHERE `ID`=10424; -- Diagnosis: Critical UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=80100, `VerifiedBuild`=19034 WHERE `ID`=10427; -- Creatures of the Eco-Domes UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=64200, `QuestDescription`='The dome technology possesses such power! Certainly, there are bounds beyond which we dare not go, $n.$B$BCreatures allowed to grow too large or too fast could be just as bad as a barren landscape.$B$BI have heard rumors of just such a creature in the pool to the east. I''ve heard the ethereal merchants conspiring to catch the overgrown hydra for sport, but I have another purpose in mind for the giant. Bring me the creature''s heart so I may study it.', `VerifiedBuild`=19034 WHERE `ID`=10429; -- When Nature Goes Too Far -UPDATE `quest_template` SET `RewardBonusMoney`=16200, `VerifiedBuild`=19034 WHERE `ID` IN (10431 /*Outside Assistance*/, 10523 /*The Cipher of Damnation - The First Fragment Recovered*/, 10546 /*Borak, Son of Oronok*/, 10550 /*The Bundle of Bloodthistle*/, 10814 /*Neltharaku's Tale*/, 11009 /*Ogre Heaven*/, 11550 /*Enter, the Deceiver...*/); +UPDATE `quest_template` SET `RewardBonusMoney`=16200, `VerifiedBuild`=19034 WHERE `ID` IN (10431 /*Outside Assistance*/, 10523 /*The Cipher of Damnation - The First Fragment Recovered*/, 10546 /*Borak, Son of Oronok*/, 10550 /*The Bundle of Bloodthistle*/, 10814 /*Neltharaku's Tale*/, 11009 /*Ogre Heaven*/, 11550 /*Enter, the Deceiver...*/, 26593 /*Scaring Shaky*/); UPDATE `quest_template` SET `RewardBonusMoney`=64800, `QuestDescription`='Here it is, $n. Take this phase disruptor and mount up! The Protectorate nether drake will fly you close enough to Ultris so that you can drop the disruptor on top of the void conduit.$B$BDrop as many disruptor charges as possible to ensure complete annihilation!$B$BWhen you are ready, speak with the nether drake and he''ll take you up.$B$BIf you miss the mark you will have to get more bombs from me before you can go up again.', `VerifiedBuild`=19034 WHERE `ID`=10438; -- On Nethery Wings UPDATE `quest_template` SET `RewardBonusMoney`=15900, `QuestDescription`='The test was a resounding success! We can certainly use this device to start repairing the domes.$B$BCarry word of the test results to the Stormspire and let Ghabar know that I''ve also found a pattern in the damage to the shield generators. Key pieces of generator units have gone missing from a number of sites. This is no accident, $n, no technological failure. We''re being stolen from. ', `VerifiedBuild`=19034 WHERE `ID`=10440; -- Success! UPDATE `quest_template` SET `RewardBonusMoney`=5700, `AllowableRaces`=33555378, `QuestDescription`='$C, there''s some tauren by the name of Thiah Redmane that keeps pestering us for assistance. She''s with the Cenarion Expedition, and they''ve setup a little post just to the west on the south side of the road leading to Zangarmarsh.$B$BIf you hit Thornfang Hill, you''ve gone too far.$B$BDo you think you might head over there and see what she needs? I don''t want to have to bother Ranger Captain Venn''ren with such trivialities.', `VerifiedBuild`=19034 WHERE `ID`=10442; -- Helping the Cenarion Post @@ -5890,7 +5868,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=97500, UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=64800, `QuestDescription`='We''re still having problems with those flak cannons, $n.$B$BDon''t get me wrong -- I think that you did an outstanding job the last time out -- but, that doesn''t change the fact that those damned demons seem to be replenishing their ammo supplies faster than we can knock them out. And that means we''re having a hell of a time getting our people through there, not to mention the risk those demons pose to Ogri''la.$B$BWhat do you say? Want to take another shot at it?', `VerifiedBuild`=19034 WHERE `ID`=11023; -- Bomb Them Again! UPDATE `quest_template` SET `RewardBonusMoney`=32400, `QuestDescription`='This almanac presages the return of Terokk, the most powerful and terrible Skettis king in arakkoa history.$B$BI always believed this to be the mere legend, $n. The return of the talonpriests and your recovery of this tome indicate otherwise.$B$BWith each day, Terokk comes closer to returning to full strength. Your only chance is to bring him to our world prematurely. Return to Skettis and speak to Adaris about this. Let us hope he has the wisdom to do the right thing.', `VerifiedBuild`=19034 WHERE `ID`=11028; -- Countdown to Doom UPDATE `quest_template` SET `RewardBonusMoney`=48600, `QuestDescription`='Open the package, $n. It is a disguise. It doesn''t look very convincing, does it?$B$BI craft them for ethereal smugglers in search of rare books. There is an arakkoa scribe who dwells in the central island in Skettis, Terokk''s Rest; his name is Sahaak. He is old and nearly blind.$B$BUse the disguise to speak with him and obtain the book known as the Adversarial Bloodlines. Be careful, $n. The disguise won''t fool the other arakkoa.', `VerifiedBuild`=19034 WHERE `ID`=11029; -- A Shabby Disguise -UPDATE `quest_template` SET `RewardMoney`=4294217297, `VerifiedBuild`=19034 WHERE `ID` IN (11031 /*Archmage No More*/, 11032 /*Protector No More*/, 11033 /*Assassin No More*/, 11034 /*Restorer No More*/, 11103 /*Sage No More*/, 11104 /*Restorer No More*/, 11105 /*Champion No More*/, 11106 /*Defender No More*/); +UPDATE `quest_template` SET `RewardMoney`=-749999, `VerifiedBuild`=19034 WHERE `ID` IN (11031 /*Archmage No More*/, 11032 /*Protector No More*/, 11033 /*Assassin No More*/, 11034 /*Restorer No More*/, 11103 /*Sage No More*/, 11104 /*Restorer No More*/, 11105 /*Champion No More*/, 11106 /*Defender No More*/); UPDATE `quest_template` SET `RewardBonusMoney`=6300, `AllowableRaces`=33555378, `QuestDescription`='I''ve had a most unusual vision, $n, and I don''t know quite what to make of it. I''ve seen an arrow, an immense arrow, riding into the sky on a trail of fire. Such a feat is trivial for a skilled mage, but somehow I know the arrow I saw is not the product of magic.$B$BIt will be unlike anything the people of Azeroth have ever achieved. You must seek out the people working on this, $n. Lend them your help, for without it, their efforts may yet fail.', `VerifiedBuild`=19034 WHERE `ID`=11037; -- A Strange Vision UPDATE `quest_template` SET `RewardBonusMoney`=6300, `QuestDescription`='Some time ago, Voren''thal dispatched a small team to Netherstorm to investigate the activities of Kael''thas. Our leader has the utmost confidence in Spymaster Thalodien and his compatriots, and has decided to honor his request for reinforcements.$B$BThalodien''s report was brief, but clear that he''s encountered something of great importance. Report to him at Area 52 and assist him in any way possible, $n.', `VerifiedBuild`=19034 WHERE `ID`=11039; -- Report to Spymaster Thalodien UPDATE `quest_template` SET `RewardBonusMoney`=6300, `AllowableRaces`=18875469, `QuestDescription`='A strange vision haunts me, $n. I see a continuous cloud of smoke ascending toward the sky, left in the wake of a giant fire moving ever faster away. It is not a natural phenomenon, nor a creation of evil; that much I know.$B$BI have no knowledge of what it looks like, save that it is the product of the labor of many. Yet, without more hands, it may never come to be.$B$BTravel to Netherstorm, $c. Locate those responsible for this creation and offer them your aid.', `VerifiedBuild`=19034 WHERE `ID`=11042; -- A Mystifying Vision @@ -6030,8 +6008,8 @@ UPDATE `quest_template` SET `QuestDescription`='Hi, $n! Thanks for driving away UPDATE `quest_template` SET `Flags`=16392, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (11437 /*[PH] Beer Garden A*/, 11438 /*[PH] Beer Garden B*/); UPDATE `quest_template` SET `QuestDescription`='The brave dwarves of Kharanos can form a fire brigade in an instant, now that the Headless Horseman is around. Do you want to help?$B$BSouth of here, the mountaineers set up a small area to practice fighting fires. Go there and throw buckets onto the blazes. You can fill a bucket from the water barrel here.$B$BGood bye, $n. When you''re done with fire brigade practice, please visit us again!', `VerifiedBuild`=19034 WHERE `ID`=11439; -- Fire Brigade Practice UPDATE `quest_template` SET `QuestDescription`='With the threat of the Headless Horseman looming, the peacekeepers have been diligent in forming a fire brigade when needed. Do you want to help?$B$BWest of here, toward the Exodar, the peacekeepers set up a small area to practice fighting fires. Go there and throw buckets onto the blazes. You can fill a bucket from the water barrel here.$B$BGood bye, $n. When you''re done with fire brigade practice, please visit us again!', `VerifiedBuild`=19034 WHERE `ID`=11440; -- Fire Brigade Practice -UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `RewardBonusMoney`=960, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (11441 /*Brewfest!*/, 13484 /*Spring Collectors*/); -UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (11442 /*Welcome to Brewfest!*/, 24848 /*Fireworks At The Gilded Rose*/, 27566 /*A Gathering in Outland*/); +UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `RewardBonusMoney`=960, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (11441 /*Brewfest!*/, 13484 /*Spring Collectors*/, 27540 /*The Wildhammer*/); +UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (11442 /*Welcome to Brewfest!*/, 24848 /*Fireworks At The Gilded Rose*/, 27546 /*Speak with Captain Anton*/, 27566 /*A Gathering in Outland*/); UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `RewardBonusMoney`=960, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (11446 /*Brewfest!*/, 27572 /*A Gathering in Outland*/); UPDATE `quest_template` SET `RewardBonusMoney`=65700, `QuestDescription`='The totem of Issliruk is ready, $n, and for that I thank you. We must cast our peaceful ways for the time being and strike at those who''ve attacked our land and our kin.$B$BThe pirate slavers that raided Iskaal have lost their minds and slaughtered all their captives. Go to Iskaal, to the east of here and do what must must be done. Take this horn and call on my brethren should you need assistance.', `VerifiedBuild`=19034 WHERE `ID`=11458; -- Avenge Iskaal UPDATE `quest_template` SET `RewardBonusMoney`=33000, `VerifiedBuild`=19034 WHERE `ID` IN (11459 /*Zeh'gehn Sez*/, 11507 /*Elder Atuik and Kamagua*/); @@ -6053,15 +6031,15 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=82200, UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=82200, `AllowableRaces`=-1, `QuestDescription`='The cavern that we opened at Baelgun''s was the one place that most steered clear of... Can''t say I blame ''em. The sound of thunder shot out of that cave, $n! Loud, booming thunder!$B$BI think near the end, it was abandoned by all. Bad, bad things happened to any that went in to explore - most never coming back.$B$BI want you to check that cave out while you''re at Baelgun''s. Explore around the titan statue inside and report back with your findings.', `VerifiedBuild`=19034 WHERE `ID`=11495; -- The Delicate Sound of Thunder UPDATE `quest_template` SET `RewardBonusMoney`=6600, `AllowableRaces`=-1, `QuestDescription`='Westguard needs to know what''s going on here, $n. I want you to personally deliver the news to Captain Adams.$B$BWhenever you''re ready, let me know and I''ll put you back in the construct for one final flight. It''ll take you to Westguard Keep, but more than likely blow up in the process.$B$BIt''s been a pleasure...', `VerifiedBuild`=19034 WHERE `ID`=11501; -- News From the East UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `RewardBonusMoney`=64800, `FlagsEx`=8, `VerifiedBuild`=19034 WHERE `ID`=11531; -- Strange Engine Part -UPDATE `quest_template` SET `RewardMoney`=4294867297, `VerifiedBuild`=19034 WHERE `ID`=11548; -- Your Continued Support -UPDATE `quest_template` SET `RewardMoney`=4284967296, `LogDescription`='Anchorite Kairthos wants you to donate 1000 gold to aid in Anchorite Ayuri''s efforts. You will be known as $n of the Shattered Sun if you complete this quest.', `QuestDescription`='You''ve done so much for us, $n. We greatly appreciate your assistance.$B$BYou might have noticed Anchorite Ayuri''s efforts outside. She has a big heart and is very convincing, but the donations do not quite add up to what she had expected.$B$BIf you were to make a large contribution to her cause, I will make sure that word of your deeds in this war spreads far and wide. What do you say?', `VerifiedBuild`=19034 WHERE `ID`=11549; -- A Magnanimous Benefactor +UPDATE `quest_template` SET `RewardMoney`=-99999, `VerifiedBuild`=19034 WHERE `ID`=11548; -- Your Continued Support +UPDATE `quest_template` SET `LogDescription`='Anchorite Kairthos wants you to donate 1000 gold to aid in Anchorite Ayuri''s efforts. You will be known as $n of the Shattered Sun if you complete this quest.', `QuestDescription`='You''ve done so much for us, $n. We greatly appreciate your assistance.$B$BYou might have noticed Anchorite Ayuri''s efforts outside. She has a big heart and is very convincing, but the donations do not quite add up to what she had expected.$B$BIf you were to make a large contribution to her cause, I will make sure that word of your deeds in this war spreads far and wide. What do you say?', `VerifiedBuild`=19034 WHERE `ID`=11549; -- A Magnanimous Benefactor UPDATE `quest_template` SET `RewardBonusMoney`=6600, `QuestDescription`='I have something embarrassing to admit: I''m being blackmailed!$B$BMrmrglmr agreed to clean some of my things, and got hold of my spare murloc costume. He''s threatening to reveal my true nature to the other murlocs.$B$BI need not explain to you what a disaster that would be! Besides, I have a plan that''s going to require that we get that costume back.$B$BPlease, $n, go to Mrmrglmr at the other end of the Retreat to the north and do whatever he asks of you.', `VerifiedBuild`=19034 WHERE `ID`=11562; -- I'm Being Blackmailed By My Cleaner UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=83100, `QuestDescription`='The time has come to put an end to this unnatural situation, $n. For the Winterfin murlocs to have a chance at a future, Claximus must die!$B$BI want you to take my spare murloc suit and enter the Winterfin Caverns under the pretext of surrender. With the white flag in hand, the murlocs won''t attack you.$B$BYou''ll find him in the southwestern most corner of the caverns. Once you get close enough, deal with Claximus. Bring me one of his claws as proof that the grisly deed has been done.', `VerifiedBuild`=19034 WHERE `ID`=11566; -- Surrender... Not! UPDATE `quest_template` SET `RewardBonusMoney`=65700, `QuestDescription`='<Orfus hands you a satchel.>$B$BWithin this satchel are the artifacts that you recovered. Locate the burial mounds of Shield Hill, far to the southeast, where the items were originally stolen from and return the artifacts. It is my hope that this gesture will quell the spirits that now haunt our hunting grounds.$B$BBe strong, $n...', `VerifiedBuild`=19034 WHERE `ID`=11568; -- A Return to Resting UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=98700, `VerifiedBuild`=19034 WHERE `ID`=11572; -- Return to Atuik UPDATE `quest_template` SET `RewardBonusMoney`=16500, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (11573 /*Orfus of Kamagua*/, 27249 /*Inspecting the Ruins*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=49200, `VerifiedBuild`=19034 WHERE `ID` IN (11576 /*Monitoring the Rift: Cleftcliff Anomaly*/, 11582 /*Monitoring the Rift: Sundered Chasm*/, 11648 /*The Art of Persuasion*/, 11733 /*Traversing the Rift*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `FlagsEx`=8, `RewardFactionValue2`=4294967291, `TimeAllowed`=6000, `VerifiedBuild`=19034 WHERE `ID` IN (11578 /*The ""Chow"" Quest (123)aa COPY*/, 11579 /*The ""Chow"" Quest (123)aa COPY*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `FlagsEx`=8, `TimeAllowed`=6000, `VerifiedBuild`=19034 WHERE `ID` IN (11578 /*The ""Chow"" Quest (123)aa COPY*/, 11579 /*The ""Chow"" Quest (123)aa COPY*/); UPDATE `quest_template` SET `RewardMoney`=35, `RewardMoneyDifficulty`=3, `RewardBonusMoney`=4650, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (11583 /*Honor the Flame*/, 11804 /*Honor the Flame*/, 11805 /*Honor the Flame*/, 11806 /*Honor the Flame*/, 11807 /*Honor the Flame*/, 11808 /*Honor the Flame*/, 11809 /*Honor the Flame*/, 11810 /*Honor the Flame*/, 11811 /*Honor the Flame*/, 11812 /*Honor the Flame*/, 11813 /*Honor the Flame*/, 11814 /*Honor the Flame*/, 11815 /*Honor the Flame*/, 11816 /*Honor the Flame*/, 11817 /*Honor the Flame*/, 11818 /*Honor the Flame*/, 11820 /*Honor the Flame*/, 11821 /*Honor the Flame*/, 11822 /*Honor the Flame*/, 11823 /*Honor the Flame*/, 11824 /*Honor the Flame*/, 11825 /*Honor the Flame*/, 11826 /*Honor the Flame*/, 11827 /*Honor the Flame*/, 11828 /*Honor the Flame*/, 11829 /*Honor the Flame*/, 11830 /*Honor the Flame*/, 11831 /*Honor the Flame*/, 11832 /*Honor the Flame*/, 11833 /*Honor the Flame*/, 11834 /*Honor the Flame*/, 13485 /*Honor the Flame*/, 13486 /*Honor the Flame*/, 13489 /*Honor the Flame*/, 13490 /*Honor the Flame*/, 13491 /*Honor the Flame*/, 13492 /*Honor the Flame*/, 28922 /*Honor the Flame*/, 28925 /*Honor the Flame*/, 28926 /*Honor the Flame*/, 28928 /*Honor the Flame*/, 28929 /*Honor the Flame*/, 28932 /*Honor the Flame*/, 28950 /*Honor the Flame*/); UPDATE `quest_template` SET `RewardBonusMoney`=6600, `AllowableRaces`=-1, `QuestDescription`='Hellscream has the weight of the Horde upon his shoulders. Do not be dissuaded from your duties because of his temperament, $n.$B$B<Saurfang nods.>$B$BDid you think that I would forget the name of a hero of Orgrimmar? It is not every day that I have the pleasure of putting the head of Nefarian on a pike!$B$BThe Scourge have begun their assault upon this fortress. Our soldiers steady the line, but are in desperate need of backup. Report to Razgor. He is stationed directly outside of Warsong Hold.', `VerifiedBuild`=19034 WHERE `ID`=11595; -- The Defense of Warsong Hold UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=66600, `VerifiedBuild`=19034 WHERE `ID` IN (11605 /*The Honored Ancestors*/, 11607 /*The Lost Spirits*/, 11612 /*Reclaiming the Quarry*/, 11617 /*Hampering Their Escape*/, 11866 /*Ears of Our Enemies*/, 11945 /*Preparing for the Worst*/, 11949 /*Not Without a Fight!*/, 11958 /*Let Nothing Go To Waste*/, 11960 /*Planning for the Future*/, 12006 /*Avenge this Atrocity!*/, 12009 /*Tua'kea's Crab Traps*/, 12016 /*The Bait*/, 12028 /*Spiritual Insight*/, 12038 /*Seared Scourge*/); @@ -6535,7 +6513,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=146400 UPDATE `quest_template` SET `RewardBonusMoney`=36600, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=13258; -- Opportunity UPDATE `quest_template` SET `RewardBonusMoney`=7200, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (13260 /*Takes One to Know One*/, 13286 /*...All the Help We Can Get.*/, 13290 /*Your Attention, Please*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=1, `RewardBonusMoney`=7200, `AllowableRaces`=33555378, `QuestDescription`='This is probably as under-control as this situation is going to get. Let''s do this, $n.$B$BI need someone to light the fuse on those bombs and it looks like you''re the one to do it.', `VerifiedBuild`=19034 WHERE `ID`=13262; -- Blow it Up! -UPDATE `quest_template` SET `RewardMoney`=4294917297, `VerifiedBuild`=19034 WHERE `ID` IN (13265 /*Cloth Scavenging*/, 13268 /*Cloth Scavenging*/, 13269 /*Cloth Scavenging*/, 13270 /*Cloth Scavenging*/, 13272 /*Cloth Scavenging*/); +UPDATE `quest_template` SET `RewardMoney`=-49999, `VerifiedBuild`=19034 WHERE `ID` IN (13265 /*Cloth Scavenging*/, 13268 /*Cloth Scavenging*/, 13269 /*Cloth Scavenging*/, 13270 /*Cloth Scavenging*/, 13272 /*Cloth Scavenging*/); UPDATE `quest_template` SET `RewardBonusMoney`=7200, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (13271 /*A Voice in the Dark*/, 27718 /*Warchief's Command: Vashj'ir!*/, 27721 /*Warchief's Command: Mount Hyjal!*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=73200, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (13275 /*Time to Hide*/, 13674 /*A Worthy Weapon*/, 13676 /*Training In The Field*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=91500, `AllowableRaces`=-1, `VerifiedBuild`=19034 WHERE `ID` IN (13277 /*Against the Giants*/, 13278 /*Coprous the Defiled*/, 13294 /*Against the Giants*/); @@ -6583,7 +6561,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=1, `RewardBonusMoney`=7200, UPDATE `quest_template` SET `RewardMoney`=75, `RewardMoneyDifficulty`=5, `AllowableRaces`=18875469, `QuestDescription`='The reality of fighting on multiple fronts, $g lad : lass;, is that we cannot spread our forces too thin or we risk losing it all!$B$BCritical troop deployments are necessary on a day by day basis. Today it is the battle for Alterac Valley that''s in most need of brave combatants.$B$BGo now, $n, and aid the Stormpike Expedition. We cannot allow the Frostwolf Clan to get away with the violence they''ve inflicted on our brethren!', `VerifiedBuild`=19034 WHERE `ID` IN (13427 /*Call to Arms: Alterac Valley*/, 24427 /*Call to Arms: Alterac Valley*/); UPDATE `quest_template` SET `RewardMoney`=75, `RewardMoneyDifficulty`=5, `AllowableRaces`=33555378, `QuestDescription`='We''ve recently come extremely close to driving the Stormpike invaders from Alterac Valley. As a result we''re redirecting all our reinforcements to aid the Frostwolf Clan.$B$BA decisive victory there would free up the resources we need to crush the Alliance scum on all the other battlefronts.$B$BGo, $n. Earn great honor by heeding the call of the brave Frostwolf warriors.', `VerifiedBuild`=19034 WHERE `ID` IN (13428 /*Call to Arms: Alterac Valley*/, 24426 /*Call to Arms: Alterac Valley*/); UPDATE `quest_template` SET `RewardMoney`=75, `RewardMoneyDifficulty`=5, `RewardBonusMoney`=9300, `AllowableRaces`=-1, `QuestDescription`='We''re not fighting isolated battles against the Horde anymore, $g lad:lass;.$B$BVictory in one front means denying the Horde resources they''d use against us in a different battle. By the same token, abandoning any given battle could give the advantage to our opponent somewhere else around the world.$B$BThe Alliance is in need of more combatants with this sort of worldly understanding... truly seasoned veterans! $n, come back to me after you''ve served against the Horde at all of our active battlegrounds.', `VerifiedBuild`=19034 WHERE `ID`=13478; -- Concerted Efforts -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID` IN (13511 /*One Bitter Wish*/, 13512 /*Strategic Strikes*/, 13529 /*The Corruption's Source*/, 13563 /*A Love Eternal*/, 13565 /*Twice Removed*/, 13844 /*The Looting of Althalaxx*/, 13995 /*King of Centaur Mountain*/, 14383 /*The Terrible Tinkers of the Ruined Reaches*/, 14464 /*Lightning Strike Assassination*/, 24591 /*Changing of the Gar'dul*/, 24945 /*Three Little Pygmies*/, 25027 /*You Flicked a Fine Vine to Leaf Me*/, 25129 /*Sarkoth*/, 25173 /*From Bad to Worse*/, 25368 /*Verinias the Twisted*/, 25661 /*With a Little Help...*/, 25780 /*Assault on Menethil Keep*/, 26303 /*The Mind's Eye*/, 26366 /*Heads Up*/, 26418 /*The Shell of Shadra*/, 26518 /*Heads Up*/, 26845 /*Who's In Charge Here?*/, 26855 /*A Pilot's Revenge*/, 27036 /*Vyrin's Revenge*/, 27152 /*Unusual Behavior... Even For Gnolls*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID` IN (13511 /*One Bitter Wish*/, 13512 /*Strategic Strikes*/, 13529 /*The Corruption's Source*/, 13563 /*A Love Eternal*/, 13565 /*Twice Removed*/, 13844 /*The Looting of Althalaxx*/, 13995 /*King of Centaur Mountain*/, 14383 /*The Terrible Tinkers of the Ruined Reaches*/, 14464 /*Lightning Strike Assassination*/, 24591 /*Changing of the Gar'dul*/, 24945 /*Three Little Pygmies*/, 25027 /*You Flicked a Fine Vine to Leaf Me*/, 25129 /*Sarkoth*/, 25173 /*From Bad to Worse*/, 25368 /*Verinias the Twisted*/, 25661 /*With a Little Help...*/, 25780 /*Assault on Menethil Keep*/, 26303 /*The Mind's Eye*/, 26366 /*Heads Up*/, 26418 /*The Shell of Shadra*/, 26518 /*Heads Up*/, 26595 /*Kill-Collect*/, 26845 /*Who's In Charge Here?*/, 26855 /*A Pilot's Revenge*/, 27036 /*Vyrin's Revenge*/, 27152 /*Unusual Behavior... Even For Gnolls*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID` IN (13515 /*Ending the Threat*/, 13648 /*WANTED: The Dark Iron Spy*/, 14005 /*The Vengeance of Elune*/, 14056 /*Glomp is Sitting On It*/, 14063 /*Mutiny, Mon!*/, 24467 /*Fade to Black*/, 24718 /*The Mighty U'cha*/, 24744 /*The Biggest Egg Ever*/, 24950 /*Captain Dreadbeard*/, 25044 /*Diplomacy By Another Means*/, 25369 /*Stinglasher*/, 25374 /*Sasquatch Sighting*/, 25868 /*Yorla Darksnare*/, 26049 /*The Princess Unleashed*/, 26079 /*Wanted! Otto and Falconcrest*/, 26263 /*Thornar Thunderclash*/, 26283 /*Prime Slime*/, 26300 /*Nezzliok Will Know*/, 26369 /*Hunt the Keeper*/, 26483 /*Gan'dranda*/, 26490 /*Prime Slime*/, 26526 /*Hunt the Keeper*/, 28470 /*High Chief Winterfall*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AreaGroupID`=0, `QuestDescription`='A group of Twilight''s Hammer cultists has set up camp southwest of here. They''re preparing an army of water elementals to use against Lor''danel.$B$BTheir leader, High Cultist Azerynn, has pacts with the dark Old Gods that grant his sect power over the elements. Go and deal with them before it''s too late, $n.$B$BThe cataclysm has left the elemental spirits in disarray... it''s only a matter of time until they have enough elementals to overcome our defenses.', `VerifiedBuild`=19034 WHERE `ID`=13519; -- The Twilight's Hammer UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=18875469, `QuestDescription`='The Jadefire satyrs of Felwood have found their way into Darkshore, tainting the land, water, and creatures they encounter. You''ve seen what their corruption has done to my people and their homes. If we do not turn back the satyrs, all of us will share that fate.$B$BWithin the cave to the east is Sharax the Defiler, the satyr responsible for the ills of the Blackwood. Slay him, $n, and free us from his influence. Show the satyr that the Blackwood will not lay down and die so easily.', `VerifiedBuild`=19034 WHERE `ID`=13546; -- The Defiler @@ -6683,7 +6661,7 @@ UPDATE `quest_template` SET `RewardBonusMoney`=13800, `RewardChoiceItemID1`=1193 I don''t be trustin'' em, $n. Ya go find this Durak and tell ''em de horde will have nothing ta do with em.', `QuestCompletionLog`='Speak to Vol''jin in Orgrimmar.', `VerifiedBuild`=19034 WHERE `ID`=13842; -- Dread Head Redemption -UPDATE `quest_template` SET `RewardMoney`=4294867297, `QuestDescription`='The bestest of the champions come to the chapel to hear the argent confessor speak every day.$B$BYou should see how much she inspires them, $n. Not only do they fight for the Argent Crusade, but they put a lot of money into the collection basket when I take it around.$B$BMaybe you''d like to contribute too?', `VerifiedBuild`=19034 WHERE `ID`=13846; -- Contributin' To The Cause +UPDATE `quest_template` SET `RewardMoney`=-99999, `QuestDescription`='The bestest of the champions come to the chapel to hear the argent confessor speak every day.$B$BYou should see how much she inspires them, $n. Not only do they fight for the Argent Crusade, but they put a lot of money into the collection basket when I take it around.$B$BMaybe you''d like to contribute too?', `VerifiedBuild`=19034 WHERE `ID`=13846; -- Contributin' To The Cause UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=73200, `AllowableRaces`=18875469, `QuestDescription`='Even as we ready for the tournament, Argent Crusade forces prepare the way for an assault on the enemy''s stronghold of Icecrown Citadel.$B$BIn the Court of Bones in southwestern Icecrown, a few brave crusaders have set up a forward camp on the southern side of Corp''rethar. Equip your lance and mount the stabled campaign charger at the camp, then destroy the Lich King''s minions.$B$BDo not fear the masses of boneguard footmen, $n, for they can easily be trampled under your horse''s hooves.', `VerifiedBuild`=19034 WHERE `ID` IN (13847 /*At The Enemy's Gates*/, 13851 /*At The Enemy's Gates*/, 13852 /*At The Enemy's Gates*/, 13854 /*At The Enemy's Gates*/, 13855 /*At The Enemy's Gates*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=11100, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (13849 /*Astranaar's Burning!*/, 13867 /*Culling the Furbolg Threat*/, 13868 /*Corrupting Influence?*/, 13874 /*A Not-So-Charmed Life*/, 13922 /*In the Hands of the Perverse*/, 13928 /*Recover the Fallen*/, 26477 /*Search the Bole*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=45600, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=13850; -- Toxic Tolerance @@ -6708,7 +6686,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `QuestDescription`='Liste UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `AreaGroupID`=0, `QuestDescription`='The ancients of the grove have come to our aid, $n. I can see through their eyes even as we speak.$B$BThe Twilight''s Hammer has been forced to hasten their ritual and have thus only managed to resurrect but a remnant of dread Soggoth.$B$BDestroy it before it''s too late, $n. I am needed elsewhere.$B$BReturn to the druids at the Grove of the Ancients when it is all over they will direct you further.', `VerifiedBuild`=19034 WHERE `ID`=13897; -- The Battle for Darkshore UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='We cannot let the naga get away with this, $n. Slaying the keeper of the grove amounts to a declaration of war.$B$BYou''ll find their den inside a cave on the island of Naj''vel, far to the southwest.$B$BI want you to send them a clear message.', `VerifiedBuild`=19034 WHERE `ID`=13898; -- The Tides Turn Against Us UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=14100, `VerifiedBuild`=19034 WHERE `ID` IN (13900 /*The Offering to Azshara*/, 26708 /*AHHHHHHHHHHHH! AHHHHHHHHH!!!*/); -UPDATE `quest_template` SET `RewardMoney`=4294167297, `RewardBonusMoney`=57000, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=13906; -- They Grow Up So Fast +UPDATE `quest_template` SET `RewardMoney`=-799999, `RewardBonusMoney`=57000, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=13906; -- They Grow Up So Fast UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=18875469, `QuestDescription`='We can figure this out, $n. We just need some Dwarven ingenuity. Think, Groffy, think!$B$BThese murlocs are just looking for a home, right? Let''s do something constructive. I mean that literally.$B$BAll sorts of debris was washed ashore during the catastrophe, and some of the decimated murloc hovels may still be salvageable. Run along the shore here and gather up any building materials fit for a murloc. That''s an admittedly low standard. ', `VerifiedBuild`=19034 WHERE `ID`=13909; -- Got Some Flotsam? UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='Who are you again? $n? Have we met? If you''re here from the League, you can tell them I''m not leaving! Not without my find. I had it, right in my hands! Then the screaming. Then the wetness.$B$BListen here whos-yer-name, I documented the whole thing in my journal the day the tidal wave hit. And I know just where I left it! The journal. Not the find. Help me get the one so we can get the other! Or vice-versa! Do you follow? Follow me!', `VerifiedBuild`=19034 WHERE `ID`=13911; -- The Absent-Minded Prospector UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=12000, `QuestDescription`='The gnome explosives squad we requested from Tinker Town arrived last week. Just in time to face an assault by the Horde. We lost a lot of soldiers that day. Most of the gnome team was taken as well. Now we''re neck deep in Horde, Silverwind Refuge has been lost and we''re down a dozen gnomes.$B$BI''m begging for your help here, $n. Travel east to Silverwind Refuge and look for any gnome survivors. They were all carted off by a big, merciless orc named Thundrak. Find him and you''ll find our gnomes.', `VerifiedBuild`=19034 WHERE `ID`=13913; -- They Took Our Gnomes @@ -7089,9 +7067,9 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=109800 UPDATE `quest_template` SET `QuestPackageID`=584, `RewardMoneyDifficulty`=5, `Flags`=524288, `RewardChoiceItemID1`=0, `RewardChoiceItemID2`=0, `RewardChoiceItemID3`=0, `RewardChoiceItemQuantity1`=0, `RewardChoiceItemQuantity2`=0, `RewardChoiceItemQuantity3`=0, `VerifiedBuild`=19034 WHERE `ID`=24812; -- No More Mercy UPDATE `quest_template` SET `QuestPackageID`=585, `RewardMoneyDifficulty`=7, `RewardChoiceItemID1`=0, `RewardChoiceItemID2`=0, `RewardChoiceItemID3`=0, `RewardChoiceItemQuantity1`=0, `RewardChoiceItemQuantity2`=0, `RewardChoiceItemQuantity3`=0, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=24814; -- An Ancient Enemy UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AreaGroupID`=0, `QuestDescription`='Combining the remains of the Mechachicken with these shark parts, we''ve assembled the greatest fighting submersible of all time: the Mechashark X-Steam!$B$BHobart and I want you to pilot it, $n. Go west to the water and activate the Mechashark X-Steam Controller.$B$BYou must kill The Hammer if we''re to have any hope of exploiting the natural resources of the Dire Strait to their fullest extent. It''s for the good of the cartel!', `VerifiedBuild`=19034 WHERE `ID`=24817; -- A Goblin in Shark's Clothing -UPDATE `quest_template` SET `RewardMoney`=4292967297, `VerifiedBuild`=19034 WHERE `ID` IN (24819 /*A Change of Heart*/, 24820 /*A Change of Heart*/, 24821 /*A Change of Heart*/, 24822 /*A Change of Heart*/, 24836 /*A Change of Heart*/, 24838 /*A Change of Heart*/, 24840 /*A Change of Heart*/, 24842 /*A Change of Heart*/, 24843 /*A Change of Heart*/, 24845 /*A Change of Heart*/, 24846 /*A Change of Heart*/, 24847 /*A Change of Heart*/, 25246 /*A Change of Heart*/, 25247 /*A Change of Heart*/, 25248 /*A Change of Heart*/, 25249 /*A Change of Heart*/); +UPDATE `quest_template` SET `RewardMoney`=-1999999, `VerifiedBuild`=19034 WHERE `ID` IN (24819 /*A Change of Heart*/, 24820 /*A Change of Heart*/, 24821 /*A Change of Heart*/, 24822 /*A Change of Heart*/, 24836 /*A Change of Heart*/, 24838 /*A Change of Heart*/, 24840 /*A Change of Heart*/, 24842 /*A Change of Heart*/, 24843 /*A Change of Heart*/, 24845 /*A Change of Heart*/, 24846 /*A Change of Heart*/, 24847 /*A Change of Heart*/, 25246 /*A Change of Heart*/, 25247 /*A Change of Heart*/, 25248 /*A Change of Heart*/, 25249 /*A Change of Heart*/); UPDATE `quest_template` SET `RewardMoney`=75, `RewardMoneyDifficulty`=5, `QuestDescription`='I''d better start from the beginning. It was love at first sight, $n. There was just something about that goblin from the moment I set eyes on him.$B$BAfter a wonderful week together, Snivel said he had come into a lot of money and that he was going to take me on a long vacation to the South Seas! Can you believe it?$B$BAnyway, he told me to pack while he ran some errands to the bank, the auction house, and the barber shop, but he never came back! I''m beginning to think he''s nothing but a big liar!', `VerifiedBuild`=19034 WHERE `ID`=24849; -- Hot On The Trail -UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=24850; -- Snivel's Sweetheart +UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID` IN (24850 /*Snivel's Sweetheart*/, 27570 /*The Situation So Far*/); UPDATE `quest_template` SET `RewardMoney`=75, `RewardMoneyDifficulty`=5, `AllowableRaces`=33555378, `QuestDescription`='I''d better start from the beginning. It was love at first sight, $n. There was just something about that goblin from the moment I set eyes on him.$B$BAfter a wonderful week together, Snivel said he had come into a lot of money and that he was going to take me on a long vacation to the South Seas! Can you believe it?$B$BAnyway, he told me to pack while he ran some errands to the bank, the auction house, and the barber shop, but he never came back! I''m beginning to think he''s nothing but a big liar!', `VerifiedBuild`=19034 WHERE `ID`=24851; -- Hot On The Trail UPDATE `quest_template` SET `QuestPackageID`=620, `RewardMoneyDifficulty`=5, `Flags`=524288, `RewardChoiceItemID1`=0, `RewardChoiceItemID2`=0, `RewardChoiceItemQuantity1`=0, `RewardChoiceItemQuantity2`=0, `VerifiedBuild`=19034 WHERE `ID`=24852; -- Our Tribe, Imprisoned UPDATE `quest_template` SET `Flags`=524288, `VerifiedBuild`=19034 WHERE `ID` IN (24861 /*Last Rites, First Rites*/, 25089 /*Beyond the Graves*/, 28652 /*Caretaker Caice*/); @@ -7294,7 +7272,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=55500, UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=24900, `VerifiedBuild`=19034 WHERE `ID` IN (25426 /*War on the Woodpaw*/, 25429 /*Zukk'ash Infestation*/, 25432 /*It's Not ""Ogre"" Yet*/, 25434 /*Taming The Tamers*/); UPDATE `quest_template` SET `RewardBonusMoney`=73800, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=25428; -- Black Heart of Flame UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=30900, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID` IN (25431 /*Stinglasher*/, 25433 /*Sasquatch Sighting*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=26100, `VerifiedBuild`=19034 WHERE `ID`=25436; -- Spiteful Sisters +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=26100, `VerifiedBuild`=19034 WHERE `ID` IN (25436 /*Spiteful Sisters*/, 26597 /*Stranglethorn Fever*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=39300, `AllowableRaces`=23069773, `VerifiedBuild`=19034 WHERE `ID`=25438; -- Ysondre's Farewell UPDATE `quest_template` SET `RewardMoney`=75, `RewardMoneyDifficulty`=5, `RewardSpell`=140428, `Flags`=3145728, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=25446; -- Frogs Away! UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=21000, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (25447 /*Signs of Change*/, 27167 /*A Mighty Hunger*/, 27168 /*Those That Couldn't Let Go*/, 27211 /*Propaganda War*/); @@ -7304,8 +7282,8 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=2, `RewardBonusMoney`=5550, UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=92400, `QuestDescription`='Ragnaros is not the only powerful elemental that has re-emerged into our world.$B$BThe dreaded Baron Geddon is leading the onslaught and we must put an end to this rampage.$B$BThe Flameseer''s Staff has proven powerful. Perhaps it is powerful enough to weaken him to the point where our arch druids can bind him where he stands.$B$BGo, $n and be careful. Baron Geddon is a vengeful and treacherous being.', `VerifiedBuild`=19034 WHERE `ID`=25464; -- The Return of Baron Geddon UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=22200, `Flags`=8, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=25468; -- Forces of Nature: Faerie Dragons UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (25469 /*Forces of Nature: Mountain Giants*/, 26482 /*True Power of the Rod*/, 26532 /*Shadra the Venom Queen*/, 27291 /*Peace at Last*/, 27429 /*Raze Direhorn Post!*/); -UPDATE `quest_template` SET `RewardBonusMoney`=22200, `FlagsEx`=8, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID`=25475; -- Find OOX-22/FE! -UPDATE `quest_template` SET `RewardBonusMoney`=44400, `Flags`=2, `RewardFactionValue2`=4294967290, `VerifiedBuild`=19034 WHERE `ID`=25476; -- Rescue OOX-22/FE! +UPDATE `quest_template` SET `RewardBonusMoney`=22200, `FlagsEx`=8, `VerifiedBuild`=19034 WHERE `ID`=25475; -- Find OOX-22/FE! +UPDATE `quest_template` SET `RewardBonusMoney`=44400, `Flags`=2, `VerifiedBuild`=19034 WHERE `ID`=25476; -- Rescue OOX-22/FE! UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=73800, `QuestDescription`='$n, these fiends from the Twilight''s Hammer are attempting to scourge this whole mountain clean of all life. Even now they trail behind this inferno, leaving death and ash in their wake.$B$BArch Druid Hamuul Runetotem is behind the fires, trying to salvage the wilderness before it''s blotted permanently from the map. Travel southeast, through The Inferno and down the road beyond. Find and aid the Arch Druid.$B$BOn your way there, clear the roads by killing any Charbringers that you find.', `VerifiedBuild`=19034 WHERE `ID`=25490; -- Smashing Through Ashes UPDATE `quest_template` SET `AllowableRaces`=33555378, `QuestDescription`='Vol''jin be gatherin'' his gear and readyin'' de warriors. He ask me to tell ya to meet with him an'' Vanira on de island to de east.$B$BFrom dere, he and de warriors will launch de attack on Zalazane. May de ancestors go wit'' you, $n. Without ya, dis campaign would only be a shadow of what it become. Speak to Handler Marnlek, just to de south, an'' he give you a bat to fly out to de stagin'' area.', `VerifiedBuild`=19034 WHERE `ID`=25495; -- Preparin' For Battle UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=92400, `QuestDescription`='I don''t know if you''ve picked up on this, but there''s a bit of a rivalry between the ogre members of the Twilight''s Hammer and the rest of us.$B$BFor me... it''s personal.$B$BThis one ogre called Gromm''ko has a pet raptor named "Butcher." He''s taken out the last three of my corehound pups.$B$BI think this last one will fare differently. He''s got a real killer''s instinct.$B$BGo to the Seat of the Chosen and challenge Gromm''ko to a match between our two beasts. Humiliate him for me, $ndamus.', `VerifiedBuild`=19034 WHERE `ID`=25496; -- Grudge Match @@ -7496,7 +7474,6 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AreaGroupID`=0, `QuestDe UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=21300, `QuestDescription`='My name is Myzrael. I am a princess of the earth, and my captors, the giants, have trapped me deep beneath the Arathi Highlands. These crystal shards are the only way I can speak with the surface world.$B$BPlease help me. Allies of the giants, the Drywhisker kobolds, have a shard like this one in their Drywhisker Gorge, to the east. To power the cluster, you must gather motes of Myzrael from the kobolds and apply them to it.$B$BI beg you, $n, aid me!', `VerifiedBuild`=19034 WHERE `ID`=26039; -- The Princess Trapped UPDATE `quest_template` SET `AreaGroupID`=0, `QuestDescription`='Opening the Stones of Binding loosened much of my confinement, but a lock still holds me chained. It is the Keystone you see among this circle of stones. And the key is held by one of my captors, the stone watcher Fozruk.$B$BYou must obtain that key, which the stone watchers call the Rod of Order, from Fozruk and use it to open the Keystone.$B$B$n, you have done so much to aid me. Just a little more...and my gratitude will shake the very foundations of the earth!', `VerifiedBuild`=19034 WHERE `ID`=26042; -- Breaking the Keystone UPDATE `quest_template` SET `QuestDescription`='Whew, that was tough. I didn''t think we''d make it, $n. We better get these parts back to Chief Blastgineer Bombgutz. I think I hear the gnome flying machines buzzing outside. We haven''t got a minute to lose!', `VerifiedBuild`=19034 WHERE `ID`=26048; -- Spare Parts Up In Here! -UPDATE `quest_template` SET `RewardFactionValue2`=4294967293, `VerifiedBuild`=19034 WHERE `ID`=26052; -- Speak to Shakes UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `QuestDescription`='There''s no time left. Here they come! Take control of a heavy gun and shoot the gnomes out of the sky! If that bomb takes too many hits it will blow, taking us all with it!$B$BDefend the base, $n! You''re our only hope!$B$BIf we somehow make it out of this in one piece, report to Overlord Krom''gar.', `VerifiedBuild`=19034 WHERE `ID`=26058; -- In Defense of Krom'gar Fortress UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='If I am to invoke voodoo, I will need several special reagents. Bring me horns from the Stonetalon rams of the region, $n! Without the horns we are done for!', `VerifiedBuild`=19034 WHERE `ID`=26061; -- Da Voodoo: Ram Horns UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `QuestDescription`='The troops are hungry, $n. With our supply lines cut off, we''re steadily running out of food. I can cook the soldiers a feast if you can get me some ingredients.$B$BHead into the woods west of here and look for Kalimdor eagle nests. Steal the eggs from the nests and bring them back to me.', `VerifiedBuild`=19034 WHERE `ID`=26064; -- Fight On Their Stomachs @@ -7712,23 +7689,19 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=75600, UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=75600, `Flags`=136, `VerifiedBuild`=19034 WHERE `ID` IN (26584 /*Shaken and Stirred*/, 26657 /*Hard Falls*/, 26658 /*Fragile Values*/, 26791 /*Sprout No More*/, 26792 /*Fungal Monstrosities*/, 26829 /*The Stone March*/); UPDATE `quest_template` SET `RewardMoney`=75, `RewardMoneyDifficulty`=5, `AllowableRaces`=-1, `QuestDescription`='Are you up for a challenge, $n? Good, I was hoping you would be. The Southfury River flows just west of Orgrimmar and your challenge can be found within its mighty flow.$b$bWe are looking for a giant furious pike. This esteemed fish used to be prevalent in these areas but ever since the floods hit, the big ones have been much harder to find. Head out to the river and let''s see just how good of an angler you really are.', `VerifiedBuild`=19034 WHERE `ID`=26588; -- A Furious Catch UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=14700, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=26592; -- Diffractory Chromascope -UPDATE `quest_template` SET `RewardBonusMoney`=16200, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID`=26593; -- Scaring Shaky -UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardFactionValue2`=4294967292, `VerifiedBuild`=19034 WHERE `ID`=26594; -- Return to MacKinley -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardFactionValue2`=4294967291, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26595; -- Kill-Collect -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=26100, `RewardFactionValue2`=4294967289, `VerifiedBuild`=19034 WHERE `ID`=26597; -- Stranglethorn Fever -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=17400, `RewardFactionValue2`=4294967291, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26599; -- The Captain's Chest -UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=12900, `RewardFactionValue2`=4294967292, `VerifiedBuild`=19034 WHERE `ID`=26600; -- A Giant's Feast -UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=26100, `RewardFactionValue2`=4294967289, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26601; -- Mok'rash the Cleaver -UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=21600, `RewardFactionValue2`=4294967290, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26602; -- A Dish Best Served Huge +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=17400, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26599; -- The Captain's Chest +UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=12900, `VerifiedBuild`=19034 WHERE `ID`=26600; -- A Giant's Feast +UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=26100, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26601; -- Mok'rash the Cleaver +UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=21600, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26602; -- A Dish Best Served Huge UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=26100, `AreaGroupID`=0, `QuestDescription`='$n, I now put my faith in you to help free me. The great Skymane King Mukla is my captor. He commands the beasts of this island, and they keep me here against my will with the aid of this chain. If you can slay him and find the key to this shackle, I shall be indebted to you greatly.$B$BI often hear him to the southeast side of the island, but please be careful: he is not to be trifled with.', `VerifiedBuild`=19034 WHERE `ID`=26606; -- Mukla's Demise UPDATE `quest_template` SET `QuestDescription`='Take this bundle of Keeshan''s possessions and head back to the Lakeshire inn basement. Bravo Company is already there, talking to Keeshan. Remind him of who drew first blood, $n. Lakeshire needs Keeshan. The Alliance needs Keeshan.$B$BDismissed, soldier!', `VerifiedBuild`=19034 WHERE `ID`=26607; -- They Drew First Blood -UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=12000, `RewardFactionValue2`=4294967292, `VerifiedBuild`=19034 WHERE `ID` IN (26609 /*The Bloodsail Buccaneers*/, 26610 /*Bloodsail Treachery*/); -UPDATE `quest_template` SET `RewardMoneyDifficulty`=2, `RewardBonusMoney`=4050, `RewardFactionValue2`=4294967294, `VerifiedBuild`=19034 WHERE `ID`=26611; -- The Baron Must Be Told -UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=21600, `RewardFactionValue2`=4294967290, `QuestDescription`='I want to know details, $n. Our supremacy over the Bloodsail is due largely in part to our stronghold here in Booty Bay, but intelligence also plays a critical role.$b$bThe Bloodsail maintain a few meager camps to the south which they call their "Southern Command." Well, you''re going to raid their excuse for a southern command, find their plans, and slaughter their men. Return with whatever information you can find.', `VerifiedBuild`=19034 WHERE `ID`=26612; -- Details of the Attack -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=17400, `ItemDropQuantity1`=1, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID`=26613; -- Up to Snuff -UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=17400, `RewardFactionValue2`=4294967291, `VerifiedBuild`=19034 WHERE `ID`=26614; -- Keep An Eye Out +UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=12000, `VerifiedBuild`=19034 WHERE `ID` IN (26609 /*The Bloodsail Buccaneers*/, 26610 /*Bloodsail Treachery*/); +UPDATE `quest_template` SET `RewardMoneyDifficulty`=2, `RewardBonusMoney`=4050, `VerifiedBuild`=19034 WHERE `ID`=26611; -- The Baron Must Be Told +UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=21600, `QuestDescription`='I want to know details, $n. Our supremacy over the Bloodsail is due largely in part to our stronghold here in Booty Bay, but intelligence also plays a critical role.$b$bThe Bloodsail maintain a few meager camps to the south which they call their "Southern Command." Well, you''re going to raid their excuse for a southern command, find their plans, and slaughter their men. Return with whatever information you can find.', `VerifiedBuild`=19034 WHERE `ID`=26612; -- Details of the Attack +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=17400, `ItemDropQuantity1`=1, `VerifiedBuild`=19034 WHERE `ID`=26613; -- Up to Snuff +UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=17400, `VerifiedBuild`=19034 WHERE `ID`=26614; -- Keep An Eye Out UPDATE `quest_template` SET `RewardBonusMoney`=2040, `QuestDescription`='Those Blackrock orcs are gonna need an army to handle the Bravo Company and you, $n. When you''re ready to go, meet us at the dock facing Lake Everstill and we''ll set off on my riverboat for Camp Everstill on the other side of the lake.$B$BSee you there, $n.', `VerifiedBuild`=19034 WHERE `ID`=26616; -- It's Never Over -UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=12000, `RewardFactionValue2`=4294967292, `VerifiedBuild`=19034 WHERE `ID`=26617; -- An Old Sea Dog +UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=12000, `VerifiedBuild`=19034 WHERE `ID`=26617; -- An Old Sea Dog UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=57300, `QuestDescription`='If what you say is true, $n, then we have friends within the Dragonmaw Clan. We can support an insurgency from within their ranks and avoid a lot of bloodshed on both sides.$B$BI can help, but the most dangerous part is up to you.$B$BMy Axebite Warriors will launch an offensive on the shores. During the confusion, I need you to slip behind the lines and speak with your revolutionary contact, Zaela.$B$BWe''ll arm the Dragonmaw and overthrow their fel masters! ', `VerifiedBuild`=19034 WHERE `ID`=26619; -- You Say You Want a Revolution UPDATE `quest_template` SET `RewardMoneyDifficulty`=7, `RewardBonusMoney`=152700, `RewardChoiceItemID3`=0, `RewardChoiceItemQuantity3`=0, `QuestDescription`='The weapons the Horde has supplied us with will be more than enough. The four of us should split up and arm as many Dragonmaw workers and merchants as we can.$B$BDon''t underestimate us, $n. You''ll find even our tradesmen are ferocious in battle.$B$BLet''s do as much damage as possible. Arm a squad of Dragonmaw and lay waste to the fel enforcers and warlocks that have intimidated my people for so long. Then meet back here to launch our final strike!', `VerifiedBuild`=19034 WHERE `ID`=26621; -- Insurrection UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=95400, `AreaGroupID`=0, `VerifiedBuild`=19034 WHERE `ID`=26622; -- Death to Mor'ghor @@ -8066,8 +8039,8 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=76500, UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=76500, `Flags`=136, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27300 /*Pushing Back*/, 27803 /*Welcome Relief*/, 27810 /*The Fighting Spirit*/, 27813 /*Death Worthy of a Dragonmaw*/, 27945 /*Paint it Black*/, 28588 /*Wildhammer Infestation*/, 28594 /*Highbank, Crybank*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=76500, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27301 /*Unbroken*/, 27302 /*Simple Solutions*/, 27303 /*Mercy for the Bound*/, 27376 /*The Maw of Iso'rath*/, 27377 /*Devoured*/, 27378 /*The Worldbreaker*/, 27379 /*The Terrors of Iso'rath*/, 27433 /*Shredderectomy*/, 27468 /*Siege Tank Rescue*/, 27515 /*Roots'll Do 'Er*/, 27537 /*Any Portal in a Storm*/, 27538 /*The Perfect Poultice*/, 27584 /*Blood in the Surf*/, 27586 /*Shells on the Sea Shore*/, 27610 /*Scouting the Shore*/, 27611 /*Blood on the Sand*/, 27642 /*Sifting Through The Wreckage*/, 27649 /*A Steady Supply*/, 27747 /*Total War*/, 27750 /*War Forage*/, 27751 /*Crushing the Wildhammer*/, 27752 /*Fight Like a Wildhammer*/, 27754 /*Dragonmaw Takedown*/, 27808 /*Stubborn as a Doyle*/, 27811 /*The Scent of Battle*/, 27814 /*Anything We Can Get*/, 27929 /*Drag 'em Down*/, 28043 /*How to Maim Your Dragon*/, 28212 /*Hot Stuff*/, 28215 /*Potential Energy*/, 28234 /*They Took Me Pants!*/, 28281 /*Last Stand at Thundermar*/, 28408 /*Something Bold*/, 28409 /*Something Brewed*/, 28410 /*Something Stolen*/, 28411 /*Something Stewed*/, 28498 /*The Secret of Nahom*/, 28499 /*Punish the Trespassers*/, 28561 /*Nahom Must Hold*/, 28584 /*Quality Construction*/, 28592 /*Parting Packages*/, 28596 /*Welcome to Highbank!*/, 28860 /*Keeping the Dragonmaw at Bay*/, 28862 /*Never Leave a Dinner Behind*/, 28864 /*Beer Run*/, 28871 /*Crushing the Wildhammer*/, 28872 /*Total War*/, 28873 /*Another Maw to Feed*/, 28874 /*Hook 'em High*/); UPDATE `quest_template` SET `QuestInfoID`=21, `AllowableRaces`=33554866, `VerifiedBuild`=19034 WHERE `ID`=27304; -- Follow the Sun -UPDATE `quest_template` SET `MinLevel`=4294967295, `Flags`=16384, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=27307; -- The Elements Cry Out -UPDATE `quest_template` SET `MinLevel`=4294967295, `Flags`=16384, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=27308; -- The Elements Cry Out +UPDATE `quest_template` SET `Flags`=16384, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=27307; -- The Elements Cry Out +UPDATE `quest_template` SET `Flags`=16384, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=27308; -- The Elements Cry Out UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=28800, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID` IN (27310 /*No Weapons For You!*/, 27312 /*Darkcloud Grimtotem*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=36000, `AreaGroupID`=0, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=27314; -- Grimtotem Chiefs: Isha Gloomaxe UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `AreaGroupID`=0, `AllowableRaces`=33555378, `LogDescription`='Slay Isha Gloomaxe.', `QuestDescription`='Basic brave philosophy dictates that if you kill the leaders of your enemy''s forces, they will soon fall into disarray. We are going to do just that, $c.$B$BIsha Gloomaxe is the closest of the Grimtotem chiefs. We will test her and her axe, and she will be found wanting.', `VerifiedBuild`=19034 WHERE `ID`=27315; -- Grimtotem Chiefs: Isha Gloomaxe @@ -8154,7 +8127,6 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=2, `AllowableRaces`=52430847 UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=52430847, `QuestDescription`='The Noxious Glade is a quagmire, both literally and figuratively. There''s enough Scourge up there to give us trouble for the rest of both of our lifetimes.$b$bThey can re-animate the weaker ones when they die, $n. They will never stop coming if we don''t do something.$b$bTake these blades and drive them through the corpses of any Scourge troopers you find. The blade is simple, but its enchantment will prevent the dead bones from being reanimated. Forever.', `VerifiedBuild`=19034 WHERE `ID`=27467; -- Buried Blades UPDATE `quest_template` SET `RewardMoneyDifficulty`=1, `RewardBonusMoney`=5400, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27469 /*Friends on The Other Side*/, 27470 /*A Potential Ally*/, 27471 /*Blackrock Anomaly*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=8, `RewardBonusMoney`=13800, `AllowableRaces`=52430847, `QuestDescription`='You are unwavering in your loyalty to the Forsaken, $n. Know that what you have done for us - for the Horde - will not go unnoticed. With Lord Godfrey and his men recovered, we will have a great advantage over the Gilneas Liberation Front and the rest of the Alliance dogs.$B$BNow stand by my side as Lord Godfrey is reborn as one of us. Together we will bring him and his men into the fold.', `VerifiedBuild`=19034 WHERE `ID`=27472; -- Rise, Godfrey -UPDATE `quest_template` SET `MinLevel`=4294967295, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=27473; -- What's Shaking in Ironforge UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `RewardBonusMoney`=9600, `Flags`=8, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID`=27474; -- Breaking the Barrier UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=7500, `AllowableRaces`=52430847, `QuestDescription`='The magi of Ambermill have employed foul magic to keep us away. Elemental servitors, created with immunities that we cannot breach, protect their territory.$B$BVenture east to Ambermill and slay the unyielding elemental servitors that guard the town and recover their cores. Bring their cores back to me so that I may devise a method by which we are able to destroy them all!', `VerifiedBuild`=19034 WHERE `ID`=27475; -- Unyielding Servitors UPDATE `quest_template` SET `AllowableRaces`=52430847, `QuestDescription`='Take the codex and travel north to the Sepulcher. Once there, find Dalar Dawnweaver. Dalar is a former archmage of the Kirin Tor. Surely he will be able to bring down the protective wards surrounding this codex and pry its secrets loose.$B$BHurry, $n.', `VerifiedBuild`=19034 WHERE `ID`=27476; -- Dalar Dawnweaver @@ -8189,9 +8161,7 @@ UPDATE `quest_template` SET `RewardMoneyDifficulty`=2, `AllowableRaces`=52430847 UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `AllowableRaces`=52430847, `QuestDescription`='I''ve had just about enough of the funk of this place. Undead stink is bad enough, and then you add mushrooms to the mix? I hate mushrooms!$b$bI''m going to head back to Light''s Hope Chapel, $n... and I''m taking Tarenar and Fiona with me. I think we''ve all earned a well-deserved break.$b$bLet me give you this. It''s my hearthstone - you can use it to travel instantly back to Light''s Hope. I won''t need it - I''m going to be riding in the caravan.$b$bIn the FRONT SEAT.', `VerifiedBuild`=19034 WHERE `ID`=27527; -- Journey's End UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `Flags`=8, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27528 /*Scourged Mass*/, 27529 /*Defenders of Darrowshire*/, 27536 /*Mostly Harmless*/, 27598 /*Kill Gil*/, 27612 /*Victory From Within*/, 27656 /*Croc-Out*/, 27765 /*First Sample: Wild Eggs*/, 27766 /*Second Sample: Whelps*/, 27911 /*With Dying Breath*/, 28054 /*Slavery is Bad*/, 28055 /*Sweet, Horrible Freedom*/, 28125 /*Something to Wear*/, 28127 /*Break Them Out*/, 28157 /*Four Twilight Elements*/, 28225 /*Prove Yer Allegiance*/, 28332 /*Helcular's Command*/, 28360 /*Running Their Course*/, 28361 /*Squirrely Clean*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=6, `Flags`=8, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27539 /*Add 'em to the Pile*/, 28230 /*Protocol*/); -UPDATE `quest_template` SET `MinLevel`=4294967295, `RewardMoney`=7, `RewardMoneyDifficulty`=1, `RewardBonusMoney`=960, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=27540; -- The Wildhammer UPDATE `quest_template` SET `RewardMoneyDifficulty`=4, `RewardBonusMoney`=75600, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID`=27541; -- Lessons From the Past -UPDATE `quest_template` SET `MinLevel`=4294967295, `RewardMoney`=7, `RewardMoneyDifficulty`=1, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=27546; -- Speak with Captain Anton UPDATE `quest_template` SET `RewardBonusMoney`=8700, `AllowableRaces`=52430847, `QuestDescription`='Our forces in Pyrewood were recently taken by way of sneak attack. The 7th Legion managed to infiltrate the town with their scouts, ultimately decimating our troops.$B$BThe Dark Lady has tasked us with a rescue mission. We are to find survivors and get them out of Pyrewood safely. If any soldiers live they are likely worthless, but we do as the Dark Lady commands.$B$BLet''s get this nonsense over with, $n. Pyrewood is directly southwest of the Forsaken Front.', `VerifiedBuild`=19034 WHERE `ID`=27547; -- Of No Consequence UPDATE `quest_template` SET `RewardBonusMoney`=8700, `Flags`=8, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID`=27548; -- Lessons in Fear UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `RewardBonusMoney`=75600, `Flags`=3145864, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID`=27549; -- By the Light of the Stars @@ -8199,7 +8169,6 @@ UPDATE `quest_template` SET `RewardBonusMoney`=10800, `Flags`=2097160, `Allowabl UPDATE `quest_template` SET `FlagsEx`=512, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27552 /*[FLAG] EPL Zone Buff - Flag 1*/, 27553 /*[FLAG] EPL Zone Buff - Flag 2*/, 27554 /*[FLAG] EPL Zone Buff - Flag 3*/, 27555 /*Fiona's Lucky Charm*/, 27556 /*Gidwin's Weapon Oil*/, 27557 /*Tarenar's Talisman*/, 27558 /*Pamela's Doll*/, 27559 /*Vex'tul's Armbands*/, 27560 /*Argus' Journal*/, 27561 /*Rimblat's Stone*/, 27562 /*Beezil's Cog*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=8, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27567 /*Twilight?! No!*/, 28605 /*Domination*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=8, `RewardBonusMoney`=36600, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID`=27569; -- Dark Iron Tacticians -UPDATE `quest_template` SET `MinLevel`=4294967295, `RewardMoney`=7, `RewardMoneyDifficulty`=1, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=27570; -- The Situation So Far UPDATE `quest_template` SET `RewardXPDifficulty`=8, `Float10`=0.25, `RewardMoney`=8500, `RewardMoneyDifficulty`=8, `Float13`=0.25, `RewardBonusMoney`=25500, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27571 /*The Grim Guzzler*/, 27589 /*The Grim Guzzler*/); UPDATE `quest_template` SET `RewardXPDifficulty`=8, `Float10`=0.25, `RewardMoney`=8675, `RewardMoneyDifficulty`=8, `Float13`=0.25, `RewardBonusMoney`=26100, `AllowableRaces`=52430847, `VerifiedBuild`=19034 WHERE `ID` IN (27573 /*The Dark Iron Pact*/, 27591 /*The Dark Iron Pact*/); UPDATE `quest_template` SET `RewardMoneyDifficulty`=3, `RewardBonusMoney`=38700, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=27576; -- Patchwork Command @@ -8677,7 +8646,7 @@ UPDATE `quest_template` SET `RewardChoiceItemID1`=116202, `RewardChoiceItemQuant UPDATE `quest_template` SET `RewardChoiceItemID1`=116202, `RewardChoiceItemQuantity1`=1, `QuestDescription`='Know what? You not so bad after all, $n. You take Kekek a lot of fun places. Kekek meet a lot of new friends and do things no other pup get to do.$B$BYou, and Hemet Nesingwary, and Snowfall Glade pups all new best friends. Maybe sometime you bring Kekek that green hills book? Kekek promise to write sometimes, too, tell you how things go. Maybe even be nice to big-tongue kids sometimes.$B$BKekek gotta go back to orphan-lady Aria now, back in purple human city.', `VerifiedBuild`=19034 WHERE `ID`=28880; -- Back To The Orphanage UPDATE `quest_template` SET `QuestLevel`=90, `MinLevel`=90, `RewardMoney`=114000, `RewardMoneyDifficulty`=5, `RewardBonusMoney`=83100, `RewardCurrencyQty1`=300, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=28882; -- Victory in Tol Barad UPDATE `quest_template` SET `QuestLevel`=90, `MinLevel`=90, `RewardMoney`=114000, `RewardMoneyDifficulty`=5, `RewardBonusMoney`=83100, `RewardCurrencyQty1`=300, `AllowableRaces`=33555378, `VerifiedBuild`=19034 WHERE `ID`=28884; -- Victory in Tol Barad -UPDATE `quest_template` SET `RewardMoney`=4294167297, `RewardBonusMoney`=9300, `RewardFactionOverride1`=4299900, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=29034; -- They Grow Up So Fast +UPDATE `quest_template` SET `RewardMoney`=-799999, `RewardBonusMoney`=9300, `RewardFactionOverride1`=4299900, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=29034; -- They Grow Up So Fast UPDATE `quest_template` SET `QuestDescription`='Potions, potions, potions. Can I teach you about potions!$b$bYou''re going to have to bring me samples of your work, so I know you''re ready.$b$bRemember $n, you can only learn ONE specialization, so if you complete your potion training, then elixir and transmutation specialization will no longer be available.', `VerifiedBuild`=19034 WHERE `ID`=29067; -- Potion Master UPDATE `quest_template` SET `RewardMoney`=7, `RewardMoneyDifficulty`=1, `RewardBonusMoney`=960, `Flags`=0, `AllowableRaces`=18875469, `VerifiedBuild`=19034 WHERE `ID`=29074; -- A Season for Celebration UPDATE `quest_template` SET `RewardMoneyDifficulty`=5, `PortraitGiver`=40147, `AllowableRaces`=-2, `LogDescription`='Kill 6 Blackrock Worgs.', `PortraitGiverText`='Blackrock Battle Worgs are fierce predators.', `VerifiedBuild`=19034 WHERE `ID`=29078; -- Beating Them Back! @@ -10344,4 +10313,4 @@ INSERT INTO `quest_objectives` (`ID`, `QuestId`, `Type`, `StorageIndex`, `Object (271344, 33434, 0, 6, 73984, 1, 2, 0, 'Hit Blue Marker', 19034), -- 271344 (271345, 33434, 0, 7, 73988, 1, 2, 0, 'Hit Green Marker', 19034), -- 271345 (272858, 34589, 1, 0, 111043, 3, 0, 0, '', 19034), -- 272858 -(272880, 34617, 1, 0, 906, 1, 0, 0, '', 19034); -- 272
\ No newline at end of file +(272880, 34617, 1, 0, 906, 1, 0, 0, '', 19034); -- 272880 diff --git a/sql/updates/world/2014_12_30_00_world.sql b/sql/updates/world/2014_12_30_00_world.sql new file mode 100644 index 00000000000..d1fad59b940 --- /dev/null +++ b/sql/updates/world/2014_12_30_00_world.sql @@ -0,0 +1,36 @@ +ALTER TABLE `quest_template` + CHANGE `MinLevel` `MinLevel` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardMoney` `RewardMoney` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionValue1` `RewardFactionValue1` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionOverride1` `RewardFactionOverride1` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionValue2` `RewardFactionValue2` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionOverride2` `RewardFactionOverride2` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionValue3` `RewardFactionValue3` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionOverride3` `RewardFactionOverride3` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionValue4` `RewardFactionValue4` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionOverride4` `RewardFactionOverride4` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionValue5` `RewardFactionValue5` INT(11) NOT NULL DEFAULT '0', + CHANGE `RewardFactionOverride5` `RewardFactionOverride5` INT(11) NOT NULL DEFAULT '0'; + +UPDATE `quest_template` SET `RewardFactionValue2`=-5 WHERE `Id` IN (1 /*Kanrethad's Quest*/, 189 /*Bloodscalp Ears*/, 209 /*Skullsplitter Tusks*/, 213 /*Hostile Takeover*/, 351 /*Find OOX-17/TN!*/, 485 /*Find OOX-09/HL!*/, 575 /*Supply and Demand*/, 577 /*Some Assembly Required*/, 578 /*The Stone of the Tides*/, 580 /*Whiskey Slim's Lost Grog*/, 587 /*Up to Snuff*/, 600 /*Venture Company Mining*/, 601 /*Water Elementals*/, 604 /*The Bloodsail Buccaneers*/, 605 /*Singing Blue Shards*/, 609 /*Voodoo Dues*/, 614 /*The Captain's Chest*/, 617 /*Akiris by the Bundle*/, 621 /*Zanzil's Secret*/, 628 /*Excelsior*/, 662 /*Deep Sea Salvage*/, 664 /*Drowned Sorrows*/, 669 /*Sunken Treasure*/, 705 /*Pearl Diving*/, 1182 /*Goblin Sponsorship*/, 2418 /*Power Stones*/, 8551 /*The Captain's Chest*/, 9065 /*The Pattymac Special*/, 11578 /*The ""Chow"" Quest (123)aa COPY*/, 11579 /*The ""Chow"" Quest (123)aa COPY*/, 25475 /*Find OOX-22/FE!*/, 26050 /*Goggle Boggle*/, 26055 /*Drowned Sorrows*/, 26593 /*Scaring Shaky*/, 26595 /*Kill-Collect*/, 26599 /*The Captain's Chest*/, 26613 /*Up to Snuff*/, 26614 /*Keep An Eye Out*/); +UPDATE `quest_template` SET `RewardFactionValue2`=-3 WHERE `Id` IN (201 /*Investigate the Camp*/, 210 /*Krazek's Cookery*/, 603 /*Ansirem's Key*/, 8249 /*Junkboxes Needed*/, 26052 /*Speak to Shakes*/); +UPDATE `quest_template` SET `RewardFactionValue2`=-7 WHERE `Id` IN (348 /*Stranglethorn Fever*/, 1385 /*Brutal Politics*/, 3721 /*An OOX of Your Own*/, 4621 /*Avast Ye, Admiral!*/, 9259 /*Traitor to the Bloodsail*/, 9266 /*Making Amends*/, 9267 /*Mending Old Wounds*/, 9268 /*War at Sea*/, 26597 /*Stranglethorn Fever*/, 26601 /*Mok'rash the Cleaver*/); +UPDATE `quest_template` SET `RewardFactionValue2`=-4 WHERE `Id` IN (595 /*The Bloodsail Buccaneers*/, 627 /*Favor for Krazek*/, 703 /*Barbecued Buzzard Wings*/, 26594 /*Return to MacKinley*/, 26600 /*A Giant's Feast*/, 26609 /*The Bloodsail Buccaneers*/, 26610 /*Bloodsail Treachery*/, 26617 /*An Old Sea Dog*/); +UPDATE `quest_template` SET `RewardFactionValue2`=-2 WHERE `Id` IN (606 /*Scaring Shaky*/, 1036 /*Avast Ye, Scallywag*/, 26611 /*The Baron Must Be Told*/); +UPDATE `quest_template` SET `RewardFactionValue2`=-6 WHERE `Id` IN (608 /*The Bloodsail Buccaneers*/, 611 /*The Curse of the Tides*/, 613 /*Cracking Maury's Foot*/, 623 /*Akiris by the Bundle*/, 648 /*Rescue OOX-17/TN!*/, 836 /*Rescue OOX-09/HL!*/, 2767 /*Rescue OOX-22/FE!*/, 3601 /*Kim'jael Indeed!*/, 5534 /*Kim'jael's ""Missing"" Equipment*/, 25476 /*Rescue OOX-22/FE!*/, 26051 /*Sunken Treasure*/, 26602 /*A Dish Best Served Huge*/, 26612 /*Details of the Attack*/, 26628 /*Death From Below*/); +UPDATE `quest_template` SET `RewardFactionValue3`=-2 WHERE `Id`=1180; -- Goblin Sponsorship +UPDATE `quest_template` SET `RewardFactionValue1`=-5 WHERE `Id` IN (1368 /*Gelkis Alliance*/, 30388 /*A Blue Feather for Gina*/, 30394 /*A Blue Feather for Old Hillpaw*/, 30395 /*A Marsh Lily for Old Hillpaw*/, 30396 /*A Dish for Old Hillpaw*/, 30400 /*A Blue Feather for Chee Chee*/, 30406 /*A Blue Feather for Sho*/, 30412 /*A Blue Feather for Haohan*/); +UPDATE `quest_template` SET `RewardFactionValue1`=-7 WHERE `Id`=1382; -- Strange Alliance +UPDATE `quest_template` SET `RewardMoney`=-299 WHERE `Id` IN (2945 /*Grime-Encrusted Ring*/, 2951 /*The Sparklematic 5200!*/, 2953 /*More Sparklematic Action*/, 4601 /*The Sparklematic 5200!*/, 4602 /*The Sparklematic 5200!*/, 4603 /*More Sparklematic Action*/, 4604 /*More Sparklematic Action*/); +UPDATE `quest_template` SET `RewardMoney`=-2999 WHERE `Id` IN (2948 /*Gnome Improvement*/, 2950 /*Nogg's Ring Redo*/); +UPDATE `quest_template` SET `RewardMoney`=-149999 WHERE `Id`=5538; -- Mold Rhymes With... +UPDATE `quest_template` SET `RewardMoney`=-1499999 WHERE `Id` IN (7637 /*Emphasis on Sacrifice*/, 7642 /*Collection of Goods*/); +UPDATE `quest_template` SET `RewardMoney`=-49999 WHERE `Id` IN (8763 /*The Hero of the Day*/, 8799 /*The Hero of the Day*/, 13265 /*Cloth Scavenging*/, 13268 /*Cloth Scavenging*/, 13269 /*Cloth Scavenging*/, 13270 /*Cloth Scavenging*/, 13272 /*Cloth Scavenging*/); +UPDATE `quest_template` SET `RewardMoney`=-399999 WHERE `Id`=8921; -- The Ectoplasmic Distiller +UPDATE `quest_template` SET `RewardMoney`=-749999 WHERE `Id` IN (11031 /*Archmage No More*/, 11032 /*Protector No More*/, 11033 /*Assassin No More*/, 11034 /*Restorer No More*/, 11103 /*Sage No More*/, 11104 /*Restorer No More*/, 11105 /*Champion No More*/, 11106 /*Defender No More*/); +UPDATE `quest_template` SET `RewardMoney`=-99999 WHERE `Id` IN (11548 /*Your Continued Support*/, 13846 /*Contributin' To The Cause*/); +UPDATE `quest_template` SET `RewardMoney`=-10000000 WHERE `Id`=11549; -- A Magnanimous Benefactor +UPDATE `quest_template` SET `RewardMoney`=-799999 WHERE `Id` IN (13906 /*They Grow Up So Fast*/, 29034 /*They Grow Up So Fast*/); +UPDATE `quest_template` SET `RewardMoney`=-1999999 WHERE `Id` IN (24819 /*A Change of Heart*/, 24820 /*A Change of Heart*/, 24821 /*A Change of Heart*/, 24822 /*A Change of Heart*/, 24836 /*A Change of Heart*/, 24838 /*A Change of Heart*/, 24840 /*A Change of Heart*/, 24842 /*A Change of Heart*/, 24843 /*A Change of Heart*/, 24845 /*A Change of Heart*/, 24846 /*A Change of Heart*/, 24847 /*A Change of Heart*/, 25246 /*A Change of Heart*/, 25247 /*A Change of Heart*/, 25248 /*A Change of Heart*/, 25249 /*A Change of Heart*/); +UPDATE `quest_template` SET `MinLevel`=-1 WHERE `Id` IN (27307 /*The Elements Cry Out*/, 27308 /*The Elements Cry Out*/, 27473 /*What's Shaking in Ironforge*/, 27540 /*The Wildhammer*/, 27546 /*Speak with Captain Anton*/, 27570 /*The Situation So Far*/); +UPDATE `quest_template` SET `RewardFactionValue1`=-1 WHERE `Id`=31737; -- The Cost of War diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e7d7576c138..e6d31ebbaef 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/genrev/CMakeLists.txt b/src/genrev/CMakeLists.txt index 8acee875bc0..8ab3494cd70 100644 --- a/src/genrev/CMakeLists.txt +++ b/src/genrev/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/CMakeLists.txt b/src/server/CMakeLists.txt index 6997fd6e146..21027af9e04 100644 --- a/src/server/CMakeLists.txt +++ b/src/server/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/bnetserver/Authentication/AuthCodes.cpp b/src/server/bnetserver/Authentication/AuthCodes.cpp index 908bc30b719..97723816ce3 100644 --- a/src/server/bnetserver/Authentication/AuthCodes.cpp +++ b/src/server/bnetserver/Authentication/AuthCodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Authentication/AuthCodes.h b/src/server/bnetserver/Authentication/AuthCodes.h index 3c3b002551c..224f4e66c28 100644 --- a/src/server/bnetserver/Authentication/AuthCodes.h +++ b/src/server/bnetserver/Authentication/AuthCodes.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/bnetserver/Authentication/BattlenetPacketCrypt.cpp b/src/server/bnetserver/Authentication/BattlenetPacketCrypt.cpp index de4cf73f71c..e8cf48a879d 100644 --- a/src/server/bnetserver/Authentication/BattlenetPacketCrypt.cpp +++ b/src/server/bnetserver/Authentication/BattlenetPacketCrypt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Authentication/BattlenetPacketCrypt.h b/src/server/bnetserver/Authentication/BattlenetPacketCrypt.h index a09d3417dfe..665b4c29a0a 100644 --- a/src/server/bnetserver/Authentication/BattlenetPacketCrypt.h +++ b/src/server/bnetserver/Authentication/BattlenetPacketCrypt.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/CMakeLists.txt b/src/server/bnetserver/CMakeLists.txt index 5d1edef5b81..53d25846cc5 100644 --- a/src/server/bnetserver/CMakeLists.txt +++ b/src/server/bnetserver/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/bnetserver/Main.cpp b/src/server/bnetserver/Main.cpp index ce90019c011..5f4f63287e5 100644 --- a/src/server/bnetserver/Main.cpp +++ b/src/server/bnetserver/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/bnetserver/Packets/AchievementPackets.h b/src/server/bnetserver/Packets/AchievementPackets.h index 99a0f19d0a2..bcd9b6729e9 100644 --- a/src/server/bnetserver/Packets/AchievementPackets.h +++ b/src/server/bnetserver/Packets/AchievementPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/AuthenticationPackets.cpp b/src/server/bnetserver/Packets/AuthenticationPackets.cpp index f6743a7c2f0..cff5b6742b2 100644 --- a/src/server/bnetserver/Packets/AuthenticationPackets.cpp +++ b/src/server/bnetserver/Packets/AuthenticationPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/AuthenticationPackets.h b/src/server/bnetserver/Packets/AuthenticationPackets.h index fd5838720ab..5233ea9e45b 100644 --- a/src/server/bnetserver/Packets/AuthenticationPackets.h +++ b/src/server/bnetserver/Packets/AuthenticationPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/BitStream.cpp b/src/server/bnetserver/Packets/BitStream.cpp index 5f002f6b1d9..bbf18c04d4c 100644 --- a/src/server/bnetserver/Packets/BitStream.cpp +++ b/src/server/bnetserver/Packets/BitStream.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/BitStream.h b/src/server/bnetserver/Packets/BitStream.h index ef2c85a63c8..264faf27a42 100644 --- a/src/server/bnetserver/Packets/BitStream.h +++ b/src/server/bnetserver/Packets/BitStream.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/CachePackets.cpp b/src/server/bnetserver/Packets/CachePackets.cpp index 8ae489fe47c..98a03077f35 100644 --- a/src/server/bnetserver/Packets/CachePackets.cpp +++ b/src/server/bnetserver/Packets/CachePackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/CachePackets.h b/src/server/bnetserver/Packets/CachePackets.h index 57ccd448081..a6bf68cad72 100644 --- a/src/server/bnetserver/Packets/CachePackets.h +++ b/src/server/bnetserver/Packets/CachePackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/ChatPackets.h b/src/server/bnetserver/Packets/ChatPackets.h index fc4b638754c..23d8ea84d21 100644 --- a/src/server/bnetserver/Packets/ChatPackets.h +++ b/src/server/bnetserver/Packets/ChatPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/ConnectionPackets.cpp b/src/server/bnetserver/Packets/ConnectionPackets.cpp index 3b7a9949552..2c23dd2fe9f 100644 --- a/src/server/bnetserver/Packets/ConnectionPackets.cpp +++ b/src/server/bnetserver/Packets/ConnectionPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/ConnectionPackets.h b/src/server/bnetserver/Packets/ConnectionPackets.h index 0e6cd2c49ca..c02221fa39b 100644 --- a/src/server/bnetserver/Packets/ConnectionPackets.h +++ b/src/server/bnetserver/Packets/ConnectionPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/FriendsPackets.cpp b/src/server/bnetserver/Packets/FriendsPackets.cpp index 8b5d92389af..a9d85877f93 100644 --- a/src/server/bnetserver/Packets/FriendsPackets.cpp +++ b/src/server/bnetserver/Packets/FriendsPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/FriendsPackets.h b/src/server/bnetserver/Packets/FriendsPackets.h index 12935ddc4da..909dc7d52b3 100644 --- a/src/server/bnetserver/Packets/FriendsPackets.h +++ b/src/server/bnetserver/Packets/FriendsPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/PacketManager.cpp b/src/server/bnetserver/Packets/PacketManager.cpp index faf38e8a5bc..46ffc42d9f4 100644 --- a/src/server/bnetserver/Packets/PacketManager.cpp +++ b/src/server/bnetserver/Packets/PacketManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/PacketManager.h b/src/server/bnetserver/Packets/PacketManager.h index d36aed8fd22..6d891f03f57 100644 --- a/src/server/bnetserver/Packets/PacketManager.h +++ b/src/server/bnetserver/Packets/PacketManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/Packets.h b/src/server/bnetserver/Packets/Packets.h index f62ba6f65cd..cbd9a3df975 100644 --- a/src/server/bnetserver/Packets/Packets.h +++ b/src/server/bnetserver/Packets/Packets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/PacketsBase.cpp b/src/server/bnetserver/Packets/PacketsBase.cpp index fd3bebcf471..da76865ff8d 100644 --- a/src/server/bnetserver/Packets/PacketsBase.cpp +++ b/src/server/bnetserver/Packets/PacketsBase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/PacketsBase.h b/src/server/bnetserver/Packets/PacketsBase.h index 0f86621d6a6..d66205a33b8 100644 --- a/src/server/bnetserver/Packets/PacketsBase.h +++ b/src/server/bnetserver/Packets/PacketsBase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/PresencePackets.cpp b/src/server/bnetserver/Packets/PresencePackets.cpp index b72bf8daca8..ac6af093fc8 100644 --- a/src/server/bnetserver/Packets/PresencePackets.cpp +++ b/src/server/bnetserver/Packets/PresencePackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/PresencePackets.h b/src/server/bnetserver/Packets/PresencePackets.h index 45b8f3e0e82..9c4464ccab3 100644 --- a/src/server/bnetserver/Packets/PresencePackets.h +++ b/src/server/bnetserver/Packets/PresencePackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/ProfilePackets.h b/src/server/bnetserver/Packets/ProfilePackets.h index bf413471f62..caf4c1a1262 100644 --- a/src/server/bnetserver/Packets/ProfilePackets.h +++ b/src/server/bnetserver/Packets/ProfilePackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/SupportPackets.h b/src/server/bnetserver/Packets/SupportPackets.h index 43f51bd564e..3475fd687d2 100644 --- a/src/server/bnetserver/Packets/SupportPackets.h +++ b/src/server/bnetserver/Packets/SupportPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/WoWRealmPackets.cpp b/src/server/bnetserver/Packets/WoWRealmPackets.cpp index 4ea34a7e173..0a86d671afc 100644 --- a/src/server/bnetserver/Packets/WoWRealmPackets.cpp +++ b/src/server/bnetserver/Packets/WoWRealmPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Packets/WoWRealmPackets.h b/src/server/bnetserver/Packets/WoWRealmPackets.h index dc958db501b..6c0eb431dde 100644 --- a/src/server/bnetserver/Packets/WoWRealmPackets.h +++ b/src/server/bnetserver/Packets/WoWRealmPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Realms/RealmList.cpp b/src/server/bnetserver/Realms/RealmList.cpp index a876aa93a07..0f1a2df807e 100644 --- a/src/server/bnetserver/Realms/RealmList.cpp +++ b/src/server/bnetserver/Realms/RealmList.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/bnetserver/Realms/RealmList.h b/src/server/bnetserver/Realms/RealmList.h index 718e26d2564..5e0a73017cc 100644 --- a/src/server/bnetserver/Realms/RealmList.h +++ b/src/server/bnetserver/Realms/RealmList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/bnetserver/Realms/WorldListener.cpp b/src/server/bnetserver/Realms/WorldListener.cpp index 8a6133c44e6..bcfc5d685c1 100644 --- a/src/server/bnetserver/Realms/WorldListener.cpp +++ b/src/server/bnetserver/Realms/WorldListener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Realms/WorldListener.h b/src/server/bnetserver/Realms/WorldListener.h index 04d5342449c..71dd246f5ea 100644 --- a/src/server/bnetserver/Realms/WorldListener.h +++ b/src/server/bnetserver/Realms/WorldListener.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/ComponentManager.cpp b/src/server/bnetserver/Server/ComponentManager.cpp index be1f22022f4..52f93fd52ad 100644 --- a/src/server/bnetserver/Server/ComponentManager.cpp +++ b/src/server/bnetserver/Server/ComponentManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/ComponentManager.h b/src/server/bnetserver/Server/ComponentManager.h index 865cfca7f62..7aae45d94c5 100644 --- a/src/server/bnetserver/Server/ComponentManager.h +++ b/src/server/bnetserver/Server/ComponentManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/ModuleManager.cpp b/src/server/bnetserver/Server/ModuleManager.cpp index 05cee2ff42e..3b525eae094 100644 --- a/src/server/bnetserver/Server/ModuleManager.cpp +++ b/src/server/bnetserver/Server/ModuleManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/ModuleManager.h b/src/server/bnetserver/Server/ModuleManager.h index 36ffb2fec3f..05a7298e27c 100644 --- a/src/server/bnetserver/Server/ModuleManager.h +++ b/src/server/bnetserver/Server/ModuleManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/Session.cpp b/src/server/bnetserver/Server/Session.cpp index f0940aa6947..163640a3051 100644 --- a/src/server/bnetserver/Server/Session.cpp +++ b/src/server/bnetserver/Server/Session.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/Session.h b/src/server/bnetserver/Server/Session.h index ab373ebe6cc..37dcb5ef4f1 100644 --- a/src/server/bnetserver/Server/Session.h +++ b/src/server/bnetserver/Server/Session.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/SessionManager.cpp b/src/server/bnetserver/Server/SessionManager.cpp index 6c52ee477f1..b5d4f5e11cc 100644 --- a/src/server/bnetserver/Server/SessionManager.cpp +++ b/src/server/bnetserver/Server/SessionManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/Server/SessionManager.h b/src/server/bnetserver/Server/SessionManager.h index 08ca5ce2b4e..5f95616bf74 100644 --- a/src/server/bnetserver/Server/SessionManager.h +++ b/src/server/bnetserver/Server/SessionManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/bnetserver/bnetserver.rc b/src/server/bnetserver/bnetserver.rc index f030203fdcd..434d898e647 100644 --- a/src/server/bnetserver/bnetserver.rc +++ b/src/server/bnetserver/bnetserver.rc @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/BoundingIntervalHierarchy.cpp b/src/server/collision/BoundingIntervalHierarchy.cpp index c933fc8f4e3..12af680712e 100644 --- a/src/server/collision/BoundingIntervalHierarchy.cpp +++ b/src/server/collision/BoundingIntervalHierarchy.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/BoundingIntervalHierarchy.h b/src/server/collision/BoundingIntervalHierarchy.h index 491a299ca68..3a09772c41f 100644 --- a/src/server/collision/BoundingIntervalHierarchy.h +++ b/src/server/collision/BoundingIntervalHierarchy.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/BoundingIntervalHierarchyWrapper.h b/src/server/collision/BoundingIntervalHierarchyWrapper.h index 955a394fb40..60bb6a569df 100644 --- a/src/server/collision/BoundingIntervalHierarchyWrapper.h +++ b/src/server/collision/BoundingIntervalHierarchyWrapper.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/CMakeLists.txt b/src/server/collision/CMakeLists.txt index 3aac255be29..293f05d1988 100644 --- a/src/server/collision/CMakeLists.txt +++ b/src/server/collision/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/collision/DynamicTree.cpp b/src/server/collision/DynamicTree.cpp index a88c7573707..1de2543543d 100644 --- a/src/server/collision/DynamicTree.cpp +++ b/src/server/collision/DynamicTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/DynamicTree.h b/src/server/collision/DynamicTree.h index 1657302de5d..5e905323640 100644 --- a/src/server/collision/DynamicTree.h +++ b/src/server/collision/DynamicTree.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/IVMapManager.h b/src/server/collision/Management/IVMapManager.h index 02c2905345a..b890554257c 100644 --- a/src/server/collision/Management/IVMapManager.h +++ b/src/server/collision/Management/IVMapManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/MMapFactory.cpp b/src/server/collision/Management/MMapFactory.cpp index 51f016f6e96..667b8378c56 100644 --- a/src/server/collision/Management/MMapFactory.cpp +++ b/src/server/collision/Management/MMapFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/MMapFactory.h b/src/server/collision/Management/MMapFactory.h index 4b883d43613..773983f81eb 100644 --- a/src/server/collision/Management/MMapFactory.h +++ b/src/server/collision/Management/MMapFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/MMapManager.cpp b/src/server/collision/Management/MMapManager.cpp index cbb10923fe0..170350d4de4 100644 --- a/src/server/collision/Management/MMapManager.cpp +++ b/src/server/collision/Management/MMapManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/MMapManager.h b/src/server/collision/Management/MMapManager.h index 798d0206538..ac01a3c5693 100644 --- a/src/server/collision/Management/MMapManager.h +++ b/src/server/collision/Management/MMapManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/VMapFactory.cpp b/src/server/collision/Management/VMapFactory.cpp index f4b92060ba3..e3e211268e0 100644 --- a/src/server/collision/Management/VMapFactory.cpp +++ b/src/server/collision/Management/VMapFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/VMapFactory.h b/src/server/collision/Management/VMapFactory.h index d09f4c50259..3067c2919d5 100644 --- a/src/server/collision/Management/VMapFactory.h +++ b/src/server/collision/Management/VMapFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/VMapManager2.cpp b/src/server/collision/Management/VMapManager2.cpp index b9ac7e204da..f85fceb7b39 100644 --- a/src/server/collision/Management/VMapManager2.cpp +++ b/src/server/collision/Management/VMapManager2.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Management/VMapManager2.h b/src/server/collision/Management/VMapManager2.h index 9c419270b5a..e13d5ab952b 100644 --- a/src/server/collision/Management/VMapManager2.h +++ b/src/server/collision/Management/VMapManager2.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Maps/MapTree.cpp b/src/server/collision/Maps/MapTree.cpp index d62b2b21224..72435594ad0 100644 --- a/src/server/collision/Maps/MapTree.cpp +++ b/src/server/collision/Maps/MapTree.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Maps/MapTree.h b/src/server/collision/Maps/MapTree.h index 2f483a8822c..08bd5c3d3a1 100644 --- a/src/server/collision/Maps/MapTree.h +++ b/src/server/collision/Maps/MapTree.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Maps/TileAssembler.cpp b/src/server/collision/Maps/TileAssembler.cpp index cc454a5822f..7925a5aa474 100644 --- a/src/server/collision/Maps/TileAssembler.cpp +++ b/src/server/collision/Maps/TileAssembler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Maps/TileAssembler.h b/src/server/collision/Maps/TileAssembler.h index 2167f1e5689..581622c6b73 100644 --- a/src/server/collision/Maps/TileAssembler.h +++ b/src/server/collision/Maps/TileAssembler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Models/GameObjectModel.cpp b/src/server/collision/Models/GameObjectModel.cpp index 0e8811d43d1..da8fe054748 100644 --- a/src/server/collision/Models/GameObjectModel.cpp +++ b/src/server/collision/Models/GameObjectModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Models/GameObjectModel.h b/src/server/collision/Models/GameObjectModel.h index 99c9b1337b3..232ebbee5e9 100644 --- a/src/server/collision/Models/GameObjectModel.h +++ b/src/server/collision/Models/GameObjectModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Models/ModelInstance.cpp b/src/server/collision/Models/ModelInstance.cpp index bd84548d792..025352eeb58 100644 --- a/src/server/collision/Models/ModelInstance.cpp +++ b/src/server/collision/Models/ModelInstance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Models/ModelInstance.h b/src/server/collision/Models/ModelInstance.h index 1cb8fdde942..dfdb001db0a 100644 --- a/src/server/collision/Models/ModelInstance.h +++ b/src/server/collision/Models/ModelInstance.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Models/WorldModel.cpp b/src/server/collision/Models/WorldModel.cpp index 5962b343544..3af120045cb 100644 --- a/src/server/collision/Models/WorldModel.cpp +++ b/src/server/collision/Models/WorldModel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/Models/WorldModel.h b/src/server/collision/Models/WorldModel.h index da1f58a79c6..6a901a59fdf 100644 --- a/src/server/collision/Models/WorldModel.h +++ b/src/server/collision/Models/WorldModel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/VMapDefinitions.h b/src/server/collision/VMapDefinitions.h index 34f4a8a78c4..8d18372d2b1 100644 --- a/src/server/collision/VMapDefinitions.h +++ b/src/server/collision/VMapDefinitions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/collision/VMapTools.h b/src/server/collision/VMapTools.h index 3951955a446..fa7bc394ebc 100644 --- a/src/server/collision/VMapTools.h +++ b/src/server/collision/VMapTools.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/CombatAI.cpp b/src/server/game/AI/CoreAI/CombatAI.cpp index 78ba5d0719c..7efed2976c4 100644 --- a/src/server/game/AI/CoreAI/CombatAI.cpp +++ b/src/server/game/AI/CoreAI/CombatAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/CombatAI.h b/src/server/game/AI/CoreAI/CombatAI.h index 4b6af3cbdda..97308f22e5d 100644 --- a/src/server/game/AI/CoreAI/CombatAI.h +++ b/src/server/game/AI/CoreAI/CombatAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/GameObjectAI.cpp b/src/server/game/AI/CoreAI/GameObjectAI.cpp index 35f1c0ed7b8..5ff53e4819c 100644 --- a/src/server/game/AI/CoreAI/GameObjectAI.cpp +++ b/src/server/game/AI/CoreAI/GameObjectAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/GameObjectAI.h b/src/server/game/AI/CoreAI/GameObjectAI.h index 6e03103e269..bd588cd4571 100644 --- a/src/server/game/AI/CoreAI/GameObjectAI.h +++ b/src/server/game/AI/CoreAI/GameObjectAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/GuardAI.cpp b/src/server/game/AI/CoreAI/GuardAI.cpp index 6a87114171b..14e5faaf723 100644 --- a/src/server/game/AI/CoreAI/GuardAI.cpp +++ b/src/server/game/AI/CoreAI/GuardAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/GuardAI.h b/src/server/game/AI/CoreAI/GuardAI.h index c2b05d71e03..f7820640068 100644 --- a/src/server/game/AI/CoreAI/GuardAI.h +++ b/src/server/game/AI/CoreAI/GuardAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/PassiveAI.cpp b/src/server/game/AI/CoreAI/PassiveAI.cpp index a717cbbe2f1..afd198aea02 100644 --- a/src/server/game/AI/CoreAI/PassiveAI.cpp +++ b/src/server/game/AI/CoreAI/PassiveAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/PassiveAI.h b/src/server/game/AI/CoreAI/PassiveAI.h index 7f5ab5f29a2..40046323964 100644 --- a/src/server/game/AI/CoreAI/PassiveAI.h +++ b/src/server/game/AI/CoreAI/PassiveAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/PetAI.cpp b/src/server/game/AI/CoreAI/PetAI.cpp index b6d15a9632c..3e2087cd017 100644 --- a/src/server/game/AI/CoreAI/PetAI.cpp +++ b/src/server/game/AI/CoreAI/PetAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/PetAI.h b/src/server/game/AI/CoreAI/PetAI.h index 9517efd8927..89db5945c80 100644 --- a/src/server/game/AI/CoreAI/PetAI.h +++ b/src/server/game/AI/CoreAI/PetAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/ReactorAI.cpp b/src/server/game/AI/CoreAI/ReactorAI.cpp index 0f94d18acce..ebb57038737 100644 --- a/src/server/game/AI/CoreAI/ReactorAI.cpp +++ b/src/server/game/AI/CoreAI/ReactorAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/ReactorAI.h b/src/server/game/AI/CoreAI/ReactorAI.h index 2fdccac802d..6791e147a15 100644 --- a/src/server/game/AI/CoreAI/ReactorAI.h +++ b/src/server/game/AI/CoreAI/ReactorAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/TotemAI.cpp b/src/server/game/AI/CoreAI/TotemAI.cpp index fb4d00b1f84..2fbd6406b2f 100644 --- a/src/server/game/AI/CoreAI/TotemAI.cpp +++ b/src/server/game/AI/CoreAI/TotemAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/TotemAI.h b/src/server/game/AI/CoreAI/TotemAI.h index c63da0af31c..7776db37097 100644 --- a/src/server/game/AI/CoreAI/TotemAI.h +++ b/src/server/game/AI/CoreAI/TotemAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/UnitAI.cpp b/src/server/game/AI/CoreAI/UnitAI.cpp index a9d428a0489..87834d03f86 100644 --- a/src/server/game/AI/CoreAI/UnitAI.cpp +++ b/src/server/game/AI/CoreAI/UnitAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CoreAI/UnitAI.h b/src/server/game/AI/CoreAI/UnitAI.h index 79ba8cbdbbc..58632f8ac10 100644 --- a/src/server/game/AI/CoreAI/UnitAI.h +++ b/src/server/game/AI/CoreAI/UnitAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CreatureAI.cpp b/src/server/game/AI/CreatureAI.cpp index 933cb38aef5..96a25588120 100644 --- a/src/server/game/AI/CreatureAI.cpp +++ b/src/server/game/AI/CreatureAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CreatureAI.h b/src/server/game/AI/CreatureAI.h index 83ecb11a8ef..2e862c37c0e 100644 --- a/src/server/game/AI/CreatureAI.h +++ b/src/server/game/AI/CreatureAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CreatureAIFactory.h b/src/server/game/AI/CreatureAIFactory.h index 61e3cd2b240..4473d3e9cd5 100644 --- a/src/server/game/AI/CreatureAIFactory.h +++ b/src/server/game/AI/CreatureAIFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CreatureAIImpl.h b/src/server/game/AI/CreatureAIImpl.h index 838171a544e..a2c5c5db057 100644 --- a/src/server/game/AI/CreatureAIImpl.h +++ b/src/server/game/AI/CreatureAIImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AI/CreatureAIRegistry.cpp b/src/server/game/AI/CreatureAIRegistry.cpp index 512ad124bc0..933c20c9ee6 100644 --- a/src/server/game/AI/CreatureAIRegistry.cpp +++ b/src/server/game/AI/CreatureAIRegistry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CreatureAIRegistry.h b/src/server/game/AI/CreatureAIRegistry.h index f8106cd0e1a..461d4d7bcb3 100644 --- a/src/server/game/AI/CreatureAIRegistry.h +++ b/src/server/game/AI/CreatureAIRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CreatureAISelector.cpp b/src/server/game/AI/CreatureAISelector.cpp index 8478cebbd95..ac61d455b4c 100644 --- a/src/server/game/AI/CreatureAISelector.cpp +++ b/src/server/game/AI/CreatureAISelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/CreatureAISelector.h b/src/server/game/AI/CreatureAISelector.h index 6864c3ba405..0a2cec77daa 100644 --- a/src/server/game/AI/CreatureAISelector.h +++ b/src/server/game/AI/CreatureAISelector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp b/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp index 4fcacb7c0d2..1a0f0b649c2 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp +++ b/src/server/game/AI/ScriptedAI/ScriptedCreature.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/ScriptedAI/ScriptedCreature.h b/src/server/game/AI/ScriptedAI/ScriptedCreature.h index 6d8e5d67ebb..351877fed6f 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedCreature.h +++ b/src/server/game/AI/ScriptedAI/ScriptedCreature.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp index 1a733eefab0..bc26fc42df8 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp +++ b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.h b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.h index 22280ee3575..75ff1b8dfc9 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedEscortAI.h +++ b/src/server/game/AI/ScriptedAI/ScriptedEscortAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.cpp b/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.cpp index 7958c330272..720847b2f20 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.cpp +++ b/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.h b/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.h index 88b3ccd6a64..4afe7622179 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.h +++ b/src/server/game/AI/ScriptedAI/ScriptedFollowerAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/ScriptedAI/ScriptedGossip.h b/src/server/game/AI/ScriptedAI/ScriptedGossip.h index 5bdd4caa3c8..44e5ad50ca5 100644 --- a/src/server/game/AI/ScriptedAI/ScriptedGossip.h +++ b/src/server/game/AI/ScriptedAI/ScriptedGossip.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AI/SmartScripts/SmartAI.cpp b/src/server/game/AI/SmartScripts/SmartAI.cpp index 92f7ce21f04..98f6a540889 100644 --- a/src/server/game/AI/SmartScripts/SmartAI.cpp +++ b/src/server/game/AI/SmartScripts/SmartAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AI/SmartScripts/SmartAI.h b/src/server/game/AI/SmartScripts/SmartAI.h index a5abf2a33e3..8efde6b180a 100644 --- a/src/server/game/AI/SmartScripts/SmartAI.h +++ b/src/server/game/AI/SmartScripts/SmartAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AI/SmartScripts/SmartScript.cpp b/src/server/game/AI/SmartScripts/SmartScript.cpp index 2e86a78148a..d9e9d5fbea5 100644 --- a/src/server/game/AI/SmartScripts/SmartScript.cpp +++ b/src/server/game/AI/SmartScripts/SmartScript.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AI/SmartScripts/SmartScript.h b/src/server/game/AI/SmartScripts/SmartScript.h index c98680c4ede..3809e243040 100644 --- a/src/server/game/AI/SmartScripts/SmartScript.h +++ b/src/server/game/AI/SmartScripts/SmartScript.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp b/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp index d1a590e24b1..82a5f7e47b8 100644 --- a/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp +++ b/src/server/game/AI/SmartScripts/SmartScriptMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AI/SmartScripts/SmartScriptMgr.h b/src/server/game/AI/SmartScripts/SmartScriptMgr.h index 84bf867d021..db91646e629 100644 --- a/src/server/game/AI/SmartScripts/SmartScriptMgr.h +++ b/src/server/game/AI/SmartScripts/SmartScriptMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Accounts/AccountMgr.cpp b/src/server/game/Accounts/AccountMgr.cpp index 8b2365079c7..9897a747ab0 100644 --- a/src/server/game/Accounts/AccountMgr.cpp +++ b/src/server/game/Accounts/AccountMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Accounts/AccountMgr.h b/src/server/game/Accounts/AccountMgr.h index a3956ad8633..42b98809622 100644 --- a/src/server/game/Accounts/AccountMgr.h +++ b/src/server/game/Accounts/AccountMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Accounts/BattlenetAccountMgr.cpp b/src/server/game/Accounts/BattlenetAccountMgr.cpp index 8144f28c3e5..88ebb000b5b 100644 --- a/src/server/game/Accounts/BattlenetAccountMgr.cpp +++ b/src/server/game/Accounts/BattlenetAccountMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Accounts/BattlenetAccountMgr.h b/src/server/game/Accounts/BattlenetAccountMgr.h index 07e9f684874..120bee18e13 100644 --- a/src/server/game/Accounts/BattlenetAccountMgr.h +++ b/src/server/game/Accounts/BattlenetAccountMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Accounts/RBAC.cpp b/src/server/game/Accounts/RBAC.cpp index 058c6799d94..54ef1a34766 100644 --- a/src/server/game/Accounts/RBAC.cpp +++ b/src/server/game/Accounts/RBAC.cpp @@ -1,5 +1,5 @@ /*
- * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/>
+ * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
diff --git a/src/server/game/Accounts/RBAC.h b/src/server/game/Accounts/RBAC.h index 54dcb73fb35..d11eaa3bc0a 100644 --- a/src/server/game/Accounts/RBAC.h +++ b/src/server/game/Accounts/RBAC.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Achievements/AchievementMgr.cpp b/src/server/game/Achievements/AchievementMgr.cpp index c392f9d445a..defac64d78c 100644 --- a/src/server/game/Achievements/AchievementMgr.cpp +++ b/src/server/game/Achievements/AchievementMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -572,7 +572,6 @@ void AchievementMgr<Player>::SaveToDB(SQLTransaction& trans) } } - /* if (!m_criteriaProgress.empty()) { for (CriteriaProgressMap::iterator iter = m_criteriaProgress.begin(); iter != m_criteriaProgress.end(); ++iter) @@ -582,14 +581,14 @@ void AchievementMgr<Player>::SaveToDB(SQLTransaction& trans) PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_CHAR_ACHIEVEMENT_PROGRESS_BY_CRITERIA); stmt->setUInt64(0, GetOwner()->GetGUID().GetCounter()); - stmt->setUInt16(1, iter->first); + stmt->setUInt32(1, iter->first); trans->Append(stmt); if (iter->second.counter) { stmt = CharacterDatabase.GetPreparedStatement(CHAR_INS_CHAR_ACHIEVEMENT_PROGRESS); stmt->setUInt64(0, GetOwner()->GetGUID().GetCounter()); - stmt->setUInt16(1, iter->first); + stmt->setUInt32(1, iter->first); stmt->setUInt32(2, iter->second.counter); stmt->setUInt32(3, uint32(iter->second.date)); trans->Append(stmt); @@ -598,7 +597,6 @@ void AchievementMgr<Player>::SaveToDB(SQLTransaction& trans) iter->second.changed = false; } } - */ } template<> @@ -629,7 +627,6 @@ void AchievementMgr<Guild>::SaveToDB(SQLTransaction& trans) guidstr.str(""); } - /* for (CriteriaProgressMap::const_iterator itr = m_criteriaProgress.begin(); itr != m_criteriaProgress.end(); ++itr) { if (!itr->second.changed) @@ -637,18 +634,17 @@ void AchievementMgr<Guild>::SaveToDB(SQLTransaction& trans) stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_GUILD_ACHIEVEMENT_CRITERIA); stmt->setUInt64(0, GetOwner()->GetId()); - stmt->setUInt16(1, itr->first); + stmt->setUInt32(1, itr->first); trans->Append(stmt); stmt = CharacterDatabase.GetPreparedStatement(CHAR_INS_GUILD_ACHIEVEMENT_CRITERIA); stmt->setUInt64(0, GetOwner()->GetId()); - stmt->setUInt16(1, itr->first); + stmt->setUInt32(1, itr->first); stmt->setUInt64(2, itr->second.counter); stmt->setUInt32(3, itr->second.date); stmt->setUInt64(4, itr->second.PlayerGUID.GetCounter()); trans->Append(stmt); } - */ } template<class T> void AchievementMgr<T>::LoadFromDB(PreparedQueryResult achievementResult, PreparedQueryResult criteriaResult) @@ -686,14 +682,13 @@ void AchievementMgr<Player>::LoadFromDB(PreparedQueryResult achievementResult, P while (achievementResult->NextRow()); } - /* if (criteriaResult) { time_t now = time(NULL); do { Field* fields = criteriaResult->Fetch(); - uint32 id = fields[0].GetUInt16(); + uint32 id = fields[0].GetUInt32(); uint64 counter = fields[1].GetUInt64(); time_t date = time_t(fields[2].GetUInt32()); @@ -704,7 +699,7 @@ void AchievementMgr<Player>::LoadFromDB(PreparedQueryResult achievementResult, P TC_LOG_ERROR("achievement", "Non-existing achievement criteria %u data removed from table `character_achievement_progress`.", id); PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_INVALID_ACHIEV_PROGRESS_CRITERIA); - stmt->setUInt16(0, uint16(id)); + stmt->setUInt32(0, uint16(id)); CharacterDatabase.Execute(stmt); continue; @@ -720,7 +715,6 @@ void AchievementMgr<Player>::LoadFromDB(PreparedQueryResult achievementResult, P } while (criteriaResult->NextRow()); } - */ } template<> @@ -751,14 +745,13 @@ void AchievementMgr<Guild>::LoadFromDB(PreparedQueryResult achievementResult, Pr while (achievementResult->NextRow()); } - /* if (criteriaResult) { time_t now = time(NULL); do { Field* fields = criteriaResult->Fetch(); - uint32 id = fields[0].GetUInt16(); + uint32 id = fields[0].GetUInt32(); uint32 counter = fields[1].GetUInt32(); time_t date = time_t(fields[2].GetUInt32()); ObjectGuid::LowType guid = fields[3].GetUInt64(); @@ -770,7 +763,7 @@ void AchievementMgr<Guild>::LoadFromDB(PreparedQueryResult achievementResult, Pr TC_LOG_ERROR("achievement", "Non-existing achievement criteria %u data removed from table `guild_achievement_progress`.", id); PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_INVALID_ACHIEV_PROGRESS_CRITERIA_GUILD); - stmt->setUInt16(0, uint16(id)); + stmt->setUInt32(0, uint16(id)); CharacterDatabase.Execute(stmt); continue; } @@ -785,7 +778,6 @@ void AchievementMgr<Guild>::LoadFromDB(PreparedQueryResult achievementResult, Pr progress.changed = false; } while (criteriaResult->NextRow()); } - */ } template<class T> @@ -1324,6 +1316,7 @@ void AchievementMgr<T>::UpdateAchievementCriteria(AchievementCriteriaTypes type, SetCriteriaProgress(achievementCriteria, referencePlayer->GetReputationMgr().GetExaltedFactionCount(), referencePlayer); break; case ACHIEVEMENT_CRITERIA_TYPE_LEARN_SKILLLINE_SPELLS: + case ACHIEVEMENT_CRITERIA_TYPE_LEARN_SKILL_LINE: { uint32 spellCount = 0; for (PlayerSpellMap::const_iterator spellIter = referencePlayer->GetSpellMap().begin(); @@ -1349,21 +1342,6 @@ void AchievementMgr<T>::UpdateAchievementCriteria(AchievementCriteriaTypes type, case ACHIEVEMENT_CRITERIA_TYPE_KNOWN_FACTIONS: SetCriteriaProgress(achievementCriteria, referencePlayer->GetReputationMgr().GetVisibleFactionCount(), referencePlayer); break; - case ACHIEVEMENT_CRITERIA_TYPE_LEARN_SKILL_LINE: - { - uint32 spellCount = 0; - for (PlayerSpellMap::const_iterator spellIter = referencePlayer->GetSpellMap().begin(); - spellIter != referencePlayer->GetSpellMap().end(); - ++spellIter) - { - SkillLineAbilityMapBounds bounds = sSpellMgr->GetSkillLineAbilityMapBounds(spellIter->first); - for (SkillLineAbilityMap::const_iterator skillIter = bounds.first; skillIter != bounds.second; ++skillIter) - if (skillIter->second->SkillLine == achievementCriteria->Entry->Asset.SkillID) - spellCount++; - } - SetCriteriaProgress(achievementCriteria, spellCount, referencePlayer); - break; - } case ACHIEVEMENT_CRITERIA_TYPE_EARN_HONORABLE_KILL: SetCriteriaProgress(achievementCriteria, referencePlayer->GetUInt32Value(PLAYER_FIELD_LIFETIME_HONORABLE_KILLS), referencePlayer); break; @@ -2603,6 +2581,7 @@ bool AchievementMgr<T>::RequirementsSatisfied(AchievementCriteria const* achieve return false; break; case ACHIEVEMENT_CRITERIA_TYPE_LEARN_SKILLLINE_SPELLS: + case ACHIEVEMENT_CRITERIA_TYPE_LEARN_SKILL_LINE: if (miscValue1 && miscValue1 != achievementCriteria->Entry->Asset.SkillID) return false; break; @@ -2616,10 +2595,6 @@ bool AchievementMgr<T>::RequirementsSatisfied(AchievementCriteria const* achieve return false; break; } - case ACHIEVEMENT_CRITERIA_TYPE_LEARN_SKILL_LINE: - if (miscValue1 && miscValue1 != achievementCriteria->Entry->Asset.SkillID) - return false; - break; case ACHIEVEMENT_CRITERIA_TYPE_HK_CLASS: if (!miscValue1 || miscValue1 != achievementCriteria->Entry->Asset.ClassID) return false; diff --git a/src/server/game/Achievements/AchievementMgr.h b/src/server/game/Achievements/AchievementMgr.h index 05b30c73e76..a493ed9cdfa 100644 --- a/src/server/game/Achievements/AchievementMgr.h +++ b/src/server/game/Achievements/AchievementMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Addons/AddonMgr.cpp b/src/server/game/Addons/AddonMgr.cpp index 28e28c3f2fe..20ce369bd57 100644 --- a/src/server/game/Addons/AddonMgr.cpp +++ b/src/server/game/Addons/AddonMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Addons/AddonMgr.h b/src/server/game/Addons/AddonMgr.h index d086b394b10..9496e776d98 100644 --- a/src/server/game/Addons/AddonMgr.h +++ b/src/server/game/Addons/AddonMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AuctionHouse/AuctionHouseMgr.cpp b/src/server/game/AuctionHouse/AuctionHouseMgr.cpp index 7ff032ca080..97becf755ec 100644 --- a/src/server/game/AuctionHouse/AuctionHouseMgr.cpp +++ b/src/server/game/AuctionHouse/AuctionHouseMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AuctionHouse/AuctionHouseMgr.h b/src/server/game/AuctionHouse/AuctionHouseMgr.h index 9f90856ce88..ecfd0587f01 100644 --- a/src/server/game/AuctionHouse/AuctionHouseMgr.h +++ b/src/server/game/AuctionHouse/AuctionHouseMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp b/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp index 6745f3e317c..da2445f5d88 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp +++ b/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBot.h b/src/server/game/AuctionHouseBot/AuctionHouseBot.h index 04ca96dfdd9..964262579e6 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBot.h +++ b/src/server/game/AuctionHouseBot/AuctionHouseBot.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.cpp b/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.cpp index 85f8b180705..526da276cb0 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.cpp +++ b/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.h b/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.h index df930367878..bd8d6e46f0e 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.h +++ b/src/server/game/AuctionHouseBot/AuctionHouseBotBuyer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp b/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp index dc23c0157eb..83c79acaf56 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp +++ b/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.h b/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.h index 349474311b8..c03149fe53d 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.h +++ b/src/server/game/AuctionHouseBot/AuctionHouseBotSeller.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlefield/Battlefield.cpp b/src/server/game/Battlefield/Battlefield.cpp index 73b9822af0d..54c43673411 100644 --- a/src/server/game/Battlefield/Battlefield.cpp +++ b/src/server/game/Battlefield/Battlefield.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlefield/Battlefield.h b/src/server/game/Battlefield/Battlefield.h index 03557779ab1..2ea1f100ee2 100644 --- a/src/server/game/Battlefield/Battlefield.h +++ b/src/server/game/Battlefield/Battlefield.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlefield/BattlefieldMgr.cpp b/src/server/game/Battlefield/BattlefieldMgr.cpp index 3fa38306701..93fdb75c8bb 100644 --- a/src/server/game/Battlefield/BattlefieldMgr.cpp +++ b/src/server/game/Battlefield/BattlefieldMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlefield/BattlefieldMgr.h b/src/server/game/Battlefield/BattlefieldMgr.h index 8150f7e1ef7..456d18d6c72 100644 --- a/src/server/game/Battlefield/BattlefieldMgr.h +++ b/src/server/game/Battlefield/BattlefieldMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlefield/Zones/BattlefieldWG.cpp b/src/server/game/Battlefield/Zones/BattlefieldWG.cpp index 79a68b4dab0..298d692464d 100644 --- a/src/server/game/Battlefield/Zones/BattlefieldWG.cpp +++ b/src/server/game/Battlefield/Zones/BattlefieldWG.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlefield/Zones/BattlefieldWG.h b/src/server/game/Battlefield/Zones/BattlefieldWG.h index 848b29daec7..4661b5cb997 100644 --- a/src/server/game/Battlefield/Zones/BattlefieldWG.h +++ b/src/server/game/Battlefield/Zones/BattlefieldWG.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Arena.cpp b/src/server/game/Battlegrounds/Arena.cpp index 69b2ed75bc7..d2543b6ce8a 100644 --- a/src/server/game/Battlegrounds/Arena.cpp +++ b/src/server/game/Battlegrounds/Arena.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Arena.h b/src/server/game/Battlegrounds/Arena.h index 4f622618bd4..af43da8162f 100644 --- a/src/server/game/Battlegrounds/Arena.h +++ b/src/server/game/Battlegrounds/Arena.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/ArenaScore.h b/src/server/game/Battlegrounds/ArenaScore.h index b6b79405ab8..a5f032777ac 100644 --- a/src/server/game/Battlegrounds/ArenaScore.h +++ b/src/server/game/Battlegrounds/ArenaScore.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/ArenaTeam.cpp b/src/server/game/Battlegrounds/ArenaTeam.cpp index dcd0cce55aa..380ce22c1bb 100644 --- a/src/server/game/Battlegrounds/ArenaTeam.cpp +++ b/src/server/game/Battlegrounds/ArenaTeam.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/ArenaTeam.h b/src/server/game/Battlegrounds/ArenaTeam.h index 038fad50221..65a6b38088d 100644 --- a/src/server/game/Battlegrounds/ArenaTeam.h +++ b/src/server/game/Battlegrounds/ArenaTeam.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/ArenaTeamMgr.cpp b/src/server/game/Battlegrounds/ArenaTeamMgr.cpp index be7576bcc8a..c97eb5383bd 100644 --- a/src/server/game/Battlegrounds/ArenaTeamMgr.cpp +++ b/src/server/game/Battlegrounds/ArenaTeamMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/ArenaTeamMgr.h b/src/server/game/Battlegrounds/ArenaTeamMgr.h index fb162d63ea9..46c048c2ef0 100644 --- a/src/server/game/Battlegrounds/ArenaTeamMgr.h +++ b/src/server/game/Battlegrounds/ArenaTeamMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Battleground.cpp b/src/server/game/Battlegrounds/Battleground.cpp index 0756870f723..4715d0f5012 100644 --- a/src/server/game/Battlegrounds/Battleground.cpp +++ b/src/server/game/Battlegrounds/Battleground.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Battleground.h b/src/server/game/Battlegrounds/Battleground.h index 05873f5f2fc..de73113d73e 100644 --- a/src/server/game/Battlegrounds/Battleground.h +++ b/src/server/game/Battlegrounds/Battleground.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/BattlegroundMgr.cpp b/src/server/game/Battlegrounds/BattlegroundMgr.cpp index ee5b14a7f1c..9a6b1c3412e 100644 --- a/src/server/game/Battlegrounds/BattlegroundMgr.cpp +++ b/src/server/game/Battlegrounds/BattlegroundMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -162,7 +162,7 @@ void BattlegroundMgr::BuildBattlegroundStatusPacket(WorldPacket* data, Battlegro { case STATUS_NONE: { - data->Initialize(SMSG_BATTLEFIELD_STATUS); + data->Initialize(SMSG_BATTLEFIELD_STATUS_NONE); data->WriteBit(playerGuid[0]); data->WriteBit(playerGuid[4]); diff --git a/src/server/game/Battlegrounds/BattlegroundMgr.h b/src/server/game/Battlegrounds/BattlegroundMgr.h index c98502945f7..6b19208778a 100644 --- a/src/server/game/Battlegrounds/BattlegroundMgr.h +++ b/src/server/game/Battlegrounds/BattlegroundMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/BattlegroundQueue.cpp b/src/server/game/Battlegrounds/BattlegroundQueue.cpp index 65ae7de2d8c..3d5770b7547 100644 --- a/src/server/game/Battlegrounds/BattlegroundQueue.cpp +++ b/src/server/game/Battlegrounds/BattlegroundQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/BattlegroundQueue.h b/src/server/game/Battlegrounds/BattlegroundQueue.h index 810e78658c3..9a65019a390 100644 --- a/src/server/game/Battlegrounds/BattlegroundQueue.h +++ b/src/server/game/Battlegrounds/BattlegroundQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/BattlegroundScore.h b/src/server/game/Battlegrounds/BattlegroundScore.h index 8d197869ed6..309c8bff17f 100644 --- a/src/server/game/Battlegrounds/BattlegroundScore.h +++ b/src/server/game/Battlegrounds/BattlegroundScore.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundAB.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundAB.cpp index b57ff5480c8..ee8c11ad1d2 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundAB.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundAB.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundAB.h b/src/server/game/Battlegrounds/Zones/BattlegroundAB.h index dab5674ff0a..19794f6da35 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundAB.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundAB.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp index fdb2f04b7da..691ff838386 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundAV.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundAV.h b/src/server/game/Battlegrounds/Zones/BattlegroundAV.h index 4df0bcb38b7..c8cb2a0a994 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundAV.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundAV.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundBE.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundBE.cpp index 916531e3947..2bf2f1d5e9e 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundBE.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundBE.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundBE.h b/src/server/game/Battlegrounds/Zones/BattlegroundBE.h index 6aa3e56ca13..6dd10f11e1b 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundBE.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundBE.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundBFG.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundBFG.cpp index b7e97b406e3..0d143966190 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundBFG.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundBFG.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundBFG.h b/src/server/game/Battlegrounds/Zones/BattlegroundBFG.h index 91e416c795a..993ffb37190 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundBFG.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundBFG.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundDS.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundDS.cpp index 864faa30916..9e62a8c4616 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundDS.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundDS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundDS.h b/src/server/game/Battlegrounds/Zones/BattlegroundDS.h index 7b91996ed0e..f4c88ec00e5 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundDS.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundDS.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundEY.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundEY.cpp index 82647c4b6b3..f9c37bd00e2 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundEY.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundEY.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundEY.h b/src/server/game/Battlegrounds/Zones/BattlegroundEY.h index b3e167c4b23..d2a2bd1e36a 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundEY.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundEY.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp index ace47c53933..66d106fae30 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundIC.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundIC.h b/src/server/game/Battlegrounds/Zones/BattlegroundIC.h index 52fda127ecf..0d726e9f585 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundIC.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundIC.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundNA.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundNA.cpp index 46128c44d69..a89652a5d06 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundNA.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundNA.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundNA.h b/src/server/game/Battlegrounds/Zones/BattlegroundNA.h index 17df258a0b8..4b5551a7d15 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundNA.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundNA.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundRL.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundRL.cpp index f474946e069..0c30b557459 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundRL.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundRL.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundRL.h b/src/server/game/Battlegrounds/Zones/BattlegroundRL.h index e96129b05f0..1d15991902c 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundRL.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundRL.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundRV.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundRV.cpp index 284b05a8960..316812243dd 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundRV.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundRV.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundRV.h b/src/server/game/Battlegrounds/Zones/BattlegroundRV.h index eda4bf7fa00..67635230633 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundRV.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundRV.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp index 3860ca86981..22c1e77fe7b 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundSA.h b/src/server/game/Battlegrounds/Zones/BattlegroundSA.h index dad44d07545..63ad682d4f2 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundSA.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundSA.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundTP.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundTP.cpp index 6d4c6ce0bac..e8f65c75aac 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundTP.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundTP.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundTP.h b/src/server/game/Battlegrounds/Zones/BattlegroundTP.h index d8aaaafbd41..a7e35ef2438 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundTP.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundTP.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundWS.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundWS.cpp index 07fdd54fb0f..c9222a474bb 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundWS.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundWS.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundWS.h b/src/server/game/Battlegrounds/Zones/BattlegroundWS.h index 51dd77d36c3..6274d1924b6 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundWS.h +++ b/src/server/game/Battlegrounds/Zones/BattlegroundWS.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/CMakeLists.txt b/src/server/game/CMakeLists.txt index d18fce9b829..2773178da08 100644 --- a/src/server/game/CMakeLists.txt +++ b/src/server/game/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/game/Calendar/CalendarMgr.cpp b/src/server/game/Calendar/CalendarMgr.cpp index fff949e6bbd..80a726030b6 100644 --- a/src/server/game/Calendar/CalendarMgr.cpp +++ b/src/server/game/Calendar/CalendarMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Calendar/CalendarMgr.h b/src/server/game/Calendar/CalendarMgr.h index c188b805bfc..6785b36569f 100644 --- a/src/server/game/Calendar/CalendarMgr.h +++ b/src/server/game/Calendar/CalendarMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Chat/Channels/Channel.cpp b/src/server/game/Chat/Channels/Channel.cpp index 05c8914a9f1..04b6eb1b5b1 100644 --- a/src/server/game/Chat/Channels/Channel.cpp +++ b/src/server/game/Chat/Channels/Channel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -17,13 +17,14 @@ */ #include "Channel.h" +#include "AccountMgr.h" +#include "ChannelPackets.h" #include "Chat.h" +#include "DatabaseEnv.h" #include "ObjectMgr.h" +#include "Player.h" #include "SocialMgr.h" #include "World.h" -#include "DatabaseEnv.h" -#include "AccountMgr.h" -#include "Player.h" Channel::Channel(std::string const& name, uint32 channelId, uint32 team): _announce(true), @@ -726,6 +727,34 @@ void Channel::SetOwner(ObjectGuid const& guid, bool exclaim) } } +void Channel::SilenceAll(Player const* /*player*/, std::string const& /*name*/) +{ +} + +void Channel::SilenceVoice(Player const* /*player*/, std::string const& /*name*/) +{ +} + +void Channel::UnsilenceAll(Player const* /*player*/, std::string const& /*name*/) +{ +} + +void Channel::UnsilenceVoice(Player const* /*player*/, std::string const& /*name*/) +{ +} + +void Channel::DeclineInvite(Player const* /*player*/) +{ +} + +void Channel::Voice(Player const* /*player*/) +{ +} + +void Channel::DeVoice(Player const* /*player*/) +{ +} + void Channel::SendToAll(WorldPacket const* data, ObjectGuid const& guid) { for (PlayerContainer::value_type const& i : _playersStore) @@ -748,16 +777,6 @@ void Channel::SendToOne(WorldPacket const* data, ObjectGuid const& who) player->SendDirectMessage(data); } -void Channel::Voice(ObjectGuid const& /*guid1*/, ObjectGuid const& /*guid2*/) -{ - -} - -void Channel::DeVoice(ObjectGuid const& /*guid1*/, ObjectGuid const& /*guid2*/) -{ - -} - void Channel::MakeNotifyPacket(WorldPackets::Channel::ChannelNotify& data, uint8 notifyType) { data.Type = notifyType; @@ -998,3 +1017,29 @@ void Channel::LeaveNotify(Player const* player) else SendToAll(&data); } + +void Channel::SetModerator(ObjectGuid const& guid, bool set) +{ + if (_playersStore[guid].IsModerator() != set) + { + uint8 oldFlag = _playersStore[guid].GetFlags(); + _playersStore[guid].SetModerator(set); + + WorldPackets::Channel::ChannelNotify data; + MakeModeChange(data, guid, oldFlag, _playersStore[guid].GetFlags()); + SendToAll(data.Write()); + } +} + +void Channel::SetMute(ObjectGuid const& guid, bool set) +{ + if (_playersStore[guid].IsMuted() != set) + { + uint8 oldFlag = _playersStore[guid].GetFlags(); + _playersStore[guid].SetMuted(set); + + WorldPackets::Channel::ChannelNotify data; + MakeModeChange(data, guid, oldFlag, _playersStore[guid].GetFlags()); + SendToAll(data.Write()); + } +} diff --git a/src/server/game/Chat/Channels/Channel.h b/src/server/game/Chat/Channels/Channel.h index 4ee83b8fbb2..c1b39b0938a 100644 --- a/src/server/game/Chat/Channels/Channel.h +++ b/src/server/game/Chat/Channels/Channel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -21,12 +21,16 @@ #include "Common.h" -#include "WorldSession.h" - -#include "Packets/ChannelPackets.h" - class Player; +namespace WorldPackets +{ + namespace Channel + { + class ChannelNotify; + } +} + enum ChatNotify { CHAT_JOINED_NOTICE = 0x00, //+ "%s joined channel."; @@ -187,12 +191,17 @@ class Channel void UnsetModerator(Player const* player, std::string const& newname) { SetMode(player, newname, true, false); } void SetMute(Player const* player, std::string const& newname) { SetMode(player, newname, false, true); } void UnsetMute(Player const* player, std::string const& newname) { SetMode(player, newname, false, false); } + void SilenceAll(Player const* player, std::string const& name); + void SilenceVoice(Player const* player, std::string const& name); + void UnsilenceAll(Player const* player, std::string const& name); + void UnsilenceVoice(Player const* player, std::string const& name); void List(Player const* player); void Announce(Player const* player); void Say(ObjectGuid const& guid, std::string const& what, uint32 lang); + void DeclineInvite(Player const* player); void Invite(Player const* player, std::string const& newp); - void Voice(ObjectGuid const& guid1, ObjectGuid const& guid2); - void DeVoice(ObjectGuid const& guid1, ObjectGuid const& guid2); + void Voice(Player const* player); + void DeVoice(Player const* player); void JoinNotify(Player const* player); void LeaveNotify(Player const* player); void SetOwnership(bool ownership) { _ownership = ownership; }; @@ -253,31 +262,8 @@ class Channel return itr != _playersStore.end() ? itr->second.GetFlags() : 0; } - void SetModerator(ObjectGuid const& guid, bool set) - { - if (_playersStore[guid].IsModerator() != set) - { - uint8 oldFlag = _playersStore[guid].GetFlags(); - _playersStore[guid].SetModerator(set); - - WorldPackets::Channel::ChannelNotify data; - MakeModeChange(data, guid, oldFlag, _playersStore[guid].GetFlags()); - SendToAll(data.Write()); - } - } - - void SetMute(ObjectGuid const& guid, bool set) - { - if (_playersStore[guid].IsMuted() != set) - { - uint8 oldFlag = _playersStore[guid].GetFlags(); - _playersStore[guid].SetMuted(set); - - WorldPackets::Channel::ChannelNotify data; - MakeModeChange(data, guid, oldFlag, _playersStore[guid].GetFlags()); - SendToAll(data.Write()); - } - } + void SetModerator(ObjectGuid const& guid, bool set); + void SetMute(ObjectGuid const& guid, bool set); typedef std::map<ObjectGuid, PlayerInfo> PlayerContainer; typedef GuidSet BannedContainer; diff --git a/src/server/game/Chat/Channels/ChannelMgr.cpp b/src/server/game/Chat/Channels/ChannelMgr.cpp index 097eea5bb09..fdf0285dee6 100644 --- a/src/server/game/Chat/Channels/ChannelMgr.cpp +++ b/src/server/game/Chat/Channels/ChannelMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -17,6 +17,7 @@ */ #include "ChannelMgr.h" +#include "ChannelPackets.h" #include "Player.h" #include "World.h" #include "WorldSession.h" diff --git a/src/server/game/Chat/Channels/ChannelMgr.h b/src/server/game/Chat/Channels/ChannelMgr.h index 9a8fdb10767..175e7082727 100644 --- a/src/server/game/Chat/Channels/ChannelMgr.h +++ b/src/server/game/Chat/Channels/ChannelMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -21,6 +21,7 @@ #include "Common.h" #include "Channel.h" +#define MAX_CHANNEL_NAME_STR 0x31 #define MAX_CHANNEL_PASS_STR 31 class ChannelMgr diff --git a/src/server/game/Chat/Chat.cpp b/src/server/game/Chat/Chat.cpp index 8bc0ac2952b..d4559b0acef 100644 --- a/src/server/game/Chat/Chat.cpp +++ b/src/server/game/Chat/Chat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Chat/Chat.h b/src/server/game/Chat/Chat.h index 9f647183b62..93b22739ccb 100644 --- a/src/server/game/Chat/Chat.h +++ b/src/server/game/Chat/Chat.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Chat/ChatLink.cpp b/src/server/game/Chat/ChatLink.cpp index 64c4a888af0..d3844a6ce5d 100644 --- a/src/server/game/Chat/ChatLink.cpp +++ b/src/server/game/Chat/ChatLink.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Chat/ChatLink.h b/src/server/game/Chat/ChatLink.h index a13cd2a0964..a274237150f 100644 --- a/src/server/game/Chat/ChatLink.h +++ b/src/server/game/Chat/ChatLink.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Combat/HostileRefManager.cpp b/src/server/game/Combat/HostileRefManager.cpp index 738982d035c..40aa6ccfad1 100644 --- a/src/server/game/Combat/HostileRefManager.cpp +++ b/src/server/game/Combat/HostileRefManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Combat/HostileRefManager.h b/src/server/game/Combat/HostileRefManager.h index 495ef23d536..005e1bf67b3 100644 --- a/src/server/game/Combat/HostileRefManager.h +++ b/src/server/game/Combat/HostileRefManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Combat/ThreatManager.cpp b/src/server/game/Combat/ThreatManager.cpp index cd1e3d5be95..3207e95ff3e 100644 --- a/src/server/game/Combat/ThreatManager.cpp +++ b/src/server/game/Combat/ThreatManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Combat/ThreatManager.h b/src/server/game/Combat/ThreatManager.h index 62b3d10e554..1926651e418 100644 --- a/src/server/game/Combat/ThreatManager.h +++ b/src/server/game/Combat/ThreatManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Combat/UnitEvents.h b/src/server/game/Combat/UnitEvents.h index 3377097a12e..4127c8b55f6 100644 --- a/src/server/game/Combat/UnitEvents.h +++ b/src/server/game/Combat/UnitEvents.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Conditions/ConditionMgr.cpp b/src/server/game/Conditions/ConditionMgr.cpp index 654451af949..20d49855b8f 100644 --- a/src/server/game/Conditions/ConditionMgr.cpp +++ b/src/server/game/Conditions/ConditionMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Conditions/ConditionMgr.h b/src/server/game/Conditions/ConditionMgr.h index 98bc1775e0d..aa9ad9963d9 100644 --- a/src/server/game/Conditions/ConditionMgr.h +++ b/src/server/game/Conditions/ConditionMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Conditions/DisableMgr.cpp b/src/server/game/Conditions/DisableMgr.cpp index 8c962ab9d6c..a097605afb1 100644 --- a/src/server/game/Conditions/DisableMgr.cpp +++ b/src/server/game/Conditions/DisableMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Conditions/DisableMgr.h b/src/server/game/Conditions/DisableMgr.h index f6c65abe90a..ee223aeb059 100644 --- a/src/server/game/Conditions/DisableMgr.h +++ b/src/server/game/Conditions/DisableMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/DataStores/DBCEnums.h b/src/server/game/DataStores/DBCEnums.h index 8b93ba5222b..299dd5a30c8 100644 --- a/src/server/game/DataStores/DBCEnums.h +++ b/src/server/game/DataStores/DBCEnums.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/DataStores/DBCStores.cpp b/src/server/game/DataStores/DBCStores.cpp index ee2a604a49a..6c0cc92550c 100644 --- a/src/server/game/DataStores/DBCStores.cpp +++ b/src/server/game/DataStores/DBCStores.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/DataStores/DBCStores.h b/src/server/game/DataStores/DBCStores.h index 5db9df1d300..b73fbcf02f5 100644 --- a/src/server/game/DataStores/DBCStores.h +++ b/src/server/game/DataStores/DBCStores.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/DataStores/DBCStructure.h b/src/server/game/DataStores/DBCStructure.h index 6e0d5835f09..a87083882e2 100644 --- a/src/server/game/DataStores/DBCStructure.h +++ b/src/server/game/DataStores/DBCStructure.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/DataStores/DBCfmt.h b/src/server/game/DataStores/DBCfmt.h index bbba02b5ea5..540e1951b72 100644 --- a/src/server/game/DataStores/DBCfmt.h +++ b/src/server/game/DataStores/DBCfmt.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/DungeonFinding/LFG.cpp b/src/server/game/DungeonFinding/LFG.cpp index 0d4dbe9ea2f..ab06eff7148 100644 --- a/src/server/game/DungeonFinding/LFG.cpp +++ b/src/server/game/DungeonFinding/LFG.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFG.h b/src/server/game/DungeonFinding/LFG.h index a112eb9c98e..0ee9e7886d5 100644 --- a/src/server/game/DungeonFinding/LFG.h +++ b/src/server/game/DungeonFinding/LFG.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGGroupData.cpp b/src/server/game/DungeonFinding/LFGGroupData.cpp index 81859f4f946..2ab1e0b1e7e 100644 --- a/src/server/game/DungeonFinding/LFGGroupData.cpp +++ b/src/server/game/DungeonFinding/LFGGroupData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGGroupData.h b/src/server/game/DungeonFinding/LFGGroupData.h index 45df76aca2a..8d8f1dc0f3d 100644 --- a/src/server/game/DungeonFinding/LFGGroupData.h +++ b/src/server/game/DungeonFinding/LFGGroupData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGMgr.cpp b/src/server/game/DungeonFinding/LFGMgr.cpp index 9033a85b083..064c1e4f105 100644 --- a/src/server/game/DungeonFinding/LFGMgr.cpp +++ b/src/server/game/DungeonFinding/LFGMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGMgr.h b/src/server/game/DungeonFinding/LFGMgr.h index 4fbd60202c3..4701f29c231 100644 --- a/src/server/game/DungeonFinding/LFGMgr.h +++ b/src/server/game/DungeonFinding/LFGMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGPlayerData.cpp b/src/server/game/DungeonFinding/LFGPlayerData.cpp index 6be50be9b9c..d7f24e72320 100644 --- a/src/server/game/DungeonFinding/LFGPlayerData.cpp +++ b/src/server/game/DungeonFinding/LFGPlayerData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGPlayerData.h b/src/server/game/DungeonFinding/LFGPlayerData.h index 160fd221630..51437f50b26 100644 --- a/src/server/game/DungeonFinding/LFGPlayerData.h +++ b/src/server/game/DungeonFinding/LFGPlayerData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGQueue.cpp b/src/server/game/DungeonFinding/LFGQueue.cpp index 382fbb9da05..7a4ec0f7e1e 100644 --- a/src/server/game/DungeonFinding/LFGQueue.cpp +++ b/src/server/game/DungeonFinding/LFGQueue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGQueue.h b/src/server/game/DungeonFinding/LFGQueue.h index 333becd6e9d..5cd2923bc82 100644 --- a/src/server/game/DungeonFinding/LFGQueue.h +++ b/src/server/game/DungeonFinding/LFGQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGScripts.cpp b/src/server/game/DungeonFinding/LFGScripts.cpp index ad54281adc5..86edaa2349e 100644 --- a/src/server/game/DungeonFinding/LFGScripts.cpp +++ b/src/server/game/DungeonFinding/LFGScripts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/DungeonFinding/LFGScripts.h b/src/server/game/DungeonFinding/LFGScripts.h index b4a626d5607..8860ddf83cc 100644 --- a/src/server/game/DungeonFinding/LFGScripts.h +++ b/src/server/game/DungeonFinding/LFGScripts.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Entities/AreaTrigger/AreaTrigger.cpp b/src/server/game/Entities/AreaTrigger/AreaTrigger.cpp index b68b725ecd9..67c245ac04b 100644 --- a/src/server/game/Entities/AreaTrigger/AreaTrigger.cpp +++ b/src/server/game/Entities/AreaTrigger/AreaTrigger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Entities/AreaTrigger/AreaTrigger.h b/src/server/game/Entities/AreaTrigger/AreaTrigger.h index 0405910fe22..01317f121f7 100644 --- a/src/server/game/Entities/AreaTrigger/AreaTrigger.h +++ b/src/server/game/Entities/AreaTrigger/AreaTrigger.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Entities/Corpse/Corpse.cpp b/src/server/game/Entities/Corpse/Corpse.cpp index 15465ed11e4..99cbd75cb29 100644 --- a/src/server/game/Entities/Corpse/Corpse.cpp +++ b/src/server/game/Entities/Corpse/Corpse.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Corpse/Corpse.h b/src/server/game/Entities/Corpse/Corpse.h index c4296d76f60..29ae2a79d84 100644 --- a/src/server/game/Entities/Corpse/Corpse.h +++ b/src/server/game/Entities/Corpse/Corpse.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Creature/Creature.cpp b/src/server/game/Entities/Creature/Creature.cpp index 839cff33a47..f4567fbc1b7 100644 --- a/src/server/game/Entities/Creature/Creature.cpp +++ b/src/server/game/Entities/Creature/Creature.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Creature/Creature.h b/src/server/game/Entities/Creature/Creature.h index 02cd0149ebd..ff43f73d1c6 100644 --- a/src/server/game/Entities/Creature/Creature.h +++ b/src/server/game/Entities/Creature/Creature.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Creature/CreatureGroups.cpp b/src/server/game/Entities/Creature/CreatureGroups.cpp index 8a1ff117aac..086b307c1c2 100644 --- a/src/server/game/Entities/Creature/CreatureGroups.cpp +++ b/src/server/game/Entities/Creature/CreatureGroups.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Creature/CreatureGroups.h b/src/server/game/Entities/Creature/CreatureGroups.h index 052dff8b898..edbea16640e 100644 --- a/src/server/game/Entities/Creature/CreatureGroups.h +++ b/src/server/game/Entities/Creature/CreatureGroups.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Creature/GossipDef.cpp b/src/server/game/Entities/Creature/GossipDef.cpp index c7e1c833a5a..53302429f21 100644 --- a/src/server/game/Entities/Creature/GossipDef.cpp +++ b/src/server/game/Entities/Creature/GossipDef.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -229,7 +229,7 @@ void PlayerMenu::SendGossipMenu(uint32 titleTextId, ObjectGuid objectGUID) text.QuestType = item.QuestIcon; text.QuestLevel = quest->GetQuestLevel(); text.QuestFlags[0] = quest->GetFlags(); - text.QuestFlags[1] = 0; + text.QuestFlags[1] = quest->GetFlagsEx(); text.Repeatable = quest->IsRepeatable(); std::string title = quest->GetLogTitle(); @@ -504,12 +504,12 @@ void PlayerMenu::SendQuestQueryResponse(Quest const* quest) const packet.QuestID = quest->GetQuestId(); packet.Info.QuestID = quest->GetQuestId(); - packet.Info.QuestType = quest->GetQuestMethod(); + packet.Info.QuestType = quest->GetQuestType(); packet.Info.QuestLevel = quest->GetQuestLevel(); packet.Info.QuestPackageID = quest->GetQuestPackageID(); packet.Info.QuestMinLevel = quest->GetMinLevel(); packet.Info.QuestSortID = quest->GetZoneOrSort(); - packet.Info.QuestInfoID = quest->GetType(); // quest type + packet.Info.QuestInfoID = quest->GetQuestInfoID(); packet.Info.SuggestedGroupNum = quest->GetSuggestedPlayers(); packet.Info.RewardNextQuest = quest->GetNextQuestInChain(); packet.Info.RewardXPDifficulty = quest->GetXPDifficulty(); @@ -517,16 +517,16 @@ void PlayerMenu::SendQuestQueryResponse(Quest const* quest) const packet.Info.Float13 = quest->Float13; // Unk if (quest->HasFlag(QUEST_FLAGS_HIDDEN_REWARDS)) - packet.Info.RewardMoney = quest->GetRewMoney(); + packet.Info.RewardMoney = quest->RewardMoney; packet.Info.RewardMoneyDifficulty = quest->GetRewMoneyDifficulty(); packet.Info.RewardBonusMoney = quest->GetRewMoneyMaxLevel(); - packet.Info.RewardDisplaySpell = quest->GetRewDisplaySpell(); + packet.Info.RewardDisplaySpell = quest->GetRewDisplaySpell(); packet.Info.RewardSpell = quest->GetRewSpell(); packet.Info.RewardHonor = quest->GetRewHonor(); packet.Info.RewardKillHonor = quest->GetRewKillHonor(); - + packet.Info.StartItem = quest->GetSrcItemId(); packet.Info.Flags = quest->GetFlags(); packet.Info.FlagsEx = quest->GetFlagsEx(); @@ -574,11 +574,12 @@ void PlayerMenu::SendQuestQueryResponse(Quest const* quest) const packet.Info.AreaDescription = areaDescription; packet.Info.QuestCompletionLog = questCompletionLog; packet.Info.AllowableRaces = quest->GetAllowableRaces(); - - for (uint32 i = 0; i < quest->Objectives.size(); ++i) + + for (QuestObjective const& obj : quest->Objectives) { - packet.Info.Objectives.push_back(quest->Objectives[i]); - packet.Info.Objectives.back().Description = questObjectiveDescription[i]; + packet.Info.Objectives.push_back(obj); + // @todo update quets objective locales + //packet.Info.Objectives.back().Description = questObjectiveDescription[i]; } for (uint32 i = 0; i < QUEST_REWARD_CURRENCY_COUNT; ++i) @@ -688,65 +689,55 @@ void PlayerMenu::SendQuestGiverRequestItems(Quest const* quest, ObjectGuid npcGU if (sWorld->getBoolConfig(CONFIG_UI_QUESTLEVELS_IN_DIALOGS)) AddQuestLevelToTitle(questTitle, quest->GetQuestLevel()); - WorldPacket data(SMSG_QUESTGIVER_REQUEST_ITEMS, 50); // guess size - /*data << npcGUID; - data << uint32(quest->GetQuestId()); - data << questTitle; - data << requestItemsText; + WorldPackets::Quest::QuestGiverRequestItems packet; + packet.QuestGiverGUID = npcGUID; + + // Is there a better way? what about game objects? + if (Creature const* creature = sObjectAccessor->GetCreature(*_session->GetPlayer(), npcGUID)) + packet.QuestGiverCreatureID = creature->GetCreatureTemplate()->Entry; - data << uint32(0); // unknown + packet.QuestID = quest->GetQuestId(); if (canComplete) - data << quest->GetCompleteEmote(); + { + packet.CompEmoteDelay = quest->EmoteOnCompleteDelay; + packet.CompEmoteType = quest->EmoteOnComplete; + } else - data << quest->GetIncompleteEmote(); - - // Close Window after cancel - data << uint32(closeOnCancel); - - data << uint32(quest->GetFlags()); // 3.3.3 questFlags - data << uint32(quest->GetSuggestedPlayers()); // SuggestedGroupNum - - // Required Money - data << uint32(quest->GetRewOrReqMoney() < 0 ? -quest->GetRewOrReqMoney() : 0); - - data << uint32(quest->GetReqItemsCount()); - for (QuestObjective const& obj : quest->Objectives) { - if (obj.Type != QUEST_OBJECTIVE_ITEM) - continue; - - data << uint32(obj.ObjectID); - data << uint32(obj.Amount); - - if (ItemTemplate const* itemTemplate = sObjectMgr->GetItemTemplate(obj.ObjectID)) - data << uint32(itemTemplate->DisplayInfoID); - - else - data << uint32(0); + packet.CompEmoteDelay = quest->EmoteOnIncompleteDelay; + packet.CompEmoteType = quest->EmoteOnIncomplete; } - data << uint32(quest->GetReqCurrencyCount()); - for (int i = 0; i < QUEST_REQUIRED_CURRENCY_COUNT; ++i) - { - if (!quest->RequiredCurrencyId[i]) - continue; + packet.QuestFlags[0] = quest->GetFlags(); + packet.QuestFlags[1] = quest->GetFlagsEx(); + packet.SuggestPartyMembers = quest->GetSuggestedPlayers(); + packet.StatusFlags = 0xDF; // Unk, send common value - data << uint32(quest->RequiredCurrencyId[i]); - data << uint32(quest->RequiredCurrencyCount[i]); + packet.MoneyToGet = 0; + for (QuestObjective const& obj : quest->GetObjectives()) + { + switch (obj.Type) + { + case QUEST_OBJECTIVE_ITEM: + packet.Collect.push_back(WorldPackets::Quest::QuestObjectiveCollect(obj.ObjectID, obj.Amount)); + break; + case QUEST_OBJECTIVE_CURRENCY: + packet.Currency.push_back(WorldPackets::Quest::QuestCurrency(obj.ObjectID, obj.Amount)); + break; + case QUEST_OBJECTIVE_MONEY: + packet.MoneyToGet += obj.Amount; + break; + default: + break; + } } - if (!canComplete) // Experimental; there are 6 similar flags, if any of them - data << uint32(0x00); // of them is 0 player can't complete quest (still unknown meaning) - else - data << uint32(0x02); - - data << uint32(0x04); - data << uint32(0x08); - data << uint32(0x10); - data << uint32(0x40);*/ + packet.AutoLaunched = closeOnCancel; + packet.QuestTitle = questTitle; + packet.CompletionText = requestItemsText; - _session->SendPacket(&data); + _session->SendPacket(packet.Write()); TC_LOG_DEBUG("network", "WORLD: Sent SMSG_QUESTGIVER_REQUEST_ITEMS NPC=%s, questid=%u", npcGUID.ToString().c_str(), quest->GetQuestId()); } diff --git a/src/server/game/Entities/Creature/GossipDef.h b/src/server/game/Entities/Creature/GossipDef.h index 8c1d33bb721..b71fe307738 100644 --- a/src/server/game/Entities/Creature/GossipDef.h +++ b/src/server/game/Entities/Creature/GossipDef.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Creature/TemporarySummon.cpp b/src/server/game/Entities/Creature/TemporarySummon.cpp index 9b66afd95b2..eb7917907a9 100644 --- a/src/server/game/Entities/Creature/TemporarySummon.cpp +++ b/src/server/game/Entities/Creature/TemporarySummon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Creature/TemporarySummon.h b/src/server/game/Entities/Creature/TemporarySummon.h index 4780749899e..16fd7c11683 100644 --- a/src/server/game/Entities/Creature/TemporarySummon.h +++ b/src/server/game/Entities/Creature/TemporarySummon.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/DynamicObject/DynamicObject.cpp b/src/server/game/Entities/DynamicObject/DynamicObject.cpp index 4cd75299c0e..6792044cb34 100644 --- a/src/server/game/Entities/DynamicObject/DynamicObject.cpp +++ b/src/server/game/Entities/DynamicObject/DynamicObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/DynamicObject/DynamicObject.h b/src/server/game/Entities/DynamicObject/DynamicObject.h index 5430e626516..57ca6c8a60c 100644 --- a/src/server/game/Entities/DynamicObject/DynamicObject.h +++ b/src/server/game/Entities/DynamicObject/DynamicObject.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/GameObject/GameObject.cpp b/src/server/game/Entities/GameObject/GameObject.cpp index 42829e671cb..929f7b90689 100644 --- a/src/server/game/Entities/GameObject/GameObject.cpp +++ b/src/server/game/Entities/GameObject/GameObject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/GameObject/GameObject.h b/src/server/game/Entities/GameObject/GameObject.h index a168c3bb2ae..a242e04ea37 100644 --- a/src/server/game/Entities/GameObject/GameObject.h +++ b/src/server/game/Entities/GameObject/GameObject.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/Container/Bag.cpp b/src/server/game/Entities/Item/Container/Bag.cpp index 8956c8372be..73364b79ab8 100644 --- a/src/server/game/Entities/Item/Container/Bag.cpp +++ b/src/server/game/Entities/Item/Container/Bag.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/Container/Bag.h b/src/server/game/Entities/Item/Container/Bag.h index 1b66d711e6a..769624a73c4 100644 --- a/src/server/game/Entities/Item/Container/Bag.h +++ b/src/server/game/Entities/Item/Container/Bag.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/Item.cpp b/src/server/game/Entities/Item/Item.cpp index dc1b14f10f7..31af5e7b182 100644 --- a/src/server/game/Entities/Item/Item.cpp +++ b/src/server/game/Entities/Item/Item.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/Item.h b/src/server/game/Entities/Item/Item.h index 2f3ec4c1b1a..2188e582e0a 100644 --- a/src/server/game/Entities/Item/Item.h +++ b/src/server/game/Entities/Item/Item.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp b/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp index 8bfe6ce3ee3..1c0a64c17da 100644 --- a/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp +++ b/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/ItemEnchantmentMgr.h b/src/server/game/Entities/Item/ItemEnchantmentMgr.h index 73d3d97bb0b..7704e33863f 100644 --- a/src/server/game/Entities/Item/ItemEnchantmentMgr.h +++ b/src/server/game/Entities/Item/ItemEnchantmentMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/ItemTemplate.cpp b/src/server/game/Entities/Item/ItemTemplate.cpp index 8a55b2cc886..983a263f725 100644 --- a/src/server/game/Entities/Item/ItemTemplate.cpp +++ b/src/server/game/Entities/Item/ItemTemplate.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Item/ItemTemplate.h b/src/server/game/Entities/Item/ItemTemplate.h index ddf9dc65bec..d1d27a314d6 100644 --- a/src/server/game/Entities/Item/ItemTemplate.h +++ b/src/server/game/Entities/Item/ItemTemplate.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/Object.cpp b/src/server/game/Entities/Object/Object.cpp index eabb2f3f202..a36e3c34afd 100644 --- a/src/server/game/Entities/Object/Object.cpp +++ b/src/server/game/Entities/Object/Object.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -284,29 +284,15 @@ void Object::BuildOutOfRangeUpdateBlock(UpdateData* data) const data->AddOutOfRangeGUID(GetGUID()); } -void Object::DestroyForPlayer(Player* target, bool onDeath) const +void Object::DestroyForPlayer(Player* target) const { ASSERT(target); - if (isType(TYPEMASK_UNIT) || isType(TYPEMASK_PLAYER)) - { - if (Battleground* bg = target->GetBattleground()) - { - if (bg->isArena()) - { - WorldPacket data(SMSG_ARENA_UNIT_DESTROYED, 8); - data << GetGUID(); - target->GetSession()->SendPacket(&data); - } - } - } - - WorldPacket data(SMSG_DESTROY_OBJECT, 8 + 1); - data << GetGUID(); - //! If the following bool is true, the client will call "void CGUnit_C::OnDeath()" for this object. - //! OnDeath() does for eg trigger death animation and interrupts certain spells/missiles/auras/sounds... - data << uint8(onDeath ? 1 : 0); - target->GetSession()->SendPacket(&data); + UpdateData updateData(target->GetMapId()); + BuildOutOfRangeUpdateBlock(&updateData); + WorldPacket packet; + updateData.BuildPacket(&packet); + target->SendDirectMessage(&packet); } int32 Object::GetInt32Value(uint16 index) const diff --git a/src/server/game/Entities/Object/Object.h b/src/server/game/Entities/Object/Object.h index 18e5e29028c..a1d68c2b80b 100644 --- a/src/server/game/Entities/Object/Object.h +++ b/src/server/game/Entities/Object/Object.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -116,7 +116,7 @@ class Object void BuildValuesUpdateBlockForPlayer(UpdateData* data, Player* target) const; void BuildOutOfRangeUpdateBlock(UpdateData* data) const; - virtual void DestroyForPlayer(Player* target, bool onDeath = false) const; + virtual void DestroyForPlayer(Player* target) const; int32 GetInt32Value(uint16 index) const; uint32 GetUInt32Value(uint16 index) const; diff --git a/src/server/game/Entities/Object/ObjectDefines.h b/src/server/game/Entities/Object/ObjectDefines.h index 3b7709bc1f1..9bf7fb00352 100644 --- a/src/server/game/Entities/Object/ObjectDefines.h +++ b/src/server/game/Entities/Object/ObjectDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/ObjectGuid.cpp b/src/server/game/Entities/Object/ObjectGuid.cpp index 8fc88003faf..cf63f858b58 100644 --- a/src/server/game/Entities/Object/ObjectGuid.cpp +++ b/src/server/game/Entities/Object/ObjectGuid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/ObjectGuid.h b/src/server/game/Entities/Object/ObjectGuid.h index 378428e3ce5..a73d570d0e7 100644 --- a/src/server/game/Entities/Object/ObjectGuid.h +++ b/src/server/game/Entities/Object/ObjectGuid.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/ObjectPosSelector.cpp b/src/server/game/Entities/Object/ObjectPosSelector.cpp index da2049ac62f..300d1a0bf42 100644 --- a/src/server/game/Entities/Object/ObjectPosSelector.cpp +++ b/src/server/game/Entities/Object/ObjectPosSelector.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/ObjectPosSelector.h b/src/server/game/Entities/Object/ObjectPosSelector.h index 44b85dae3dd..06174399a03 100644 --- a/src/server/game/Entities/Object/ObjectPosSelector.h +++ b/src/server/game/Entities/Object/ObjectPosSelector.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/Updates/UpdateData.cpp b/src/server/game/Entities/Object/Updates/UpdateData.cpp index c6a9a0b1132..50a594c36e7 100644 --- a/src/server/game/Entities/Object/Updates/UpdateData.cpp +++ b/src/server/game/Entities/Object/Updates/UpdateData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/Updates/UpdateData.h b/src/server/game/Entities/Object/Updates/UpdateData.h index 0deb37d339e..3ef2816c4ec 100644 --- a/src/server/game/Entities/Object/Updates/UpdateData.h +++ b/src/server/game/Entities/Object/Updates/UpdateData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/Updates/UpdateFieldFlags.cpp b/src/server/game/Entities/Object/Updates/UpdateFieldFlags.cpp index c19096f31f2..ad2ddb785dc 100644 --- a/src/server/game/Entities/Object/Updates/UpdateFieldFlags.cpp +++ b/src/server/game/Entities/Object/Updates/UpdateFieldFlags.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Entities/Object/Updates/UpdateFieldFlags.h b/src/server/game/Entities/Object/Updates/UpdateFieldFlags.h index 829d2340ded..f8a8b5234c4 100644 --- a/src/server/game/Entities/Object/Updates/UpdateFieldFlags.h +++ b/src/server/game/Entities/Object/Updates/UpdateFieldFlags.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Entities/Object/Updates/UpdateFields.h b/src/server/game/Entities/Object/Updates/UpdateFields.h index aa406048714..811673a97fb 100644 --- a/src/server/game/Entities/Object/Updates/UpdateFields.h +++ b/src/server/game/Entities/Object/Updates/UpdateFields.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Object/Updates/UpdateMask.h b/src/server/game/Entities/Object/Updates/UpdateMask.h index dc2f82172b3..05dee1aa1ca 100644 --- a/src/server/game/Entities/Object/Updates/UpdateMask.h +++ b/src/server/game/Entities/Object/Updates/UpdateMask.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Pet/Pet.cpp b/src/server/game/Entities/Pet/Pet.cpp index bc08e8b1baf..a030953c0a0 100644 --- a/src/server/game/Entities/Pet/Pet.cpp +++ b/src/server/game/Entities/Pet/Pet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Pet/Pet.h b/src/server/game/Entities/Pet/Pet.h index 9d5340f5a73..853eb5c691c 100644 --- a/src/server/game/Entities/Pet/Pet.h +++ b/src/server/game/Entities/Pet/Pet.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Pet/PetDefines.h b/src/server/game/Entities/Pet/PetDefines.h index 67435c30577..5ad0e7a2fef 100644 --- a/src/server/game/Entities/Pet/PetDefines.h +++ b/src/server/game/Entities/Pet/PetDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Player/Player.cpp b/src/server/game/Entities/Player/Player.cpp index 2309de362b9..d635e9fe841 100644 --- a/src/server/game/Entities/Player/Player.cpp +++ b/src/server/game/Entities/Player/Player.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -4270,9 +4270,9 @@ void Player::BuildCreateUpdateBlockForPlayer(UpdateData* data, Player* target) c Unit::BuildCreateUpdateBlockForPlayer(data, target); } -void Player::DestroyForPlayer(Player* target, bool onDeath) const +void Player::DestroyForPlayer(Player* target) const { - Unit::DestroyForPlayer(target, onDeath); + Unit::DestroyForPlayer(target); for (uint8 i = 0; i < INVENTORY_SLOT_BAG_END; ++i) { @@ -13009,18 +13009,30 @@ void Player::RemoveItemFromBuyBackSlot(uint32 slot, bool del) } } -void Player::SendEquipError(InventoryResult msg, Item* pItem, Item* pItem2, uint32 itemid) +void Player::SendEquipError(InventoryResult msg, Item* item1 /*= nullptr*/, Item* item2 /*= nullptr*/, uint32 itemId /*= 0*/) { TC_LOG_DEBUG("network", "WORLD: Sent SMSG_INVENTORY_CHANGE_FAILURE (%u)", msg); - WorldPackets::Item::EquipError error; - error.msg = msg; - error.itemGUID1 = pItem ? pItem->GetGUID() : ObjectGuid::Empty; - error.itemGUID2 = pItem2 ? pItem2->GetGUID() : ObjectGuid::Empty; + WorldPackets::Item::InventoryChangeFailure failure; + failure.BagResult = msg; - error.level = uint32(pItem ? pItem->GetRequiredLevel() : 0); + if (item1) + { + failure.Item[0] = item1->GetGUID(); + failure.Level = uint32(item1->GetRequiredLevel()); + } + + if (item2) + failure.Item[1] = item2->GetGUID(); + + /// @todo: fill remaining values: + /// ContainerBSlot + /// SrcContainer + /// DstContainer + /// SrcSlot + /// LimitCategory - GetSession()->SendPacket(error.Write()); + SendDirectMessage(failure.Write()); } void Player::SendBuyError(BuyResult msg, Creature* creature, uint32 item, uint32 /*param*/) @@ -14295,7 +14307,7 @@ bool Player::CanSeeStartQuest(Quest const* quest) SatisfyQuestPrevChain(quest, false) && SatisfyQuestDay(quest, false) && SatisfyQuestWeek(quest, false) && SatisfyQuestMonth(quest, false) && SatisfyQuestSeasonal(quest, false)) { - return getLevel() + sWorld->getIntConfig(CONFIG_QUEST_HIGH_LEVEL_HIDE_DIFF) >= quest->GetMinLevel(); + return int32(getLevel() + sWorld->getIntConfig(CONFIG_QUEST_HIGH_LEVEL_HIDE_DIFF)) >= quest->GetMinLevel(); } return false; @@ -14361,17 +14373,16 @@ bool Player::CanCompleteQuest(uint32 quest_id) if (q_status.Status == QUEST_STATUS_INCOMPLETE) { - for (uint32 i = 0; i < qInfo->Objectives.size(); ++i) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - QuestObjective const& obj = qInfo->Objectives[i]; - switch (obj.Type) { case QUEST_OBJECTIVE_MONSTER: case QUEST_OBJECTIVE_ITEM: case QUEST_OBJECTIVE_GAMEOBJECT: case QUEST_OBJECTIVE_PLAYERKILLS: - if (q_status.ObjectiveData[i] < obj.Amount) + case QUEST_OBJECTIVE_TALKTO: + if (GetQuestObjectiveData(qInfo, obj.StorageIndex) < obj.Amount) return false; break; case QUEST_OBJECTIVE_MIN_REPUTATION: @@ -14387,7 +14398,7 @@ bool Player::CanCompleteQuest(uint32 quest_id) return false; break; case QUEST_OBJECTIVE_AREATRIGGER: - if (!q_status.ObjectiveData[i]) + if (!GetQuestObjectiveData(qInfo, obj.StorageIndex)) return false; break; default: @@ -14414,8 +14425,8 @@ bool Player::CanCompleteRepeatableQuest(Quest const* quest) return false; if (quest->HasSpecialFlag(QUEST_SPECIAL_FLAGS_DELIVER)) - for (uint8 i = 0; i < quest->Objectives.size(); i++) - if (quest->Objectives[i].Type == QUEST_OBJECTIVE_ITEM && quest->Objectives[i].Amount && !HasItemCount(quest->Objectives[i].ObjectID, quest->Objectives[i].Amount)) + for (QuestObjective const& obj : quest->GetObjectives()) + if (obj.Type == QUEST_OBJECTIVE_ITEM && !HasItemCount(obj.ObjectID, obj.Amount)) return false; if (!CanRewardQuest(quest, false)) @@ -14441,21 +14452,21 @@ bool Player::CanRewardQuest(Quest const* quest, bool msg) // prevent receive reward with quest items in bank if (quest->HasSpecialFlag(QUEST_SPECIAL_FLAGS_DELIVER)) { - for (uint8 i = 0; i < quest->Objectives.size(); i++) + for (QuestObjective const& obj : quest->GetObjectives()) { - if (quest->Objectives[i].Type != QUEST_OBJECTIVE_ITEM) + if (obj.Type != QUEST_OBJECTIVE_ITEM) continue; - if (GetItemCount(quest->Objectives[i].ObjectID) < uint32(quest->Objectives[i].Amount)) + if (GetItemCount(obj.ObjectID) < uint32(obj.Amount)) { if (msg) - SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL, quest->Objectives[i].ObjectID); + SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL, obj.ObjectID); return false; } } } - for (QuestObjective const& obj : quest->Objectives) + for (QuestObjective const& obj : quest->GetObjectives()) { switch (obj.Type) { @@ -14497,7 +14508,7 @@ void Player::AddQuestAndCheckCompletion(Quest const* quest, Object* questGiver) // destroy not required for quest finish quest starting item bool destroyItem = true; - for (QuestObjective const& obj : quest->Objectives) + for (QuestObjective const& obj : quest->GetObjectives()) { if (obj.Type == QUEST_OBJECTIVE_ITEM && uint32(obj.ObjectID) == item->GetEntry() && item->GetTemplate()->GetMaxCount() > 0) { @@ -14573,13 +14584,18 @@ void Player::AddQuest(Quest const* quest, Object* questGiver) // check for repeatable quests status reset questStatusData.Status = QUEST_STATUS_INCOMPLETE; - - questStatusData.ObjectiveData.resize(quest->Objectives.size(), 0); + + int32 maxStorageIndex = 0; + for (QuestObjective const& obj : quest->GetObjectives()) + if (obj.StorageIndex > maxStorageIndex) + maxStorageIndex = obj.StorageIndex; + + questStatusData.ObjectiveData.resize(maxStorageIndex+1, 0); GiveQuestSourceItem(quest); AdjustQuestReqItemCount(quest); - for (QuestObjective const& obj : quest->Objectives) + for (QuestObjective const& obj : quest->GetObjectives()) if (obj.Type == QUEST_OBJECTIVE_MIN_REPUTATION || obj.Type == QUEST_OBJECTIVE_MAX_REPUTATION) if (FactionEntry const* factionEntry = sFactionStore.LookupEntry(obj.ObjectID)) GetReputationMgr().SetVisible(factionEntry); @@ -14697,7 +14713,7 @@ void Player::RewardQuest(Quest const* quest, uint32 reward, Object* questGiver, uint32 quest_id = quest->GetQuestId(); - for (QuestObjective const& obj : quest->Objectives) + for (QuestObjective const& obj : quest->GetObjectives()) { switch (obj.Type) { @@ -14908,7 +14924,7 @@ void Player::FailQuest(uint32 questId) SendQuestFailed(questId); // Destroy quest items on quest failure. - for (QuestObjective const& obj : quest->Objectives) + for (QuestObjective const& obj : quest->GetObjectives()) if (obj.Type == QUEST_OBJECTIVE_ITEM) DestroyItemCount(obj.ObjectID, obj.Amount, true, true); // Destroy items received during the quest. @@ -15404,7 +15420,7 @@ bool Player::TakeQuestSourceItem(uint32 questId, bool msg) ASSERT(item); bool destroyItem = true; if (item->GetStartQuest() == questId) - for (QuestObjective const& obj : quest->Objectives) + for (QuestObjective const& obj : quest->GetObjectives()) if (obj.Type == QUEST_OBJECTIVE_ITEM && srcItemId == uint32(obj.ObjectID)) destroyItem = false; @@ -15637,9 +15653,9 @@ uint16 Player::GetReqKillOrCastCurrentCount(uint32 quest_id, int32 entry) if (!qInfo) return 0; - for (uint8 j = 0; j < qInfo->Objectives.size(); ++j) - if (qInfo->Objectives[j].ObjectID == entry) - return GetQuestObjectiveData(qInfo, j); + for (QuestObjective const& obj : qInfo->GetObjectives()) + if (obj.ObjectID == entry) + return GetQuestObjectiveData(qInfo, obj.StorageIndex); return 0; } @@ -15648,14 +15664,14 @@ void Player::AdjustQuestReqItemCount(Quest const* quest) { if (quest->HasSpecialFlag(QUEST_SPECIAL_FLAGS_DELIVER)) { - for (uint8 i = 0; i < quest->Objectives.size(); ++i) + for (QuestObjective const& obj : quest->GetObjectives()) { - if (quest->Objectives[i].Type != QUEST_OBJECTIVE_ITEM) + if (obj.Type != QUEST_OBJECTIVE_ITEM) continue; - uint32 reqItemCount = quest->Objectives[i].Amount; - uint32 curItemCount = GetItemCount(quest->Objectives[i].ObjectID, true); - SetQuestObjectiveData(quest, i, std::min(curItemCount, reqItemCount)); + uint32 reqItemCount = obj.Amount; + uint32 curItemCount = GetItemCount(obj.ObjectID, true); + SetQuestObjectiveData(quest, obj.StorageIndex, std::min(curItemCount, reqItemCount)); } } } @@ -15744,7 +15760,7 @@ void Player::AreaExploredOrEventHappens(uint32 questId) /** @todo This function was previously used for area triggers but now those are a part of quest objective system Currently this function is used to complete quests with no objectives (needs verifying) so probably rename it? - + QuestStatusData& q_status = m_QuestStatus[questId]; if (!q_status.Explored) @@ -15793,20 +15809,20 @@ void Player::ItemAddedQuestCheck(uint32 entry, uint32 count) if (!qInfo || !qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_DELIVER)) continue; - for (uint8 j = 0; j < qInfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[j].Type != QUEST_OBJECTIVE_ITEM) + if (obj.Type != QUEST_OBJECTIVE_ITEM) continue; - uint32 reqItem = qInfo->Objectives[j].ObjectID; + uint32 reqItem = obj.ObjectID; if (reqItem == entry) { - uint32 reqItemCount = qInfo->Objectives[j].Amount; - uint32 curItemCount = GetQuestObjectiveData(qInfo, j); + uint32 reqItemCount = obj.Amount; + uint32 curItemCount = GetQuestObjectiveData(qInfo, obj.StorageIndex); if (curItemCount < reqItemCount) { uint32 newItemCount = std::min<uint32>(curItemCount + count, reqItemCount); - SetQuestObjectiveData(qInfo, j, newItemCount); + SetQuestObjectiveData(qInfo, obj.StorageIndex, newItemCount); //SendQuestUpdateAddItem(qInfo, j, additemcount); // FIXME: verify if there's any packet sent updating item @@ -15837,16 +15853,16 @@ void Player::ItemRemovedQuestCheck(uint32 entry, uint32 count) if (!qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_DELIVER)) continue; - for (uint8 j = 0; j < qInfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[j].Type != QUEST_OBJECTIVE_ITEM) + if (obj.Type != QUEST_OBJECTIVE_ITEM) continue; - uint32 reqItem = qInfo->Objectives[j].ObjectID; + uint32 reqItem = obj.ObjectID; if (reqItem == entry) { - uint32 reqItemCount = qInfo->Objectives[j].Amount; - uint16 curItemCount = GetQuestObjectiveData(qInfo, j); + uint32 reqItemCount = obj.Amount; + uint16 curItemCount = GetQuestObjectiveData(qInfo, obj.StorageIndex); if (curItemCount >= reqItemCount) // we may have more than what the status shows curItemCount = GetItemCount(entry, false); @@ -15855,7 +15871,7 @@ void Player::ItemRemovedQuestCheck(uint32 entry, uint32 count) if (newItemCount < reqItemCount) { - SetQuestObjectiveData(qInfo, j, newItemCount); + SetQuestObjectiveData(qInfo, obj.StorageIndex, newItemCount); IncompleteQuest(questid); } return; @@ -15901,27 +15917,28 @@ void Player::KilledMonsterCredit(uint32 entry, ObjectGuid guid /*= ObjectGuid::E Quest const* qInfo = sObjectMgr->GetQuestTemplate(questid); if (!qInfo) continue; + // just if !ingroup || !noraidgroup || raidgroup QuestStatusData& q_status = m_QuestStatus[questid]; if (q_status.Status == QUEST_STATUS_INCOMPLETE && (!GetGroup() || !GetGroup()->isRaidGroup() || qInfo->IsAllowedInRaid(GetMap()->GetDifficulty()))) { if (qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_KILL) /*&& !qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_CAST)*/) { - for (uint8 j = 0; j < qInfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[j].Type != QUEST_OBJECTIVE_MONSTER) + if (obj.Type != QUEST_OBJECTIVE_MONSTER) continue; - uint32 reqkill = qInfo->Objectives[j].ObjectID; + uint32 reqkill = obj.ObjectID; if (reqkill == real_entry) { - uint32 reqKillCount = qInfo->Objectives[j].Amount; - uint16 curKillCount = GetQuestObjectiveData(qInfo, j); + uint32 reqKillCount = obj.Amount; + uint16 curKillCount = GetQuestObjectiveData(qInfo, obj.StorageIndex); if (curKillCount < reqKillCount) { - SetQuestObjectiveData(qInfo, j, curKillCount + addKillCount); - SendQuestUpdateAddCredit(qInfo, guid, j, curKillCount + addKillCount); + SetQuestObjectiveData(qInfo, obj.StorageIndex, curKillCount + addKillCount); + SendQuestUpdateAddCredit(qInfo, guid, obj, curKillCount + addKillCount); } if (CanCompleteQuest(questid)) @@ -15958,16 +15975,16 @@ void Player::KilledPlayerCredit() QuestStatusData& q_status = m_QuestStatus[questid]; if (q_status.Status == QUEST_STATUS_INCOMPLETE && (!GetGroup() || !GetGroup()->isRaidGroup() || qInfo->IsAllowedInRaid(GetMap()->GetDifficulty()))) { - for (uint32 i = 0; i < qInfo->Objectives.size(); ++i) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[i].Type != QUEST_OBJECTIVE_PLAYERKILLS) + if (obj.Type != QUEST_OBJECTIVE_PLAYERKILLS) continue; - uint32 curKillCount = GetQuestObjectiveData(qInfo, i); - if (curKillCount < uint32(qInfo->Objectives[i].Amount)) + uint32 curKillCount = GetQuestObjectiveData(qInfo, obj.StorageIndex); + if (curKillCount < uint32(obj.Amount)) { - SetQuestObjectiveData(qInfo, i, curKillCount + addKillCount); - SendQuestUpdateAddPlayer(qInfo, curKillCount + addKillCount, qInfo->Objectives[i].Amount); + SetQuestObjectiveData(qInfo, obj.StorageIndex, curKillCount + addKillCount); + SendQuestUpdateAddPlayer(qInfo, curKillCount + addKillCount, obj.Amount); } if (CanCompleteQuest(questid)) @@ -15999,23 +16016,23 @@ void Player::KillCreditGO(uint32 entry, ObjectGuid guid) { if (qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_CAST) /*&& !qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_KILL)*/) { - for (uint8 j = 0; j < qInfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[j].Type != QUEST_OBJECTIVE_GAMEOBJECT) + if (obj.Type != QUEST_OBJECTIVE_GAMEOBJECT) continue; - uint32 reqTarget = qInfo->Objectives[j].ObjectID; + uint32 reqTarget = obj.ObjectID; // other not this creature/GO related objectives if (reqTarget != entry) continue; - uint32 reqCastCount = qInfo->Objectives[j].Amount; - uint32 curCastCount = GetQuestObjectiveData(qInfo, j); + uint32 reqCastCount = obj.Amount; + uint32 curCastCount = GetQuestObjectiveData(qInfo, obj.StorageIndex); if (curCastCount < reqCastCount) { - SetQuestObjectiveData(qInfo, j, curCastCount + addCastCount); - SendQuestUpdateAddCredit(qInfo, guid, j, curCastCount + addCastCount); + SetQuestObjectiveData(qInfo, obj.StorageIndex, curCastCount + addCastCount); + SendQuestUpdateAddCredit(qInfo, guid, obj, curCastCount + addCastCount); } if (CanCompleteQuest(questid)) @@ -16048,21 +16065,21 @@ void Player::TalkedToCreature(uint32 entry, ObjectGuid guid) { if (qInfo->HasSpecialFlag(QUEST_SPECIAL_FLAGS_KILL | QUEST_SPECIAL_FLAGS_CAST | QUEST_SPECIAL_FLAGS_SPEAKTO)) { - for (uint8 j = 0; j < qInfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[j].Type != QUEST_OBJECTIVE_TALKTO) + if (obj.Type != QUEST_OBJECTIVE_TALKTO) continue; - uint32 reqTarget = qInfo->Objectives[j].ObjectID; + uint32 reqTarget = obj.ObjectID; if (reqTarget == entry) { - uint32 reqTalkCount = qInfo->Objectives[j].Amount; - uint32 curTalkCount = GetQuestObjectiveData(qInfo, j); + uint32 reqTalkCount = obj.Amount; + uint32 curTalkCount = GetQuestObjectiveData(qInfo, obj.StorageIndex); if (curTalkCount < reqTalkCount) { - SetQuestObjectiveData(qInfo, j, curTalkCount + addTalkCount); - SendQuestUpdateAddCredit(qInfo, guid, j, curTalkCount + addTalkCount); + SetQuestObjectiveData(qInfo, obj.StorageIndex, curTalkCount + addTalkCount); + SendQuestUpdateAddCredit(qInfo, guid, obj, curTalkCount + addTalkCount); } if (CanCompleteQuest(questid)) @@ -16123,7 +16140,7 @@ void Player::ReputationChanged(FactionEntry const* factionEntry) { QuestStatusData& q_status = m_QuestStatus[questid]; - for (QuestObjective const& obj : qInfo->Objectives) + for (QuestObjective const& obj : qInfo->GetObjectives()) { if (uint32(obj.ObjectID) != factionEntry->ID) continue; @@ -16189,9 +16206,9 @@ bool Player::HasQuestForItem(uint32 itemid) const // There should be no mixed ReqItem/ReqSource drop // This part for ReqItem drop - for (uint8 j = 0; j < qInfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[j].Type == QUEST_OBJECTIVE_ITEM && itemid == uint32(qInfo->Objectives[j].ObjectID) && q_status.ObjectiveData[j] < qInfo->Objectives[j].Amount) + if (obj.Type == QUEST_OBJECTIVE_ITEM && itemid == uint32(obj.ObjectID) && GetQuestObjectiveData(qInfo, obj.StorageIndex) < obj.Amount) return true; } // This part - for ReqSource @@ -16220,8 +16237,11 @@ bool Player::HasQuestForItem(uint32 itemid) const return false; } -int32 Player::GetQuestObjectiveData(Quest const* quest, uint32 objective) const +int32 Player::GetQuestObjectiveData(Quest const* quest, int8 storageIndex) const { + if (storageIndex < 0) + TC_LOG_ERROR("entities.player.quest", "GetQuestObjectiveData: called for quest %u with invalid StorageIndex %d (objective data is not tracked)", quest->GetQuestId(), storageIndex); + auto itr = m_QuestStatus.find(quest->GetQuestId()); if (itr == m_QuestStatus.end()) @@ -16232,17 +16252,20 @@ int32 Player::GetQuestObjectiveData(Quest const* quest, uint32 objective) const QuestStatusData const& status = itr->second; - if (objective >= status.ObjectiveData.size()) + if (uint8(storageIndex) >= status.ObjectiveData.size()) { - TC_LOG_ERROR("entities.player.quest", "GetQuestObjectiveData: player %s (%s) quest %u out of range objective index %u", GetName().c_str(), GetGUID().ToString().c_str(), quest->GetQuestId(), objective); + TC_LOG_ERROR("entities.player.quest", "GetQuestObjectiveData: player %s (%s) quest %u out of range StorageIndex %u", GetName().c_str(), GetGUID().ToString().c_str(), quest->GetQuestId(), storageIndex); return 0; } - return status.ObjectiveData[objective]; + return status.ObjectiveData[storageIndex]; } -void Player::SetQuestObjectiveData(Quest const* quest, uint32 objective, int32 data) +void Player::SetQuestObjectiveData(Quest const* quest, int8 storageIndex, int32 data) { + if (storageIndex < 0) + TC_LOG_ERROR("entities.player.quest", "SetQuestObjectiveData: called for quest %u with invalid StorageIndex %d (objective data is not tracked)", quest->GetQuestId(), storageIndex); + auto itr = m_QuestStatus.find(quest->GetQuestId()); if (itr == m_QuestStatus.end()) @@ -16253,18 +16276,18 @@ void Player::SetQuestObjectiveData(Quest const* quest, uint32 objective, int32 d QuestStatusData& status = itr->second; - if (objective >= status.ObjectiveData.size()) + if (uint8(storageIndex) >= status.ObjectiveData.size()) { - TC_LOG_ERROR("entities.player.quest", "SetQuestObjectiveData: player %s (%s) quest %u out of range objective index %u", GetName().c_str(), GetGUID().ToString().c_str(), quest->GetQuestId(), objective); + TC_LOG_ERROR("entities.player.quest", "SetQuestObjectiveData: player %s (%s) quest %u out of range StorageIndex %u", GetName().c_str(), GetGUID().ToString().c_str(), quest->GetQuestId(), storageIndex); return; } // No change - if (status.ObjectiveData[objective] == data) + if (status.ObjectiveData[storageIndex] == data) return; // Set data - status.ObjectiveData[objective] = data; + status.ObjectiveData[storageIndex] = data; // Add to save m_QuestStatusSave[quest->GetQuestId()] = QUEST_DEFAULT_SAVE_TYPE; @@ -16272,7 +16295,7 @@ void Player::SetQuestObjectiveData(Quest const* quest, uint32 objective, int32 d // Update quest fields uint16 log_slot = FindQuestSlot(quest->GetQuestId()); if (log_slot < MAX_QUEST_LOG_SIZE) - SetQuestSlotCounter(log_slot, objective, status.ObjectiveData[objective]); + SetQuestSlotCounter(log_slot, storageIndex, status.ObjectiveData[storageIndex]); } void Player::SendQuestComplete(Quest const* quest) @@ -16307,14 +16330,14 @@ void Player::SendQuestReward(Quest const* quest, uint32 XP) } WorldPackets::Quest::QuestGiverQuestComplete packet; - + packet.QuestID = questId; packet.MoneyReward = moneyReward; packet.XPReward = xp; packet.SkillLineIDReward = quest->GetRewardSkillId(); packet.NumSkillUpsReward = quest->GetRewardSkillPoints(); packet.TalentReward = quest->GetBonusTalents(); - + // @todo fix these 3 packet.UseQuestReward = true; packet.LaunchGossip = true; @@ -16387,15 +16410,15 @@ void Player::SendPushToPartyResponse(Player* player, uint8 msg) } } -void Player::SendQuestUpdateAddCredit(Quest const* quest, ObjectGuid guid, uint32 objective, uint16 count) +void Player::SendQuestUpdateAddCredit(Quest const* quest, ObjectGuid guid, QuestObjective const& obj, uint16 count) { WorldPackets::Quest::QuestUpdateAddCredit packet; packet.VictimGUID = guid; packet.QuestID = quest->GetQuestId(); - packet.ObjectID = quest->Objectives[objective].ObjectID; + packet.ObjectID = obj.ObjectID; packet.Count = count; - packet.Required = quest->Objectives[objective].Amount; - packet.ObjectiveType = quest->Objectives[objective].Type; + packet.Required = obj.Amount; + packet.ObjectiveType = obj.Type; GetSession()->SendPacket(packet.Write()); } @@ -18040,7 +18063,12 @@ void Player::_LoadQuestStatus(PreparedQueryResult result) } // Resize quest objective data to proper size - questStatusData.ObjectiveData.resize(quest->GetObjectives().size()); + int32 maxStorageIndex = 0; + for (QuestObjective const& obj : quest->GetObjectives()) + if (obj.StorageIndex > maxStorageIndex) + maxStorageIndex = obj.StorageIndex; + + questStatusData.ObjectiveData.resize(maxStorageIndex+1); TC_LOG_DEBUG("entities.player.loading", "Quest status is {%u} for quest {%u} for player (%s)", questStatusData.Status, quest_id, GetGUID().ToString().c_str()); } @@ -23567,12 +23595,12 @@ bool Player::HasQuestForGO(int32 GOId) const if (GetGroup() && GetGroup()->isRaidGroup() && !qInfo->IsAllowedInRaid(GetMap()->GetDifficulty())) continue; - for (uint32 j = 0; j < qInfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qInfo->GetObjectives()) { - if (qInfo->Objectives[j].Type != QUEST_OBJECTIVE_GAMEOBJECT) //skip non GO case + if (obj.Type != QUEST_OBJECTIVE_GAMEOBJECT) //skip non GO case continue; - if (GOId == qInfo->Objectives[j].ObjectID && qs.ObjectiveData[j] < qInfo->Objectives[j].Amount) + if (GOId == obj.ObjectID && GetQuestObjectiveData(qInfo, obj.StorageIndex) < obj.Amount) return true; } } diff --git a/src/server/game/Entities/Player/Player.h b/src/server/game/Entities/Player/Player.h index ce29ef4b5d2..31a145a7147 100644 --- a/src/server/game/Entities/Player/Player.h +++ b/src/server/game/Entities/Player/Player.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -996,12 +996,12 @@ enum ReferAFriendError ERR_REFER_A_FRIEND_DIFFERENT_FACTION = 0x05, ERR_REFER_A_FRIEND_NOT_NOW = 0x06, ERR_REFER_A_FRIEND_GRANT_LEVEL_MAX_I = 0x07, - ERR_REFER_A_FRIEND_NO_TARGET = 0x08, - ERR_REFER_A_FRIEND_NOT_IN_GROUP = 0x09, - ERR_REFER_A_FRIEND_SUMMON_LEVEL_MAX_I = 0x0A, - ERR_REFER_A_FRIEND_SUMMON_COOLDOWN = 0x0B, - ERR_REFER_A_FRIEND_INSUF_EXPAN_LVL = 0x0C, - ERR_REFER_A_FRIEND_SUMMON_OFFLINE_S = 0x0D + ERR_REFER_A_FRIEND_SUMMON_LEVEL_MAX_I = 0x08, + ERR_REFER_A_FRIEND_SUMMON_COOLDOWN = 0x09, + ERR_REFER_A_FRIEND_SUMMON_OFFLINE_S = 0x0A, + ERR_REFER_A_FRIEND_INSUF_EXPAN_LVL = 0x0B, + ERR_REFER_A_FRIEND_NOT_IN_LFG = 0x0C, + ERR_REFER_A_FRIEND_NO_XREALM = 0x0D }; enum PlayerRestState @@ -1517,7 +1517,7 @@ class Player : public Unit, public GridObject<Player> void AddItemToBuyBackSlot(Item* pItem); Item* GetItemFromBuyBackSlot(uint32 slot); void RemoveItemFromBuyBackSlot(uint32 slot, bool del); - void SendEquipError(InventoryResult msg, Item* pItem, Item* pItem2 = NULL, uint32 itemid = 0); + void SendEquipError(InventoryResult msg, Item* item1 = nullptr, Item* item2 = nullptr, uint32 itemId = 0); void SendBuyError(BuyResult msg, Creature* creature, uint32 item, uint32 param); void SendSellError(SellResult msg, Creature* creature, ObjectGuid guid); void AddWeaponProficiency(uint32 newflag) { m_WeaponProficiency |= newflag; } @@ -1662,8 +1662,8 @@ class Player : public Unit, public GridObject<Player> void UpdateForQuestWorldObjects(); bool CanShareQuest(uint32 questId) const; - int32 GetQuestObjectiveData(Quest const* quest, uint32 objective) const; - void SetQuestObjectiveData(Quest const* quest, uint32 objective, int32 data); + int32 GetQuestObjectiveData(Quest const* quest, int8 storageIndex) const; + void SetQuestObjectiveData(Quest const* quest, int8 storageIndex, int32 data); void SendQuestComplete(Quest const* quest); void SendQuestReward(Quest const* quest, uint32 XP); void SendQuestFailed(uint32 questId, InventoryResult reason = EQUIP_ERR_OK); @@ -1671,7 +1671,7 @@ class Player : public Unit, public GridObject<Player> void SendCanTakeQuestResponse(QuestFailedReason msg) const; void SendQuestConfirmAccept(Quest const* quest, Player* pReceiver); void SendPushToPartyResponse(Player* player, uint8 msg); - void SendQuestUpdateAddCredit(Quest const* quest, ObjectGuid guid, uint32 objective, uint16 count); + void SendQuestUpdateAddCredit(Quest const* quest, ObjectGuid guid, QuestObjective const& obj, uint16 count); void SendQuestUpdateAddPlayer(Quest const* quest, uint16 newCount, uint32 required); ObjectGuid GetDivider() const { return m_divider; } @@ -2088,7 +2088,7 @@ class Player : public Unit, public GridObject<Player> WorldSession* GetSession() const { return m_session; } void BuildCreateUpdateBlockForPlayer(UpdateData* data, Player* target) const override; - void DestroyForPlayer(Player* target, bool onDeath = false) const override; + void DestroyForPlayer(Player* target) const override; void SendLogXPGain(uint32 GivenXP, Unit* victim, uint32 BonusXP, bool recruitAFriend = false, float group_rate=1.0f); // notifiers diff --git a/src/server/game/Entities/Player/SocialMgr.cpp b/src/server/game/Entities/Player/SocialMgr.cpp index 8f2a1ac6060..3b7eba89b58 100644 --- a/src/server/game/Entities/Player/SocialMgr.cpp +++ b/src/server/game/Entities/Player/SocialMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Player/SocialMgr.h b/src/server/game/Entities/Player/SocialMgr.h index f453c734134..8f389d4afdf 100644 --- a/src/server/game/Entities/Player/SocialMgr.h +++ b/src/server/game/Entities/Player/SocialMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Totem/Totem.cpp b/src/server/game/Entities/Totem/Totem.cpp index d6aeb5dee9c..3929af2e3e7 100644 --- a/src/server/game/Entities/Totem/Totem.cpp +++ b/src/server/game/Entities/Totem/Totem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Totem/Totem.h b/src/server/game/Entities/Totem/Totem.h index 1d79eb3a3df..96bd0f44700 100644 --- a/src/server/game/Entities/Totem/Totem.h +++ b/src/server/game/Entities/Totem/Totem.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Transport/Transport.cpp b/src/server/game/Entities/Transport/Transport.cpp index 03703c528c4..8b8a7b3af89 100644 --- a/src/server/game/Entities/Transport/Transport.cpp +++ b/src/server/game/Entities/Transport/Transport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Transport/Transport.h b/src/server/game/Entities/Transport/Transport.h index 59f8c9b110d..a24c8179ead 100644 --- a/src/server/game/Entities/Transport/Transport.h +++ b/src/server/game/Entities/Transport/Transport.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Unit/StatSystem.cpp b/src/server/game/Entities/Unit/StatSystem.cpp index 412948034b2..481d7fb3632 100644 --- a/src/server/game/Entities/Unit/StatSystem.cpp +++ b/src/server/game/Entities/Unit/StatSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp index cb05413d33a..5fe98b3f31b 100644 --- a/src/server/game/Entities/Unit/Unit.cpp +++ b/src/server/game/Entities/Unit/Unit.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -13334,7 +13334,7 @@ void Unit::Kill(Unit* victim, bool durabilityLoss) // call kill spell proc event (before real die and combat stop to triggering auras removed at death/combat stop) if (isRewardAllowed && player && player != victim) { - WorldPacket data(SMSG_PARTYKILLLOG, (8+8)); // send event PARTY_KILL + WorldPacket data(SMSG_PARTY_KILL_LOG, (8+8)); // send event PARTY_KILL data << player->GetGUID(); // player with killing blow data << victim->GetGUID(); // victim @@ -16155,7 +16155,6 @@ bool Unit::IsSplineEnabled() const return movespline->Initialized() && !movespline->Finalized(); } - void Unit::BuildValuesUpdate(uint8 updateType, ByteBuffer* data, Player* target) const { if (!target) @@ -16334,6 +16333,21 @@ void Unit::BuildValuesUpdate(uint8 updateType, ByteBuffer* data, Player* target) data->append(fieldBuffer); } +void Unit::DestroyForPlayer(Player* target) const +{ + if (Battleground* bg = target->GetBattleground()) + { + if (bg->isArena()) + { + WorldPacket data(SMSG_ARENA_UNIT_DESTROYED, 8); + data << GetGUID(); + target->GetSession()->SendPacket(&data); + } + } + + WorldObject::DestroyForPlayer(target); +} + void Unit::BuildCooldownPacket(WorldPacket& data, uint8 flags, uint32 spellId, uint32 cooldown) { data.Initialize(SMSG_SPELL_COOLDOWN, 8 + 1 + 4 + 4); diff --git a/src/server/game/Entities/Unit/Unit.h b/src/server/game/Entities/Unit/Unit.h index 0adba8f3dc6..00bb77a5a1e 100644 --- a/src/server/game/Entities/Unit/Unit.h +++ b/src/server/game/Entities/Unit/Unit.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -2228,6 +2228,7 @@ class Unit : public WorldObject explicit Unit (bool isWorldObject); void BuildValuesUpdate(uint8 updatetype, ByteBuffer* data, Player* target) const override; + void DestroyForPlayer(Player* target) const override; UnitAI* i_AI, *i_disabledAI; diff --git a/src/server/game/Entities/Vehicle/Vehicle.cpp b/src/server/game/Entities/Vehicle/Vehicle.cpp index 96da4d14f03..89356307b2f 100644 --- a/src/server/game/Entities/Vehicle/Vehicle.cpp +++ b/src/server/game/Entities/Vehicle/Vehicle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Vehicle/Vehicle.h b/src/server/game/Entities/Vehicle/Vehicle.h index ffed8e2b677..edec4ea161c 100644 --- a/src/server/game/Entities/Vehicle/Vehicle.h +++ b/src/server/game/Entities/Vehicle/Vehicle.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Entities/Vehicle/VehicleDefines.h b/src/server/game/Entities/Vehicle/VehicleDefines.h index b03d65c035d..5569fcbf353 100644 --- a/src/server/game/Entities/Vehicle/VehicleDefines.h +++ b/src/server/game/Entities/Vehicle/VehicleDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Events/GameEventMgr.cpp b/src/server/game/Events/GameEventMgr.cpp index 4e4afa0c7bf..efb38cf2777 100644 --- a/src/server/game/Events/GameEventMgr.cpp +++ b/src/server/game/Events/GameEventMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Events/GameEventMgr.h b/src/server/game/Events/GameEventMgr.h index bea759b838b..bbddd5698d8 100644 --- a/src/server/game/Events/GameEventMgr.h +++ b/src/server/game/Events/GameEventMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Globals/ObjectAccessor.cpp b/src/server/game/Globals/ObjectAccessor.cpp index 82ae7cd4d4d..e38c14046c4 100644 --- a/src/server/game/Globals/ObjectAccessor.cpp +++ b/src/server/game/Globals/ObjectAccessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Globals/ObjectAccessor.h b/src/server/game/Globals/ObjectAccessor.h index 0b7f7d11f8d..47fc7aa6cef 100644 --- a/src/server/game/Globals/ObjectAccessor.h +++ b/src/server/game/Globals/ObjectAccessor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 237b1e18194..72b4d7be0b0 100644 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -3629,9 +3629,9 @@ void ObjectMgr::LoadQuests() } // Load `quest_visual_effect` join table with quest_objectives because visual effects are based on objective ID (core stores objectives by their index in quest) - // 0 1 2 3 4 5 - result = WorldDatabase.Query("SELECT v.ID, o.ID, o.QuestID, o.StorageIndex, v.Index, v.VisualEffect FROM quest_visual_effect AS v LEFT JOIN quest_objectives AS o ON v.ID = o.ID ORDER BY v.Index DESC"); - + // 0 1 2 3 4 + result = WorldDatabase.Query("SELECT v.ID, o.ID, o.QuestID, v.Index, v.VisualEffect FROM quest_visual_effect AS v LEFT JOIN quest_objectives AS o ON v.ID = o.ID ORDER BY v.Index DESC"); + if (!result) { TC_LOG_ERROR("server.loading", ">> Loaded 0 quest visual effects. DB table `quest_visual_effect` is empty."); @@ -3679,8 +3679,8 @@ void ObjectMgr::LoadQuests() // additional quest integrity checks (GO, creature_template and item_template must be loaded already) - if (qinfo->GetQuestMethod() >= 3) - TC_LOG_ERROR("sql.sql", "Quest %u has `Method` = %u, expected values are 0, 1 or 2.", qinfo->GetQuestId(), qinfo->GetQuestMethod()); + if (qinfo->GetQuestType() >= MAX_QUEST_TYPES) + TC_LOG_ERROR("sql.sql", "Quest %u has `Method` = %u, expected values are 0, 1 or 2.", qinfo->GetQuestId(), qinfo->GetQuestType()); if (qinfo->SpecialFlags & ~QUEST_SPECIAL_FLAGS_DB_ALLOWED) { @@ -3699,7 +3699,7 @@ void ObjectMgr::LoadQuests() { if (!(qinfo->SpecialFlags & QUEST_SPECIAL_FLAGS_REPEATABLE)) { - TC_LOG_ERROR("sql.sql", "Daily Quest %u not marked as repeatable in `SpecialFlags`, added.", qinfo->GetQuestId()); + TC_LOG_DEBUG("sql.sql", "Daily Quest %u not marked as repeatable in `SpecialFlags`, added.", qinfo->GetQuestId()); qinfo->SpecialFlags |= QUEST_SPECIAL_FLAGS_REPEATABLE; } } @@ -3708,7 +3708,7 @@ void ObjectMgr::LoadQuests() { if (!(qinfo->SpecialFlags & QUEST_SPECIAL_FLAGS_REPEATABLE)) { - TC_LOG_ERROR("sql.sql", "Weekly Quest %u not marked as repeatable in `SpecialFlags`, added.", qinfo->GetQuestId()); + TC_LOG_DEBUG("sql.sql", "Weekly Quest %u not marked as repeatable in `SpecialFlags`, added.", qinfo->GetQuestId()); qinfo->SpecialFlags |= QUEST_SPECIAL_FLAGS_REPEATABLE; } } @@ -3717,7 +3717,7 @@ void ObjectMgr::LoadQuests() { if (!(qinfo->SpecialFlags & QUEST_SPECIAL_FLAGS_REPEATABLE)) { - TC_LOG_ERROR("sql.sql", "Monthly quest %u not marked as repeatable in `SpecialFlags`, added.", qinfo->GetQuestId()); + TC_LOG_DEBUG("sql.sql", "Monthly quest %u not marked as repeatable in `SpecialFlags`, added.", qinfo->GetQuestId()); qinfo->SpecialFlags |= QUEST_SPECIAL_FLAGS_REPEATABLE; } } @@ -3743,32 +3743,32 @@ void ObjectMgr::LoadQuests() } // client quest log visual (area case) - if (qinfo->ZoneOrSort > 0) + if (qinfo->QuestSortID > 0) { - if (!GetAreaEntryByAreaID(qinfo->ZoneOrSort)) + if (!GetAreaEntryByAreaID(qinfo->QuestSortID)) { - TC_LOG_ERROR("sql.sql", "Quest %u has `ZoneOrSort` = %u (zone case) but zone with this id does not exist.", - qinfo->GetQuestId(), qinfo->ZoneOrSort); + TC_LOG_ERROR("sql.sql", "Quest %u has `QuestSortID` = %u (zone case) but zone with this id does not exist.", + qinfo->GetQuestId(), qinfo->QuestSortID); // no changes, quest not dependent from this value but can have problems at client } } // client quest log visual (sort case) - if (qinfo->ZoneOrSort < 0) + if (qinfo->QuestSortID < 0) { - QuestSortEntry const* qSort = sQuestSortStore.LookupEntry(-int32(qinfo->ZoneOrSort)); + QuestSortEntry const* qSort = sQuestSortStore.LookupEntry(-int32(qinfo->QuestSortID)); if (!qSort) { - TC_LOG_ERROR("sql.sql", "Quest %u has `ZoneOrSort` = %i (sort case) but quest sort with this id does not exist.", - qinfo->GetQuestId(), qinfo->ZoneOrSort); + TC_LOG_ERROR("sql.sql", "Quest %u has `QuestSortID` = %i (sort case) but quest sort with this id does not exist.", + qinfo->GetQuestId(), qinfo->QuestSortID); // no changes, quest not dependent from this value but can have problems at client (note some may be 0, we must allow this so no check) } //check for proper RequiredSkillId value (skill case) - if (uint32 skill_id = SkillByQuestSort(-int32(qinfo->ZoneOrSort))) + if (uint32 skill_id = SkillByQuestSort(-int32(qinfo->QuestSortID))) { if (qinfo->RequiredSkillId != skill_id) { - TC_LOG_ERROR("sql.sql", "Quest %u has `ZoneOrSort` = %i but `RequiredSkillId` does not have a corresponding value (%d).", - qinfo->GetQuestId(), qinfo->ZoneOrSort, skill_id); + TC_LOG_ERROR("sql.sql", "Quest %u has `QuestSortID` = %i but `RequiredSkillId` does not have a corresponding value (%d).", + qinfo->GetQuestId(), qinfo->QuestSortID, skill_id); //override, and force proper value here? } } @@ -3902,22 +3902,24 @@ void ObjectMgr::LoadQuests() } } - for (uint32 j = 0; j < qinfo->Objectives.size(); ++j) + for (QuestObjective const& obj : qinfo->GetObjectives()) { - QuestObjective& obj = qinfo->Objectives[j]; - - if (!obj.ObjectID) - { - TC_LOG_ERROR("sql.sql", "Quest %u objective %u has `ObjectID` = 0, quest can't be done.", qinfo->GetQuestId(), j); - // no changes, quest can't be done for this requirement - continue; - } - - if (!obj.Amount) + // Check storage index for objectives which store data + if (obj.StorageIndex < 0) { - TC_LOG_ERROR("sql.sql", "Quest %u objective %u has `Amount` = 0, quest can't be done.", qinfo->GetQuestId(), j); - // no changes, quest can't be done for this requirement - continue; + switch (obj.Type) + { + case QUEST_OBJECTIVE_MONSTER: + case QUEST_OBJECTIVE_ITEM: + case QUEST_OBJECTIVE_GAMEOBJECT: + case QUEST_OBJECTIVE_TALKTO: + case QUEST_OBJECTIVE_PLAYERKILLS: + case QUEST_OBJECTIVE_AREATRIGGER: + TC_LOG_ERROR("sql.sql", "Quest %u objective %u has invalid StorageIndex = %d for objective type %u", qinfo->GetQuestId(), obj.ID, obj.StorageIndex, obj.Type); + break; + default: + break; + } } switch (obj.Type) @@ -3925,48 +3927,43 @@ void ObjectMgr::LoadQuests() case QUEST_OBJECTIVE_ITEM: qinfo->SetSpecialFlag(QUEST_SPECIAL_FLAGS_DELIVER); if (!sObjectMgr->GetItemTemplate(obj.ObjectID)) - { TC_LOG_ERROR("sql.sql", "Quest %u objective %u has non existing item entry %u, quest can't be done.", - qinfo->GetQuestId(), j, obj.ObjectID); - obj.Amount = 0; // prevent incorrect work of quest - } + qinfo->GetQuestId(), obj.ID, obj.ObjectID); break; case QUEST_OBJECTIVE_MONSTER: - qinfo->SetSpecialFlag(QUEST_SPECIAL_FLAGS_KILL | QUEST_SPECIAL_FLAGS_CAST | QUEST_SPECIAL_FLAGS_SPEAKTO); + qinfo->SetSpecialFlag(QUEST_SPECIAL_FLAGS_KILL | QUEST_SPECIAL_FLAGS_CAST); if (!sObjectMgr->GetCreatureTemplate(obj.ObjectID)) - { TC_LOG_ERROR("sql.sql", "Quest %u objective %u has non existing creature entry %u, quest can't be done.", - qinfo->GetQuestId(), j, uint32(obj.ObjectID)); - obj.Amount = 0; // quest can't be done for this requirement - } + qinfo->GetQuestId(), obj.ID, uint32(obj.ObjectID)); break; case QUEST_OBJECTIVE_GAMEOBJECT: - qinfo->SetSpecialFlag(QUEST_SPECIAL_FLAGS_KILL | QUEST_SPECIAL_FLAGS_CAST | QUEST_SPECIAL_FLAGS_SPEAKTO); + qinfo->SetSpecialFlag(QUEST_SPECIAL_FLAGS_KILL | QUEST_SPECIAL_FLAGS_CAST); if (!sObjectMgr->GetGameObjectTemplate(obj.ObjectID)) - { TC_LOG_ERROR("sql.sql", "Quest %u objective %u has non existing gameobject entry %u, quest can't be done.", - qinfo->GetQuestId(), j, uint32(obj.ObjectID)); - obj.Amount = 0; // quest can't be done for this requirement - } + qinfo->GetQuestId(), obj.ID, uint32(obj.ObjectID)); + break; + case QUEST_OBJECTIVE_TALKTO: + // Need checks (is it creature only?) + qinfo->SetSpecialFlag(QUEST_SPECIAL_FLAGS_CAST | QUEST_SPECIAL_FLAGS_SPEAKTO); break; case QUEST_OBJECTIVE_MIN_REPUTATION: case QUEST_OBJECTIVE_MAX_REPUTATION: if (!sFactionStore.LookupEntry(obj.ObjectID)) - TC_LOG_ERROR("sql.sql", "Quest %u objective %u has non existing faction id %u", qinfo->GetQuestId(), j, obj.ObjectID); + TC_LOG_ERROR("sql.sql", "Quest %u objective %u has non existing faction id %u", qinfo->GetQuestId(), obj.ID, obj.ObjectID); break; case QUEST_OBJECTIVE_PLAYERKILLS: qinfo->SetSpecialFlag(QUEST_SPECIAL_FLAGS_PLAYER_KILL); if (obj.Amount <= 0) - TC_LOG_ERROR("sql.sql", "Quest %u objective %u has invalid player kills count %d", qinfo->GetQuestId(), j, obj.Amount); + TC_LOG_ERROR("sql.sql", "Quest %u objective %u has invalid player kills count %d", qinfo->GetQuestId(), obj.ID, obj.Amount); break; case QUEST_OBJECTIVE_CURRENCY: if (!sCurrencyTypesStore.LookupEntry(obj.ObjectID)) - TC_LOG_ERROR("sql.sql", "Quest %u objective %u has non existing currency %u", qinfo->GetQuestId(), j, obj.ObjectID); + TC_LOG_ERROR("sql.sql", "Quest %u objective %u has non existing currency %u", qinfo->GetQuestId(), obj.ID, obj.ObjectID); if (obj.Amount <= 0) - TC_LOG_ERROR("sql.sql", "Quest %u objective %u has invalid currency amount %d", qinfo->GetQuestId(), j, obj.Amount); + TC_LOG_ERROR("sql.sql", "Quest %u objective %u has invalid currency amount %d", qinfo->GetQuestId(), obj.ID, obj.Amount); break; default: - TC_LOG_ERROR("sql.sql", "Quest %u objective %u has unknown type %u", qinfo->GetQuestId(), j, obj.Type); + TC_LOG_ERROR("sql.sql", "Quest %u objective %u has unhandled type %u", qinfo->GetQuestId(), obj.ID, obj.Type); } } @@ -3977,7 +3974,7 @@ void ObjectMgr::LoadQuests() { if (!sObjectMgr->GetItemTemplate(id)) { - TC_LOG_ERROR("sql.sql", "Quest %u has `RequiredSourceItemId%d` = %u but item with entry %u does not exist, quest can't be done.", + TC_LOG_ERROR("sql.sql", "Quest %u has `ItemDrop%d` = %u but item with entry %u does not exist, quest can't be done.", qinfo->GetQuestId(), j+1, id, id); // no changes, quest can't be done for this requirement } @@ -3986,7 +3983,7 @@ void ObjectMgr::LoadQuests() { if (qinfo->ItemDropQuantity[j]>0) { - TC_LOG_ERROR("sql.sql", "Quest %u has `RequiredSourceItemId%d` = 0 but `RequiredSourceItemCount%d` = %u.", + TC_LOG_ERROR("sql.sql", "Quest %u has `ItemDrop%d` = 0 but `ItemDropQuantity%d` = %u.", qinfo->GetQuestId(), j+1, j+1, qinfo->ItemDropQuantity[j]); // no changes, quest ignore this data } diff --git a/src/server/game/Globals/ObjectMgr.h b/src/server/game/Globals/ObjectMgr.h index e8b102e2741..5de0862c330 100644 --- a/src/server/game/Globals/ObjectMgr.h +++ b/src/server/game/Globals/ObjectMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/Cells/Cell.h b/src/server/game/Grids/Cells/Cell.h index b1a13558d3d..eb889e328cb 100644 --- a/src/server/game/Grids/Cells/Cell.h +++ b/src/server/game/Grids/Cells/Cell.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/Cells/CellImpl.h b/src/server/game/Grids/Cells/CellImpl.h index ac015c382ea..ea5143375c1 100644 --- a/src/server/game/Grids/Cells/CellImpl.h +++ b/src/server/game/Grids/Cells/CellImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/Grid.h b/src/server/game/Grids/Grid.h index 2d5ca74b818..69b245e4326 100644 --- a/src/server/game/Grids/Grid.h +++ b/src/server/game/Grids/Grid.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/GridDefines.h b/src/server/game/Grids/GridDefines.h index 04973237365..4f3e774ea56 100644 --- a/src/server/game/Grids/GridDefines.h +++ b/src/server/game/Grids/GridDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/GridLoader.h b/src/server/game/Grids/GridLoader.h index 3ec8a5a60b4..153a45c8ccb 100644 --- a/src/server/game/Grids/GridLoader.h +++ b/src/server/game/Grids/GridLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/GridRefManager.h b/src/server/game/Grids/GridRefManager.h index 1d79cd770e4..b52f1052fad 100644 --- a/src/server/game/Grids/GridRefManager.h +++ b/src/server/game/Grids/GridRefManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/GridReference.h b/src/server/game/Grids/GridReference.h index 57929bc2de1..946e2f89278 100644 --- a/src/server/game/Grids/GridReference.h +++ b/src/server/game/Grids/GridReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/GridStates.cpp b/src/server/game/Grids/GridStates.cpp index 3e085f1f381..7f12c7b2793 100644 --- a/src/server/game/Grids/GridStates.cpp +++ b/src/server/game/Grids/GridStates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/GridStates.h b/src/server/game/Grids/GridStates.h index 330b74ec65e..6f20e720377 100644 --- a/src/server/game/Grids/GridStates.h +++ b/src/server/game/Grids/GridStates.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/NGrid.h b/src/server/game/Grids/NGrid.h index 2590e85e5d3..b6189d22fe3 100644 --- a/src/server/game/Grids/NGrid.h +++ b/src/server/game/Grids/NGrid.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/Notifiers/GridNotifiers.cpp b/src/server/game/Grids/Notifiers/GridNotifiers.cpp index 111a5dba77f..533f2845b17 100644 --- a/src/server/game/Grids/Notifiers/GridNotifiers.cpp +++ b/src/server/game/Grids/Notifiers/GridNotifiers.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/Notifiers/GridNotifiers.h b/src/server/game/Grids/Notifiers/GridNotifiers.h index b693d2e13ac..ae8c96aff94 100644 --- a/src/server/game/Grids/Notifiers/GridNotifiers.h +++ b/src/server/game/Grids/Notifiers/GridNotifiers.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/Notifiers/GridNotifiersImpl.h b/src/server/game/Grids/Notifiers/GridNotifiersImpl.h index e73f18abf90..30c5e523f21 100644 --- a/src/server/game/Grids/Notifiers/GridNotifiersImpl.h +++ b/src/server/game/Grids/Notifiers/GridNotifiersImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/ObjectGridLoader.cpp b/src/server/game/Grids/ObjectGridLoader.cpp index 1b95253f7cf..398077e3a22 100644 --- a/src/server/game/Grids/ObjectGridLoader.cpp +++ b/src/server/game/Grids/ObjectGridLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Grids/ObjectGridLoader.h b/src/server/game/Grids/ObjectGridLoader.h index 1f351c6a0ba..778bb531e89 100644 --- a/src/server/game/Grids/ObjectGridLoader.h +++ b/src/server/game/Grids/ObjectGridLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Groups/Group.cpp b/src/server/game/Groups/Group.cpp index 88cc2b54388..0bc69fc7183 100644 --- a/src/server/game/Groups/Group.cpp +++ b/src/server/game/Groups/Group.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -1669,7 +1669,7 @@ void Group::OfflineReadyCheck() Player* player = ObjectAccessor::FindConnectedPlayer(citr->guid); if (!player || !player->GetSession()) { - WorldPacket data(MSG_RAID_READY_CHECK_CONFIRM, 9); + WorldPacket data(SMSG_RAID_READY_CHECK_CONFIRM, 9); data << citr->guid; data << uint8(0); BroadcastReadyCheck(&data); diff --git a/src/server/game/Groups/Group.h b/src/server/game/Groups/Group.h index 6216b7323b0..538be5ea508 100644 --- a/src/server/game/Groups/Group.h +++ b/src/server/game/Groups/Group.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Groups/GroupMgr.cpp b/src/server/game/Groups/GroupMgr.cpp index bb800fccbd8..217a2dfd442 100644 --- a/src/server/game/Groups/GroupMgr.cpp +++ b/src/server/game/Groups/GroupMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Groups/GroupMgr.h b/src/server/game/Groups/GroupMgr.h index 74cbbf8df35..6aafe77432c 100644 --- a/src/server/game/Groups/GroupMgr.h +++ b/src/server/game/Groups/GroupMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Groups/GroupRefManager.h b/src/server/game/Groups/GroupRefManager.h index 8c7e302cf5e..afb32e1657f 100644 --- a/src/server/game/Groups/GroupRefManager.h +++ b/src/server/game/Groups/GroupRefManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Groups/GroupReference.cpp b/src/server/game/Groups/GroupReference.cpp index 4dda580bd5f..0567ab652fa 100644 --- a/src/server/game/Groups/GroupReference.cpp +++ b/src/server/game/Groups/GroupReference.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Groups/GroupReference.h b/src/server/game/Groups/GroupReference.h index dc8480e9463..5eded9e0594 100644 --- a/src/server/game/Groups/GroupReference.h +++ b/src/server/game/Groups/GroupReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Guilds/Guild.cpp b/src/server/game/Guilds/Guild.cpp index bd9b05e35bc..7d7f68e87e9 100644 --- a/src/server/game/Guilds/Guild.cpp +++ b/src/server/game/Guilds/Guild.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Guilds/Guild.h b/src/server/game/Guilds/Guild.h index 132ecc72f89..971ead81c3a 100644 --- a/src/server/game/Guilds/Guild.h +++ b/src/server/game/Guilds/Guild.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Guilds/GuildFinderMgr.cpp b/src/server/game/Guilds/GuildFinderMgr.cpp index 40e2bc1613e..45364a4bae0 100644 --- a/src/server/game/Guilds/GuildFinderMgr.cpp +++ b/src/server/game/Guilds/GuildFinderMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Guilds/GuildFinderMgr.h b/src/server/game/Guilds/GuildFinderMgr.h index 763d9285b31..377af655aeb 100644 --- a/src/server/game/Guilds/GuildFinderMgr.h +++ b/src/server/game/Guilds/GuildFinderMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Guilds/GuildMgr.cpp b/src/server/game/Guilds/GuildMgr.cpp index 91d8499cdc9..3829f534d52 100644 --- a/src/server/game/Guilds/GuildMgr.cpp +++ b/src/server/game/Guilds/GuildMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Guilds/GuildMgr.h b/src/server/game/Guilds/GuildMgr.h index f91629f04e8..4753194546c 100644 --- a/src/server/game/Guilds/GuildMgr.h +++ b/src/server/game/Guilds/GuildMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Handlers/ArenaTeamHandler.cpp b/src/server/game/Handlers/ArenaTeamHandler.cpp index 8598085d65d..f5546c28a2b 100644 --- a/src/server/game/Handlers/ArenaTeamHandler.cpp +++ b/src/server/game/Handlers/ArenaTeamHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/AuctionHouseHandler.cpp b/src/server/game/Handlers/AuctionHouseHandler.cpp index 70474f593b9..0cabbf3f220 100644 --- a/src/server/game/Handlers/AuctionHouseHandler.cpp +++ b/src/server/game/Handlers/AuctionHouseHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/AuthHandler.cpp b/src/server/game/Handlers/AuthHandler.cpp index 921ed6eeecc..e353279ad57 100644 --- a/src/server/game/Handlers/AuthHandler.cpp +++ b/src/server/game/Handlers/AuthHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Handlers/BattleGroundHandler.cpp b/src/server/game/Handlers/BattleGroundHandler.cpp index 5104be43e59..8ec6779f2bb 100644 --- a/src/server/game/Handlers/BattleGroundHandler.cpp +++ b/src/server/game/Handlers/BattleGroundHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/BattlefieldHandler.cpp b/src/server/game/Handlers/BattlefieldHandler.cpp index 14928e1efdc..1503e1fb091 100644 --- a/src/server/game/Handlers/BattlefieldHandler.cpp +++ b/src/server/game/Handlers/BattlefieldHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Handlers/CalendarHandler.cpp b/src/server/game/Handlers/CalendarHandler.cpp index ed4429ebaa3..457f2ae2faf 100644 --- a/src/server/game/Handlers/CalendarHandler.cpp +++ b/src/server/game/Handlers/CalendarHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/ChannelHandler.cpp b/src/server/game/Handlers/ChannelHandler.cpp index c6cd5337c5b..c5e1c3e7fad 100644 --- a/src/server/game/Handlers/ChannelHandler.cpp +++ b/src/server/game/Handlers/ChannelHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -70,270 +70,72 @@ void WorldSession::HandleLeaveChannel(WorldPackets::Channel::LeaveChannel& packe } } -void WorldSession::HandleChannelList(WorldPackets::Channel::ChannelListRequest& packet) +template<void(Channel::*CommandFunction)(Player const*)> +void WorldSession::HandleChannelCommand(WorldPackets::Channel::ChannelPlayerCommand& packet) { TC_LOG_DEBUG("chat.system", "%s %s ChannelName: %s", GetOpcodeNameForLogging(packet.GetOpcode()).c_str(), GetPlayerInfo().c_str(), packet.ChannelName.c_str()); if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) if (Channel* channel = cMgr->GetChannel(packet.ChannelName, GetPlayer())) - channel->List(GetPlayer()); + (channel->*CommandFunction)(GetPlayer()); } -void WorldSession::HandleChannelPassword(WorldPacket& recvPacket) +template<void(Channel::*CommandFunction)(Player const*, std::string const&)> +void WorldSession::HandleChannelPlayerCommand(WorldPackets::Channel::ChannelPlayerCommand& packet) { - uint32 nameLength = recvPacket.ReadBits(8); - uint32 passLength = recvPacket.ReadBits(7); - - std::string channelName = recvPacket.ReadString(nameLength); - std::string password = recvPacket.ReadString(passLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_PASSWORD %s Channel: %s, Password: %s", - GetPlayerInfo().c_str(), channelName.c_str(), password.c_str()); - - if (password.length() > MAX_CHANNEL_PASS_STR) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->Password(GetPlayer(), password); -} - -void WorldSession::HandleChannelSetOwner(WorldPacket& recvPacket) -{ - uint32 channelLength = recvPacket.ReadBits(8); - uint32 nameLength = recvPacket.ReadBits(7); - - std::string targetName = recvPacket.ReadString(nameLength); - std::string channelName = recvPacket.ReadString(channelLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_SET_OWNER %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->SetOwner(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelOwner(WorldPacket& recvPacket) -{ - uint32 length = recvPacket.ReadBits(8); - std::string channelName = recvPacket.ReadString(length); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_OWNER %s Channel: %s", - GetPlayerInfo().c_str(), channelName.c_str()); - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->SendWhoOwner(GetPlayer()); -} - -void WorldSession::HandleChannelModerator(WorldPacket& recvPacket) -{ - uint32 channelLength = recvPacket.ReadBits(8); - uint32 nameLength = recvPacket.ReadBits(7); - - std::string targetName = recvPacket.ReadString(nameLength); - std::string channelName = recvPacket.ReadString(channelLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_MODERATOR %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->SetModerator(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelUnmoderator(WorldPacket& recvPacket) -{ - uint32 nameLength = recvPacket.ReadBits(7); - uint32 channelLength = recvPacket.ReadBits(8); - - std::string channelName = recvPacket.ReadString(channelLength); - std::string targetName = recvPacket.ReadString(nameLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_UNMODERATOR %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->UnsetModerator(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelMute(WorldPacket& recvPacket) -{ - uint32 channelLength = recvPacket.ReadBits(8); - uint32 nameLength = recvPacket.ReadBits(7); - - std::string channelName = recvPacket.ReadString(channelLength); - std::string targetName = recvPacket.ReadString(nameLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_MUTE %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->SetMute(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelUnmute(WorldPacket& recvPacket) -{ - uint32 nameLength = recvPacket.ReadBits(8); - uint32 channelLength = recvPacket.ReadBits(7); - - std::string targetName = recvPacket.ReadString(nameLength); - std::string channelName = recvPacket.ReadString(channelLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_UNMUTE %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->UnsetMute(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelInvite(WorldPacket& recvPacket) -{ - uint32 nameLength = recvPacket.ReadBits(7); - uint32 channelLength = recvPacket.ReadBits(8); - - std::string targetName = recvPacket.ReadString(nameLength); - std::string channelName = recvPacket.ReadString(channelLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_INVITE %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->Invite(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelKick(WorldPacket& recvPacket) -{ - uint32 channelLength = recvPacket.ReadBits(8); - uint32 nameLength = recvPacket.ReadBits(7); - - std::string channelName = recvPacket.ReadString(channelLength); - std::string targetName = recvPacket.ReadString(nameLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_KICK %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) - return; - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->Kick(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelBan(WorldPacket& recvPacket) -{ - uint32 channelLength, nameLength; - std::string channelName, targetName; - - channelLength = recvPacket.ReadBits(8); - nameLength = recvPacket.ReadBits(7); - - targetName = recvPacket.ReadString(nameLength); - channelName = recvPacket.ReadString(channelLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_BAN %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); - - if (!normalizePlayerName(targetName)) + if (packet.Name.length() >= MAX_CHANNEL_NAME_STR) + { + TC_LOG_DEBUG("chat.system", "%s %s ChannelName: %s, Name: %s, Name too long.", + GetOpcodeNameForLogging(packet.GetOpcode()).c_str(), GetPlayerInfo().c_str(), packet.ChannelName.c_str(), packet.Name.c_str()); return; + } - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->Ban(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelUnban(WorldPacket& recvPacket) -{ - uint32 channelLength = recvPacket.ReadBits(7); - uint32 nameLength = recvPacket.ReadBits(8); - - std::string targetName = recvPacket.ReadString(nameLength); - std::string channelName = recvPacket.ReadString(channelLength); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_UNBAN %s Channel: %s, Target: %s", - GetPlayerInfo().c_str(), channelName.c_str(), targetName.c_str()); + TC_LOG_DEBUG("chat.system", "%s %s ChannelName: %s, Name: %s", + GetOpcodeNameForLogging(packet.GetOpcode()).c_str(), GetPlayerInfo().c_str(), packet.ChannelName.c_str(), packet.Name.c_str()); - if (!normalizePlayerName(targetName)) + if (!normalizePlayerName(packet.Name)) return; if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->UnBan(GetPlayer(), targetName); -} - -void WorldSession::HandleChannelAnnouncements(WorldPacket& recvPacket) -{ - uint32 length = recvPacket.ReadBits(8); - std::string channelName = recvPacket.ReadString(length); - - TC_LOG_DEBUG("chat.system", "CMSG_CHANNEL_ANNOUNCEMENTS %s Channel: %s", - GetPlayerInfo().c_str(), channelName.c_str()); - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->Announce(GetPlayer()); + if (Channel* channel = cMgr->GetChannel(packet.ChannelName, GetPlayer())) + (channel->*CommandFunction)(GetPlayer(), packet.Name); } -void WorldSession::HandleGetChannelMemberCount(WorldPacket &recvPacket) +template<> +void WorldSession::HandleChannelPlayerCommand<&Channel::Password>(WorldPackets::Channel::ChannelPlayerCommand& packet) { - std::string channelName; - recvPacket >> channelName; - - TC_LOG_DEBUG("chat.system", "CMSG_GET_CHANNEL_MEMBER_COUNT %s Channel: %s", - GetPlayerInfo().c_str(), channelName.c_str()); - - if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) + if (packet.Name.length() > MAX_CHANNEL_PASS_STR) { - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - { - TC_LOG_DEBUG("chat.system", "SMSG_CHANNEL_MEMBER_COUNT %s Channel: %s Count: %u", - GetPlayerInfo().c_str(), channelName.c_str(), channel->GetNumPlayers()); - - WorldPacket data(SMSG_CHANNEL_MEMBER_COUNT, channel->GetName().size() + 1 + 4); - data << channel->GetName(); - data << uint8(channel->GetFlags()); - data << uint32(channel->GetNumPlayers()); - SendPacket(&data); - } + TC_LOG_DEBUG("chat.system", "%s %s ChannelName: %s, Password: %s, Password too long.", + GetOpcodeNameForLogging(packet.GetOpcode()).c_str(), GetPlayerInfo().c_str(), packet.ChannelName.c_str(), packet.Name.c_str()); + return; } -} - -void WorldSession::HandleSetChannelWatch(WorldPacket& recvPacket) -{ - std::string channelName; - recvPacket >> channelName; - TC_LOG_DEBUG("chat.system", "CMSG_SET_CHANNEL_WATCH %s Channel: %s", - GetPlayerInfo().c_str(), channelName.c_str()); + TC_LOG_DEBUG("chat.system", "%s %s ChannelName: %s, Password: %s", + GetOpcodeNameForLogging(packet.GetOpcode()).c_str(), GetPlayerInfo().c_str(), packet.ChannelName.c_str(), packet.Name.c_str()); - /* - if (ChannelMgr* cMgr = channelMgr(GetPlayer()->GetTeam())) - if (Channel* channel = cMgr->GetChannel(channelName, GetPlayer())) - channel->JoinNotify(GetPlayer()); - */ -} + if (ChannelMgr* cMgr = ChannelMgr::ForTeam(GetPlayer()->GetTeam())) + if (Channel* channel = cMgr->GetChannel(packet.ChannelName, GetPlayer())) + channel->Password(GetPlayer(), packet.Name); +} + +template void WorldSession::HandleChannelCommand<&Channel::Announce>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::Ban>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelCommand<&Channel::DeclineInvite>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::Invite>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::Kick>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelCommand<&Channel::List>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::SetModerator>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::SetMute>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelCommand<&Channel::SendWhoOwner>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::SetOwner>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::SilenceAll>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::SilenceVoice>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::UnBan>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::UnsetModerator>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::UnsetMute>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::UnsilenceAll>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelPlayerCommand<&Channel::UnsilenceVoice>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelCommand<&Channel::DeVoice>(WorldPackets::Channel::ChannelPlayerCommand&); +template void WorldSession::HandleChannelCommand<&Channel::Voice>(WorldPackets::Channel::ChannelPlayerCommand&); diff --git a/src/server/game/Handlers/CharacterHandler.cpp b/src/server/game/Handlers/CharacterHandler.cpp index be7d83fa9d7..de074443a39 100644 --- a/src/server/game/Handlers/CharacterHandler.cpp +++ b/src/server/game/Handlers/CharacterHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/ChatHandler.cpp b/src/server/game/Handlers/ChatHandler.cpp index e3d6e47e3a6..5489dce0761 100644 --- a/src/server/game/Handlers/ChatHandler.cpp +++ b/src/server/game/Handlers/ChatHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -626,11 +626,6 @@ void WorldSession::HandleChatIgnoredOpcode(WorldPacket& recvData) player->SendDirectMessage(packet.Write()); } -void WorldSession::HandleChannelDeclineInvite(WorldPacket &recvPacket) -{ - TC_LOG_DEBUG("network", "Opcode %u", recvPacket.GetOpcode()); -} - void WorldSession::SendPlayerNotFoundNotice(std::string const& name) { WorldPacket data(SMSG_CHAT_PLAYER_NOT_FOUND, name.size()+1); diff --git a/src/server/game/Handlers/CombatHandler.cpp b/src/server/game/Handlers/CombatHandler.cpp index deac92d1b0b..13115da3df3 100644 --- a/src/server/game/Handlers/CombatHandler.cpp +++ b/src/server/game/Handlers/CombatHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/DuelHandler.cpp b/src/server/game/Handlers/DuelHandler.cpp index 6bb0c78aed9..8f47bcf3e13 100644 --- a/src/server/game/Handlers/DuelHandler.cpp +++ b/src/server/game/Handlers/DuelHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/GroupHandler.cpp b/src/server/game/Handlers/GroupHandler.cpp index 07258fbd976..97b25d5fc1b 100644 --- a/src/server/game/Handlers/GroupHandler.cpp +++ b/src/server/game/Handlers/GroupHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -696,7 +696,7 @@ void WorldSession::HandleMinimapPingOpcode(WorldPacket& recvData) void WorldSession::HandleRandomRollOpcode(WorldPacket& recvData) { - TC_LOG_DEBUG("network", "WORLD: Received MSG_RANDOM_ROLL"); + TC_LOG_DEBUG("network", "WORLD: Received CMSG_RANDOM_ROLL"); uint32 minimum, maximum, roll; recvData >> minimum; @@ -712,7 +712,7 @@ void WorldSession::HandleRandomRollOpcode(WorldPacket& recvData) //TC_LOG_DEBUG("misc", "ROLL: MIN: %u, MAX: %u, ROLL: %u", minimum, maximum, roll); - WorldPacket data(MSG_RANDOM_ROLL, 4+4+4+8); + WorldPacket data(SMSG_RANDOM_ROLL, 4+4+4+8); data << uint32(minimum); data << uint32(maximum); data << uint32(roll); @@ -931,7 +931,7 @@ void WorldSession::HandleRaidReadyCheckOpcode(WorldPacket& recvData) recvData >> state; // everything's fine, do it - WorldPacket data(MSG_RAID_READY_CHECK_CONFIRM, 9); + WorldPacket data(SMSG_RAID_READY_CHECK_CONFIRM, 9); data << GetPlayer()->GetGUID(); data << uint8(state); group->BroadcastReadyCheck(&data); diff --git a/src/server/game/Handlers/GuildFinderHandler.cpp b/src/server/game/Handlers/GuildFinderHandler.cpp index 9091bed97ad..663a4188e4e 100644 --- a/src/server/game/Handlers/GuildFinderHandler.cpp +++ b/src/server/game/Handlers/GuildFinderHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Handlers/GuildHandler.cpp b/src/server/game/Handlers/GuildHandler.cpp index 23078ea5fc9..be564135b86 100644 --- a/src/server/game/Handlers/GuildHandler.cpp +++ b/src/server/game/Handlers/GuildHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/ItemHandler.cpp b/src/server/game/Handlers/ItemHandler.cpp index 4bfeed3ef23..6745299b195 100644 --- a/src/server/game/Handlers/ItemHandler.cpp +++ b/src/server/game/Handlers/ItemHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -30,86 +30,84 @@ #include "DB2Stores.h" #include "NPCPackets.h" #include "ItemPackets.h" -#include <vector> void WorldSession::HandleSplitItemOpcode(WorldPackets::Item::SplitItem& splitItem) { - if (splitItem.itemCount) + if (!splitItem.Inv.Items.empty()) { - TC_LOG_ERROR("network", "WORLD: HandleSplitItemOpcode - Invalid itemCount (%u)", splitItem.itemCount); + TC_LOG_ERROR("network", "HandleSplitItemOpcode - Invalid ItemCount (" SZFMTD ")", splitItem.Inv.Items.size()); return; } - //TC_LOG_DEBUG("network", "WORLD: CMSG_SPLIT_ITEM"); + TC_LOG_DEBUG("network", "HandleSplitItemOpcode: receive FromPackSlot: %u, FromSlot: %u, ToPackSlot: %u, ToSlot: %u, Quantity: %u", + splitItem.FromPackSlot, splitItem.FromSlot, splitItem.ToPackSlot, splitItem.ToSlot, splitItem.Quantity); - TC_LOG_DEBUG("network", "STORAGE: receive srcbag = %u, srcslot = %u, dstbag = %u, dstslot = %u, count = %u", splitItem.srcbag, splitItem.srcslot, splitItem.dstbag, splitItem.dstslot, splitItem.count); - - uint16 src = ((splitItem.srcbag << 8) | splitItem.srcslot); - uint16 dst = ((splitItem.dstbag << 8) | splitItem.dstslot); + uint16 src = ((splitItem.FromPackSlot << 8) | splitItem.FromSlot); + uint16 dst = ((splitItem.ToPackSlot << 8) | splitItem.ToSlot); if (src == dst) return; - if (splitItem.count == 0) - return; //check count - if zero it's fake packet + // check count - if zero it's fake packet + if (!splitItem.Quantity) + return; - if (!_player->IsValidPos(splitItem.srcbag, splitItem.srcslot, true)) + if (!_player->IsValidPos(splitItem.FromPackSlot, splitItem.FromSlot, true)) { - _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL); + _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND); return; } - if (!_player->IsValidPos(splitItem.dstbag, splitItem.dstslot, false)) // can be autostore pos + if (!_player->IsValidPos(splitItem.ToPackSlot, splitItem.ToSlot, false)) // can be autostore pos { - _player->SendEquipError(EQUIP_ERR_WRONG_SLOT, NULL, NULL); + _player->SendEquipError(EQUIP_ERR_WRONG_SLOT); return; } - _player->SplitItem(src, dst, splitItem.count); + _player->SplitItem(src, dst, splitItem.Quantity); } void WorldSession::HandleSwapInvItemOpcode(WorldPackets::Item::SwapInvItem& swapInvItem) { - if (swapInvItem.itemCount != 2) + if (swapInvItem.Inv.Items.size() != 2) { - TC_LOG_ERROR("network", "WORLD: HandleSwapInvItemOpcode - Invalid itemCount (%u)", swapInvItem.itemCount); + TC_LOG_ERROR("network", "HandleSwapInvItemOpcode - Invalid itemCount (" SZFMTD ")", swapInvItem.Inv.Items.size()); return; } - //TC_LOG_DEBUG("network", "WORLD: CMSG_SWAP_INV_ITEM"); - - TC_LOG_DEBUG("network", "STORAGE: receive srcslot = %u, dstslot = %u", swapInvItem.srcslot, swapInvItem.dstslot); + TC_LOG_DEBUG("network", "HandleSwapInvItemOpcode: receive Slot1: %u, Slot2: %u", + swapInvItem.Slot1, swapInvItem.Slot2); // prevent attempt swap same item to current position generated by client at special checting sequence - if (swapInvItem.srcslot == swapInvItem.dstslot) + if (swapInvItem.Slot1 == swapInvItem.Slot2) return; - if (!_player->IsValidPos(INVENTORY_SLOT_BAG_0, swapInvItem.srcslot, true)) + if (!_player->IsValidPos(INVENTORY_SLOT_BAG_0, swapInvItem.Slot1, true)) { - _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL); + _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND); return; } - if (!_player->IsValidPos(INVENTORY_SLOT_BAG_0, swapInvItem.dstslot, true)) + if (!_player->IsValidPos(INVENTORY_SLOT_BAG_0, swapInvItem.Slot2, true)) { - _player->SendEquipError(EQUIP_ERR_WRONG_SLOT, NULL, NULL); + _player->SendEquipError(EQUIP_ERR_WRONG_SLOT); return; } - if (_player->IsBankPos(INVENTORY_SLOT_BAG_0, swapInvItem.srcslot) && !CanUseBank()) + if (_player->IsBankPos(INVENTORY_SLOT_BAG_0, swapInvItem.Slot1) && !CanUseBank()) { - TC_LOG_DEBUG("network", "WORLD: HandleSwapInvItemOpcode - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); + TC_LOG_DEBUG("network", "HandleSwapInvItemOpcode - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); return; } - if (_player->IsBankPos(INVENTORY_SLOT_BAG_0, swapInvItem.dstslot) && !CanUseBank()) + if (_player->IsBankPos(INVENTORY_SLOT_BAG_0, swapInvItem.Slot2) && !CanUseBank()) { - TC_LOG_DEBUG("network", "WORLD: HandleSwapInvItemOpcode - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); + TC_LOG_DEBUG("network", "HandleSwapInvItemOpcode - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); return; } - uint16 src = ((INVENTORY_SLOT_BAG_0 << 8) | swapInvItem.srcslot); - uint16 dst = ((INVENTORY_SLOT_BAG_0 << 8) | swapInvItem.dstslot); + uint16 src = ((INVENTORY_SLOT_BAG_0 << 8) | swapInvItem.Slot1); + uint16 dst = ((INVENTORY_SLOT_BAG_0 << 8) | swapInvItem.Slot2); _player->SwapItem(src, dst); } @@ -135,44 +133,43 @@ void WorldSession::HandleAutoEquipItemSlotOpcode(WorldPacket& recvData) void WorldSession::HandleSwapItem(WorldPackets::Item::SwapItem& swapItem) { - if (swapItem.itemCount != 2) + if (swapItem.Inv.Items.size() != 2) { - TC_LOG_ERROR("network", "WORLD: HandleSwapItem - Invalid itemCount (%u)", swapItem.itemCount); + TC_LOG_ERROR("network", "HandleSwapItem - Invalid itemCount (" SZFMTD ")", swapItem.Inv.Items.size()); return; } - //TC_LOG_DEBUG("network", "WORLD: CMSG_SWAP_ITEM"); - - TC_LOG_DEBUG("network", "STORAGE: receive srcbag = %u, srcslot = %u, dstbag = %u, dstslot = %u", swapItem.srcbag, swapItem.srcslot, swapItem.dstbag, swapItem.dstslot); + TC_LOG_DEBUG("network", "HandleSwapItem: receive ContainerSlotA: %u, SlotA: %u, ContainerSlotB: %u, SlotB: %u", + swapItem.ContainerSlotA, swapItem.SlotA, swapItem.ContainerSlotB, swapItem.SlotB); - uint16 src = ((swapItem.srcbag << 8) | swapItem.srcslot); - uint16 dst = ((swapItem.dstbag << 8) | swapItem.dstslot); + uint16 src = ((swapItem.ContainerSlotA << 8) | swapItem.SlotA); + uint16 dst = ((swapItem.ContainerSlotB << 8) | swapItem.SlotB); // prevent attempt swap same item to current position generated by client at special checting sequence if (src == dst) return; - if (!_player->IsValidPos(swapItem.srcbag, swapItem.srcslot, true)) + if (!_player->IsValidPos(swapItem.ContainerSlotA, swapItem.SlotA, true)) { - _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL); + _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND); return; } - if (!_player->IsValidPos(swapItem.dstbag, swapItem.dstslot, true)) + if (!_player->IsValidPos(swapItem.ContainerSlotB, swapItem.SlotB, true)) { - _player->SendEquipError(EQUIP_ERR_WRONG_SLOT, NULL, NULL); + _player->SendEquipError(EQUIP_ERR_WRONG_SLOT); return; } - if (_player->IsBankPos(swapItem.srcbag, swapItem.srcslot) && !CanUseBank()) + if (_player->IsBankPos(swapItem.ContainerSlotA, swapItem.SlotA) && !CanUseBank()) { - TC_LOG_DEBUG("network", "WORLD: HandleSwapItem - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); + TC_LOG_DEBUG("network", "HandleSwapItem - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); return; } - if (_player->IsBankPos(swapItem.dstbag, swapItem.dstslot) && !CanUseBank()) + if (_player->IsBankPos(swapItem.ContainerSlotB, swapItem.SlotB) && !CanUseBank()) { - TC_LOG_DEBUG("network", "WORLD: HandleSwapItem - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); + TC_LOG_DEBUG("network", "HandleSwapItem - Unit (%s) not found or you can't interact with him.", m_currentBankerGUID.ToString().c_str()); return; } @@ -181,48 +178,47 @@ void WorldSession::HandleSwapItem(WorldPackets::Item::SwapItem& swapItem) void WorldSession::HandleAutoEquipItemOpcode(WorldPackets::Item::AutoEquipItem& autoEquipItem) { - if (autoEquipItem.itemCount != 1) + if (autoEquipItem.Inv.Items.size() != 1) { - TC_LOG_ERROR("network", "WORLD: HandleAutoEquipItemOpcode - Invalid itemCount (%u)", autoEquipItem.itemCount); + TC_LOG_ERROR("network", "HandleAutoEquipItemOpcode - Invalid itemCount (" SZFMTD ")", autoEquipItem.Inv.Items.size()); return; } - //TC_LOG_DEBUG("network", "WORLD: CMSG_AUTOEQUIP_ITEM"); + TC_LOG_DEBUG("network", "HandleAutoEquipItemOpcode: receive PackSlot: %u, Slot: %u", + autoEquipItem.PackSlot, autoEquipItem.Slot); - TC_LOG_DEBUG("network", "STORAGE: receive srcbag = %u, srcslot = %u", autoEquipItem.srcbag, autoEquipItem.srcslot); - - Item* pSrcItem = _player->GetItemByPos(autoEquipItem.srcbag, autoEquipItem.srcslot); - if (!pSrcItem) - return; // only at cheat + Item* srcItem = _player->GetItemByPos(autoEquipItem.PackSlot, autoEquipItem.Slot); + if (!srcItem) + return; // only at cheat uint16 dest; - InventoryResult msg = _player->CanEquipItem(NULL_SLOT, dest, pSrcItem, !pSrcItem->IsBag()); + InventoryResult msg = _player->CanEquipItem(NULL_SLOT, dest, srcItem, !srcItem->IsBag()); if (msg != EQUIP_ERR_OK) { - _player->SendEquipError(msg, pSrcItem, NULL); + _player->SendEquipError(msg, srcItem); return; } - uint16 src = pSrcItem->GetPos(); - if (dest == src) // prevent equip in same slot, only at cheat + uint16 src = srcItem->GetPos(); + if (dest == src) // prevent equip in same slot, only at cheat return; - Item* pDstItem = _player->GetItemByPos(dest); - if (!pDstItem) // empty slot, simple case + Item* dstItem = _player->GetItemByPos(dest); + if (!dstItem) // empty slot, simple case { - _player->RemoveItem(autoEquipItem.srcbag, autoEquipItem.srcslot, true); - _player->EquipItem(dest, pSrcItem, true); + _player->RemoveItem(autoEquipItem.PackSlot, autoEquipItem.Slot, true); + _player->EquipItem(dest, srcItem, true); _player->AutoUnequipOffhandIfNeed(); } else // have currently equipped item, not simple case { - uint8 dstbag = pDstItem->GetBagSlot(); - uint8 dstslot = pDstItem->GetSlot(); + uint8 dstbag = dstItem->GetBagSlot(); + uint8 dstslot = dstItem->GetSlot(); - msg = _player->CanUnequipItem(dest, !pSrcItem->IsBag()); + msg = _player->CanUnequipItem(dest, !srcItem->IsBag()); if (msg != EQUIP_ERR_OK) { - _player->SendEquipError(msg, pDstItem, NULL); + _player->SendEquipError(msg, dstItem); return; } @@ -231,47 +227,47 @@ void WorldSession::HandleAutoEquipItemOpcode(WorldPackets::Item::AutoEquipItem& uint16 eSrc = 0; if (_player->IsInventoryPos(src)) { - msg = _player->CanStoreItem(autoEquipItem.srcbag, autoEquipItem.srcslot, sSrc, pDstItem, true); + msg = _player->CanStoreItem(autoEquipItem.PackSlot, autoEquipItem.Slot, sSrc, dstItem, true); if (msg != EQUIP_ERR_OK) - msg = _player->CanStoreItem(autoEquipItem.srcbag, NULL_SLOT, sSrc, pDstItem, true); + msg = _player->CanStoreItem(autoEquipItem.PackSlot, NULL_SLOT, sSrc, dstItem, true); if (msg != EQUIP_ERR_OK) - msg = _player->CanStoreItem(NULL_BAG, NULL_SLOT, sSrc, pDstItem, true); + msg = _player->CanStoreItem(NULL_BAG, NULL_SLOT, sSrc, dstItem, true); } else if (_player->IsBankPos(src)) { - msg = _player->CanBankItem(autoEquipItem.srcbag, autoEquipItem.srcslot, sSrc, pDstItem, true); + msg = _player->CanBankItem(autoEquipItem.PackSlot, autoEquipItem.Slot, sSrc, dstItem, true); if (msg != EQUIP_ERR_OK) - msg = _player->CanBankItem(autoEquipItem.srcbag, NULL_SLOT, sSrc, pDstItem, true); + msg = _player->CanBankItem(autoEquipItem.PackSlot, NULL_SLOT, sSrc, dstItem, true); if (msg != EQUIP_ERR_OK) - msg = _player->CanBankItem(NULL_BAG, NULL_SLOT, sSrc, pDstItem, true); + msg = _player->CanBankItem(NULL_BAG, NULL_SLOT, sSrc, dstItem, true); } else if (_player->IsEquipmentPos(src)) { - msg = _player->CanEquipItem(autoEquipItem.srcslot, eSrc, pDstItem, true); + msg = _player->CanEquipItem(autoEquipItem.Slot, eSrc, dstItem, true); if (msg == EQUIP_ERR_OK) msg = _player->CanUnequipItem(eSrc, true); } if (msg != EQUIP_ERR_OK) { - _player->SendEquipError(msg, pDstItem, pSrcItem); + _player->SendEquipError(msg, dstItem, srcItem); return; } // now do moves, remove... _player->RemoveItem(dstbag, dstslot, false); - _player->RemoveItem(autoEquipItem.srcbag, autoEquipItem.srcslot, false); + _player->RemoveItem(autoEquipItem.PackSlot, autoEquipItem.Slot, false); // add to dest - _player->EquipItem(dest, pSrcItem, true); + _player->EquipItem(dest, srcItem, true); // add to src if (_player->IsInventoryPos(src)) - _player->StoreItem(sSrc, pDstItem, true); + _player->StoreItem(sSrc, dstItem, true); else if (_player->IsBankPos(src)) - _player->BankItem(sSrc, pDstItem, true); + _player->BankItem(sSrc, dstItem, true); else if (_player->IsEquipmentPos(src)) - _player->EquipItem(eSrc, pDstItem, true); + _player->EquipItem(eSrc, dstItem, true); _player->AutoUnequipOffhandIfNeed(); } @@ -279,11 +275,10 @@ void WorldSession::HandleAutoEquipItemOpcode(WorldPackets::Item::AutoEquipItem& void WorldSession::HandleDestroyItemOpcode(WorldPackets::Item::DestroyItem& destroyItem) { - //TC_LOG_DEBUG("network", "WORLD: CMSG_DESTROY_ITEM"); - - TC_LOG_DEBUG("network", "STORAGE: receive bag = %u, slot = %u, count = %u", destroyItem.bag, destroyItem.slot, destroyItem.count); + TC_LOG_DEBUG("network", "HandleDestroyItemOpcode: receive ContainerId: %u, SlotNum: %u, Count: %u", + destroyItem.ContainerId, destroyItem.SlotNum, destroyItem.Count); - uint16 pos = (destroyItem.bag << 8) | destroyItem.slot; + uint16 pos = (destroyItem.ContainerId << 8) | destroyItem.SlotNum; // prevent drop unequipable items (in combat, for example) and non-empty bags if (_player->IsEquipmentPos(pos) || _player->IsBagPos(pos)) @@ -291,31 +286,31 @@ void WorldSession::HandleDestroyItemOpcode(WorldPackets::Item::DestroyItem& dest InventoryResult msg = _player->CanUnequipItem(pos, false); if (msg != EQUIP_ERR_OK) { - _player->SendEquipError(msg, _player->GetItemByPos(pos), NULL); + _player->SendEquipError(msg, _player->GetItemByPos(pos)); return; } } - Item* pItem = _player->GetItemByPos(destroyItem.bag, destroyItem.slot); - if (!pItem) + Item* item = _player->GetItemByPos(destroyItem.ContainerId, destroyItem.SlotNum); + if (!item) { - _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND, NULL, NULL); + _player->SendEquipError(EQUIP_ERR_ITEM_NOT_FOUND); return; } - if (pItem->GetTemplate()->GetFlags() & ITEM_PROTO_FLAG_INDESTRUCTIBLE) + if (item->GetTemplate()->GetFlags() & ITEM_PROTO_FLAG_INDESTRUCTIBLE) { _player->SendEquipError(EQUIP_ERR_DROP_BOUND_ITEM, NULL, NULL); return; } - if (destroyItem.count) + if (destroyItem.Count) { - uint32 i_count = destroyItem.count; - _player->DestroyItemCount(pItem, i_count, true); + uint32 i_count = destroyItem.Count; + _player->DestroyItemCount(item, i_count, true); } else - _player->DestroyItem(destroyItem.bag, destroyItem.slot, true); + _player->DestroyItem(destroyItem.ContainerId, destroyItem.SlotNum, true); } void WorldSession::HandleReadItem(WorldPacket& recvData) diff --git a/src/server/game/Handlers/LFGHandler.cpp b/src/server/game/Handlers/LFGHandler.cpp index eda60827a8d..cae63fb7ca4 100644 --- a/src/server/game/Handlers/LFGHandler.cpp +++ b/src/server/game/Handlers/LFGHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Handlers/LootHandler.cpp b/src/server/game/Handlers/LootHandler.cpp index 2f00c9afc89..91353104be4 100644 --- a/src/server/game/Handlers/LootHandler.cpp +++ b/src/server/game/Handlers/LootHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/MailHandler.cpp b/src/server/game/Handlers/MailHandler.cpp index 5cf8b32dd1f..bb45d4d8718 100644 --- a/src/server/game/Handlers/MailHandler.cpp +++ b/src/server/game/Handlers/MailHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Handlers/MiscHandler.cpp b/src/server/game/Handlers/MiscHandler.cpp index c27def4a82c..1d5107b6b67 100644 --- a/src/server/game/Handlers/MiscHandler.cpp +++ b/src/server/game/Handlers/MiscHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -839,33 +839,30 @@ void WorldSession::SendAreaTriggerMessage(const char* Text, ...) SendPacket(&data); } -void WorldSession::HandleAreaTriggerOpcode(WorldPacket& recvData) +void WorldSession::HandleAreaTriggerOpcode(WorldPackets::Misc::AreaTrigger& packet) { - uint32 triggerId; - recvData >> triggerId; - - TC_LOG_DEBUG("network", "CMSG_AREATRIGGER. Trigger ID: %u", triggerId); + TC_LOG_DEBUG("network", "CMSG_AREATRIGGER. Trigger ID: %u", packet.AreaTriggerID); Player* player = GetPlayer(); if (player->IsInFlight()) { TC_LOG_DEBUG("network", "HandleAreaTriggerOpcode: Player '%s' (%s) in flight, ignore Area Trigger ID:%u", - player->GetName().c_str(), player->GetGUID().ToString().c_str(), triggerId); + player->GetName().c_str(), player->GetGUID().ToString().c_str(), packet.AreaTriggerID); return; } - AreaTriggerEntry const* atEntry = sAreaTriggerStore.LookupEntry(triggerId); + AreaTriggerEntry const* atEntry = sAreaTriggerStore.LookupEntry(packet.AreaTriggerID); if (!atEntry) { TC_LOG_DEBUG("network", "HandleAreaTriggerOpcode: Player '%s' (%s) send unknown (by DBC) Area Trigger ID:%u", - player->GetName().c_str(), player->GetGUID().ToString().c_str(), triggerId); + player->GetName().c_str(), player->GetGUID().ToString().c_str(), packet.AreaTriggerID); return; } if (player->GetMapId() != atEntry->MapID) { TC_LOG_DEBUG("network", "HandleAreaTriggerOpcode: Player '%s' (%s) too far (trigger map: %u player map: %u), ignore Area Trigger ID: %u", - player->GetName().c_str(), player->GetGUID().ToString().c_str(), atEntry->MapID, player->GetMapId(), triggerId); + player->GetName().c_str(), player->GetGUID().ToString().c_str(), atEntry->MapID, player->GetMapId(), packet.AreaTriggerID); return; } @@ -879,7 +876,7 @@ void WorldSession::HandleAreaTriggerOpcode(WorldPacket& recvData) if (dist > atEntry->Radius + delta) { TC_LOG_DEBUG("network", "HandleAreaTriggerOpcode: Player '%s' (%s) too far (radius: %f distance: %f), ignore Area Trigger ID: %u", - player->GetName().c_str(), player->GetGUID().ToString().c_str(), atEntry->Radius, dist, triggerId); + player->GetName().c_str(), player->GetGUID().ToString().c_str(), atEntry->Radius, dist, packet.AreaTriggerID); return; } } @@ -910,20 +907,20 @@ void WorldSession::HandleAreaTriggerOpcode(WorldPacket& recvData) (std::fabs(dz) > atEntry->BoxHeight / 2 + delta)) { TC_LOG_DEBUG("network", "HandleAreaTriggerOpcode: Player '%s' (%s) too far (1/2 box X: %f 1/2 box Y: %f 1/2 box Z: %f rotatedPlayerX: %f rotatedPlayerY: %f dZ:%f), ignore Area Trigger ID: %u", - player->GetName().c_str(), player->GetGUID().ToString().c_str(), atEntry->BoxLength / 2, atEntry->BoxWidth / 2, atEntry->BoxHeight / 2, rotPlayerX, rotPlayerY, dz, triggerId); + player->GetName().c_str(), player->GetGUID().ToString().c_str(), atEntry->BoxLength / 2, atEntry->BoxWidth / 2, atEntry->BoxHeight / 2, rotPlayerX, rotPlayerY, dz, packet.AreaTriggerID); return; } } if (player->isDebugAreaTriggers) - ChatHandler(player->GetSession()).PSendSysMessage(LANG_DEBUG_AREATRIGGER_REACHED, triggerId); + ChatHandler(player->GetSession()).PSendSysMessage(LANG_DEBUG_AREATRIGGER_REACHED, packet.AreaTriggerID); if (sScriptMgr->OnAreaTrigger(player, atEntry)) return; if (player->IsAlive()) { - if (uint32 questId = sObjectMgr->GetQuestForAreaTrigger(triggerId)) + if (uint32 questId = sObjectMgr->GetQuestForAreaTrigger(packet.AreaTriggerID)) { Quest const* qInfo = sObjectMgr->GetQuestTemplate(questId); if (qInfo && player->GetQuestStatus(questId) == QUEST_STATUS_INCOMPLETE) @@ -943,7 +940,7 @@ void WorldSession::HandleAreaTriggerOpcode(WorldPacket& recvData) } } - if (sObjectMgr->IsTavernAreaTrigger(triggerId)) + if (sObjectMgr->IsTavernAreaTrigger(packet.AreaTriggerID)) { // set resting flag we are in the inn player->SetFlag(PLAYER_FLAGS, PLAYER_FLAGS_RESTING); @@ -958,13 +955,13 @@ void WorldSession::HandleAreaTriggerOpcode(WorldPacket& recvData) if (Battleground* bg = player->GetBattleground()) if (bg->GetStatus() == STATUS_IN_PROGRESS) - bg->HandleAreaTrigger(player, triggerId); + bg->HandleAreaTrigger(player, packet.AreaTriggerID); if (OutdoorPvP* pvp = player->GetOutdoorPvP()) - if (pvp->HandleAreaTrigger(_player, triggerId)) + if (pvp->HandleAreaTrigger(_player, packet.AreaTriggerID)) return; - AreaTriggerStruct const* at = sObjectMgr->GetAreaTrigger(triggerId); + AreaTriggerStruct const* at = sObjectMgr->GetAreaTrigger(packet.AreaTriggerID); if (!at) return; diff --git a/src/server/game/Handlers/MovementHandler.cpp b/src/server/game/Handlers/MovementHandler.cpp index 096eaac26fa..f4d9c7d10ca 100644 --- a/src/server/game/Handlers/MovementHandler.cpp +++ b/src/server/game/Handlers/MovementHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/NPCHandler.cpp b/src/server/game/Handlers/NPCHandler.cpp index 90af94f9754..af7759393ae 100644 --- a/src/server/game/Handlers/NPCHandler.cpp +++ b/src/server/game/Handlers/NPCHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/NPCHandler.h b/src/server/game/Handlers/NPCHandler.h index 855536c7d9e..3b96ae5f937 100644 --- a/src/server/game/Handlers/NPCHandler.h +++ b/src/server/game/Handlers/NPCHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/PetHandler.cpp b/src/server/game/Handlers/PetHandler.cpp index 652b548b3a2..5304190cd31 100644 --- a/src/server/game/Handlers/PetHandler.cpp +++ b/src/server/game/Handlers/PetHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/PetitionsHandler.cpp b/src/server/game/Handlers/PetitionsHandler.cpp index 67c29c32c7d..d51720c2373 100644 --- a/src/server/game/Handlers/PetitionsHandler.cpp +++ b/src/server/game/Handlers/PetitionsHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/QueryHandler.cpp b/src/server/game/Handlers/QueryHandler.cpp index c662be65334..6556532cf98 100644 --- a/src/server/game/Handlers/QueryHandler.cpp +++ b/src/server/game/Handlers/QueryHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/QuestHandler.cpp b/src/server/game/Handlers/QuestHandler.cpp index 851e6e89e97..6a8e28125b5 100644 --- a/src/server/game/Handlers/QuestHandler.cpp +++ b/src/server/game/Handlers/QuestHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -202,23 +202,19 @@ void WorldSession::HandleQuestgiverAcceptQuestOpcode(WorldPacket& recvData) #undef CLOSE_GOSSIP_CLEAR_DIVIDER } -void WorldSession::HandleQuestgiverQueryQuestOpcode(WorldPacket& recvData) +void WorldSession::HandleQuestgiverQueryQuestOpcode(WorldPackets::Quest::QuestGiverQueryQuest& packet) { - ObjectGuid guid; - uint32 questId; - uint8 unk1; - recvData >> guid >> questId >> unk1; - TC_LOG_DEBUG("network", "WORLD: Received CMSG_QUESTGIVER_QUERY_QUEST npc = %s, quest = %u, unk1 = %u", guid.ToString().c_str(), questId, unk1); + TC_LOG_DEBUG("network", "WORLD: Received CMSG_QUESTGIVER_QUERY_QUEST QuestGiverGUID = %s, QuestID = %u, RespondToGiver = %u", packet.QuestGiverGUID.ToString().c_str(), packet.QuestID, packet.RespondToGiver); // Verify that the guid is valid and is a questgiver or involved in the requested quest - Object* object = ObjectAccessor::GetObjectByTypeMask(*_player, guid, TYPEMASK_UNIT | TYPEMASK_GAMEOBJECT | TYPEMASK_ITEM); - if (!object || (!object->hasQuest(questId) && !object->hasInvolvedQuest(questId))) + Object* object = ObjectAccessor::GetObjectByTypeMask(*_player, packet.QuestGiverGUID, TYPEMASK_UNIT | TYPEMASK_GAMEOBJECT | TYPEMASK_ITEM); + if (!object || (!object->hasQuest(packet.QuestID) && !object->hasInvolvedQuest(packet.QuestID))) { _player->PlayerTalkClass->SendCloseGossip(); return; } - if (Quest const* quest = sObjectMgr->GetQuestTemplate(questId)) + if (Quest const* quest = sObjectMgr->GetQuestTemplate(packet.QuestID)) { if (!_player->CanTakeQuest(quest, true)) return; @@ -340,30 +336,26 @@ void WorldSession::HandleQuestgiverChooseRewardOpcode(WorldPackets::Quest::Quest _player->PlayerTalkClass->SendQuestGiverOfferReward(quest, packet.QuestGiverGUID, true); } -void WorldSession::HandleQuestgiverRequestRewardOpcode(WorldPacket& recvData) +void WorldSession::HandleQuestgiverRequestRewardOpcode(WorldPackets::Quest::QuestGiverRequestReward& packet) { - uint32 questId; - ObjectGuid guid; - recvData >> guid >> questId; + TC_LOG_DEBUG("network", "WORLD: Received CMSG_QUESTGIVER_REQUEST_REWARD npc = %s, quest = %u", packet.QuestGiverGUID.ToString().c_str(), packet.QuestID); - TC_LOG_DEBUG("network", "WORLD: Received CMSG_QUESTGIVER_REQUEST_REWARD npc = %s, quest = %u", guid.ToString().c_str(), questId); - - Object* object = ObjectAccessor::GetObjectByTypeMask(*_player, guid, TYPEMASK_UNIT | TYPEMASK_GAMEOBJECT); - if (!object || !object->hasInvolvedQuest(questId)) + Object* object = ObjectAccessor::GetObjectByTypeMask(*_player, packet.QuestGiverGUID, TYPEMASK_UNIT | TYPEMASK_GAMEOBJECT); + if (!object || !object->hasInvolvedQuest(packet.QuestID)) return; // some kind of WPE protection if (!_player->CanInteractWithQuestGiver(object)) return; - if (_player->CanCompleteQuest(questId)) - _player->CompleteQuest(questId); + if (_player->CanCompleteQuest(packet.QuestID)) + _player->CompleteQuest(packet.QuestID); - if (_player->GetQuestStatus(questId) != QUEST_STATUS_COMPLETE) + if (_player->GetQuestStatus(packet.QuestID) != QUEST_STATUS_COMPLETE) return; - if (Quest const* quest = sObjectMgr->GetQuestTemplate(questId)) - _player->PlayerTalkClass->SendQuestGiverOfferReward(quest, guid, true); + if (Quest const* quest = sObjectMgr->GetQuestTemplate(packet.QuestID)) + _player->PlayerTalkClass->SendQuestGiverOfferReward(quest, packet.QuestGiverGUID, true); } void WorldSession::HandleQuestgiverCancel(WorldPacket& /*recvData*/) @@ -455,6 +447,12 @@ void WorldSession::HandleQuestConfirmAccept(WorldPacket& recvData) if (!_player->IsInSameRaidWith(originalPlayer)) return; + if (!originalPlayer->CanShareQuest(questId)) + return; + + if (!_player->CanTakeQuest(quest, true)) + return; + if (_player->CanAddQuest(quest, true)) _player->AddQuestAndCheckCompletion(quest, NULL); // NULL, this prevent DB script from duplicate running diff --git a/src/server/game/Handlers/ReferAFriendHandler.cpp b/src/server/game/Handlers/ReferAFriendHandler.cpp index 3ffc8df465e..4db76480f21 100644 --- a/src/server/game/Handlers/ReferAFriendHandler.cpp +++ b/src/server/game/Handlers/ReferAFriendHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -31,7 +31,8 @@ void WorldSession::HandleGrantLevel(WorldPacket& recvData) Player* target = ObjectAccessor::GetObjectInWorld(guid, _player); // check cheating - uint8 levels = _player->GetGrantableLevels(); + /* TODO: 6.x update lfg system + /*uint8 levels = _player->GetGrantableLevels(); uint8 error = 0; if (!target) error = ERR_REFER_A_FRIEND_NO_TARGET; @@ -57,7 +58,7 @@ void WorldSession::HandleGrantLevel(WorldPacket& recvData) SendPacket(&data); return; - } + }*/ WorldPacket data2(SMSG_PROPOSE_LEVEL_GRANT, 8); data2 << _player->GetPackGUID(); diff --git a/src/server/game/Handlers/SkillHandler.cpp b/src/server/game/Handlers/SkillHandler.cpp index 278169c2d63..fd69a13846d 100644 --- a/src/server/game/Handlers/SkillHandler.cpp +++ b/src/server/game/Handlers/SkillHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -36,7 +36,7 @@ void WorldSession::HandleLearnTalentOpcode(WorldPackets::Talent::LearnTalent& pa if (_player->LearnTalent(talentId)) anythingLearned = true; } - + if (anythingLearned) _player->SendTalentsInfoData(); } @@ -94,7 +94,7 @@ void WorldSession::HandleUnlearnSkillOpcode(WorldPacket& recvData) void WorldSession::HandleSetSpecializationOpcode(WorldPackets::Talent::SetSpecialization& packet) { Player* player = GetPlayer(); - + if (packet.SpecGroupIndex >= MAX_SPECIALIZATIONS) { TC_LOG_DEBUG("network", "WORLD: HandleSetSpecializationOpcode - specialization index %u out of range", packet.SpecGroupIndex); diff --git a/src/server/game/Handlers/SpellHandler.cpp b/src/server/game/Handlers/SpellHandler.cpp index 64373e4b674..03aec348d71 100644 --- a/src/server/game/Handlers/SpellHandler.cpp +++ b/src/server/game/Handlers/SpellHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/TaxiHandler.cpp b/src/server/game/Handlers/TaxiHandler.cpp index 91623368f3d..5c16de1ee4c 100644 --- a/src/server/game/Handlers/TaxiHandler.cpp +++ b/src/server/game/Handlers/TaxiHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -309,7 +309,7 @@ void WorldSession::HandleActivateTaxiOpcode(WorldPacket& recvData) void WorldSession::SendActivateTaxiReply(ActivateTaxiReply reply) { - WorldPacket data(SMSG_ACTIVATETAXIREPLY, 4); + WorldPacket data(SMSG_ACTIVATE_TAXI_REPLY, 4); data << uint32(reply); SendPacket(&data); diff --git a/src/server/game/Handlers/TicketHandler.cpp b/src/server/game/Handlers/TicketHandler.cpp index 882ae6efa90..01a4f8c437d 100644 --- a/src/server/game/Handlers/TicketHandler.cpp +++ b/src/server/game/Handlers/TicketHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/TradeHandler.cpp b/src/server/game/Handlers/TradeHandler.cpp index 502d814fe1f..49e46cfb55f 100644 --- a/src/server/game/Handlers/TradeHandler.cpp +++ b/src/server/game/Handlers/TradeHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Handlers/VehicleHandler.cpp b/src/server/game/Handlers/VehicleHandler.cpp index 065857f6673..1b52172d62a 100644 --- a/src/server/game/Handlers/VehicleHandler.cpp +++ b/src/server/game/Handlers/VehicleHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Handlers/VoiceChatHandler.cpp b/src/server/game/Handlers/VoiceChatHandler.cpp index fd5d3adad84..e20c79337fa 100644 --- a/src/server/game/Handlers/VoiceChatHandler.cpp +++ b/src/server/game/Handlers/VoiceChatHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -30,14 +30,6 @@ void WorldSession::HandleVoiceSessionEnableOpcode(WorldPacket& recvData) recvData.read_skip<uint8>(); } -void WorldSession::HandleChannelVoiceOnOpcode(WorldPacket& recvData) -{ - TC_LOG_DEBUG("network", "WORLD: CMSG_CHANNEL_VOICE_ON"); - // Enable Voice button in channel context menu - recvData.ReadString(recvData.ReadBits(8)); - //channel->EnableVoice(recvData.GetOpcode() == CMSG_CHANNEL_VOICE_ON); -} - void WorldSession::HandleSetActiveVoiceChannel(WorldPacket& recvData) { TC_LOG_DEBUG("network", "WORLD: CMSG_SET_ACTIVE_VOICE_CHANNEL"); diff --git a/src/server/game/Handlers/VoidStorageHandler.cpp b/src/server/game/Handlers/VoidStorageHandler.cpp index d6b0f264cea..1e4ba33c910 100644 --- a/src/server/game/Handlers/VoidStorageHandler.cpp +++ b/src/server/game/Handlers/VoidStorageHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Instances/InstanceSaveMgr.cpp b/src/server/game/Instances/InstanceSaveMgr.cpp index 27b362faf90..2f5d7f9f8f1 100644 --- a/src/server/game/Instances/InstanceSaveMgr.cpp +++ b/src/server/game/Instances/InstanceSaveMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Instances/InstanceSaveMgr.h b/src/server/game/Instances/InstanceSaveMgr.h index 70db53ced8d..bba89a77e42 100644 --- a/src/server/game/Instances/InstanceSaveMgr.h +++ b/src/server/game/Instances/InstanceSaveMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Instances/InstanceScript.cpp b/src/server/game/Instances/InstanceScript.cpp index 1c968a495e9..29a2b96a985 100644 --- a/src/server/game/Instances/InstanceScript.cpp +++ b/src/server/game/Instances/InstanceScript.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Instances/InstanceScript.h b/src/server/game/Instances/InstanceScript.h index ccc98de0de7..fa2b4e83fe7 100644 --- a/src/server/game/Instances/InstanceScript.h +++ b/src/server/game/Instances/InstanceScript.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Loot/LootMgr.cpp b/src/server/game/Loot/LootMgr.cpp index 9d65691b927..ad833413937 100644 --- a/src/server/game/Loot/LootMgr.cpp +++ b/src/server/game/Loot/LootMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Loot/LootMgr.h b/src/server/game/Loot/LootMgr.h index 553a5929338..3bd5fadc49d 100644 --- a/src/server/game/Loot/LootMgr.h +++ b/src/server/game/Loot/LootMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Mails/Mail.cpp b/src/server/game/Mails/Mail.cpp index 99ee9879930..37e22638c1c 100644 --- a/src/server/game/Mails/Mail.cpp +++ b/src/server/game/Mails/Mail.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Mails/Mail.h b/src/server/game/Mails/Mail.h index 93d3cc9b1cd..c260c753fcf 100644 --- a/src/server/game/Mails/Mail.h +++ b/src/server/game/Mails/Mail.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/Map.cpp b/src/server/game/Maps/Map.cpp index 49234d323ea..20473192f75 100644 --- a/src/server/game/Maps/Map.cpp +++ b/src/server/game/Maps/Map.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/Map.h b/src/server/game/Maps/Map.h index 7b7a0d5558d..7bd21b57072 100644 --- a/src/server/game/Maps/Map.h +++ b/src/server/game/Maps/Map.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapInstanced.cpp b/src/server/game/Maps/MapInstanced.cpp index 48e5161bcf1..1a9a5d5698d 100644 --- a/src/server/game/Maps/MapInstanced.cpp +++ b/src/server/game/Maps/MapInstanced.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapInstanced.h b/src/server/game/Maps/MapInstanced.h index ecf7c0a28fc..c385215ba76 100644 --- a/src/server/game/Maps/MapInstanced.h +++ b/src/server/game/Maps/MapInstanced.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapManager.cpp b/src/server/game/Maps/MapManager.cpp index 92d7335c7de..d2198d02013 100644 --- a/src/server/game/Maps/MapManager.cpp +++ b/src/server/game/Maps/MapManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapManager.h b/src/server/game/Maps/MapManager.h index e028833d72d..dc6c0bb642f 100644 --- a/src/server/game/Maps/MapManager.h +++ b/src/server/game/Maps/MapManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapRefManager.h b/src/server/game/Maps/MapRefManager.h index a04b76c8dc0..5f1e14b3258 100644 --- a/src/server/game/Maps/MapRefManager.h +++ b/src/server/game/Maps/MapRefManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapReference.h b/src/server/game/Maps/MapReference.h index 2742902d558..c479590de97 100644 --- a/src/server/game/Maps/MapReference.h +++ b/src/server/game/Maps/MapReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapUpdater.cpp b/src/server/game/Maps/MapUpdater.cpp index 69f0bdff885..46b2fb86596 100644 --- a/src/server/game/Maps/MapUpdater.cpp +++ b/src/server/game/Maps/MapUpdater.cpp @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/MapUpdater.h b/src/server/game/Maps/MapUpdater.h index 0d4058a38a3..16d11b2f453 100644 --- a/src/server/game/Maps/MapUpdater.h +++ b/src/server/game/Maps/MapUpdater.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Maps/TransportMgr.cpp b/src/server/game/Maps/TransportMgr.cpp index e083016df94..015665d6430 100644 --- a/src/server/game/Maps/TransportMgr.cpp +++ b/src/server/game/Maps/TransportMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Maps/TransportMgr.h b/src/server/game/Maps/TransportMgr.h index ede70719652..74e8d00e0f7 100644 --- a/src/server/game/Maps/TransportMgr.h +++ b/src/server/game/Maps/TransportMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Maps/ZoneScript.h b/src/server/game/Maps/ZoneScript.h index 9b1f7622b54..d8dba57d438 100644 --- a/src/server/game/Maps/ZoneScript.h +++ b/src/server/game/Maps/ZoneScript.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Miscellaneous/Formulas.h b/src/server/game/Miscellaneous/Formulas.h index 537fa7543f7..bdc78479494 100644 --- a/src/server/game/Miscellaneous/Formulas.h +++ b/src/server/game/Miscellaneous/Formulas.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Miscellaneous/Language.h b/src/server/game/Miscellaneous/Language.h index 399d2229462..af02c1af6f3 100644 --- a/src/server/game/Miscellaneous/Language.h +++ b/src/server/game/Miscellaneous/Language.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Miscellaneous/SharedDefines.h b/src/server/game/Miscellaneous/SharedDefines.h index 92d70d90059..497a4846b47 100644 --- a/src/server/game/Miscellaneous/SharedDefines.h +++ b/src/server/game/Miscellaneous/SharedDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -3722,23 +3722,32 @@ enum HolidayIds //HOLIDAY_CALL_TO_ARMS_DG = 516 }; +enum QuestType +{ + QUEST_TYPE_AUTOCOMPLETE = 0, + QUEST_TYPE_DISABLED = 1, + QUEST_TYPE_NORMAL = 2, + QUEST_TYPE_UNK = 3, + MAX_QUEST_TYPES = 4 +}; + // QuestInfo.dbc (6.0.2.18988) -enum QuestTypes +enum QuestInfo { - QUEST_TYPE_GROUP = 1, - QUEST_TYPE_CLASS = 21, - QUEST_TYPE_PVP = 41, - QUEST_TYPE_RAID = 62, - QUEST_TYPE_DUNGEON = 81, - QUEST_TYPE_WORLD_EVENT = 82, - QUEST_TYPE_LEGENDARY = 83, - QUEST_TYPE_ESCORT = 84, - QUEST_TYPE_HEROIC = 85, - QUEST_TYPE_RAID_10 = 88, - QUEST_TYPE_RAID_25 = 89, - QUEST_TYPE_SCENARIO = 98, - QUEST_TYPE_ACCOUNT = 102, - QUEST_TYPE_SIDE_QUEST = 104 + QUEST_INFO_GROUP = 1, + QUEST_INFO_CLASS = 21, + QUEST_INFO_PVP = 41, + QUEST_INFO_RAID = 62, + QUEST_INFO_DUNGEON = 81, + QUEST_INFO_WORLD_EVENT = 82, + QUEST_INFO_LEGENDARY = 83, + QUEST_INFO_ESCORT = 84, + QUEST_INFO_HEROIC = 85, + QUEST_INFO_RAID_10 = 88, + QUEST_INFO_RAID_25 = 89, + QUEST_INFO_SCENARIO = 98, + QUEST_INFO_ACCOUNT = 102, + QUEST_INFO_SIDE_QUEST = 104 }; // QuestSort.dbc (6.0) @@ -4144,15 +4153,15 @@ enum TotemCategory enum UnitDynFlags { UNIT_DYNFLAG_NONE = 0x0000, - UNIT_DYNFLAG_UNK = 0x0001, + UNIT_DYNFLAG_HIDE_MODEL = 0x0001, // Object model is not shown with this flag UNIT_DYNFLAG_LOOTABLE = 0x0002, UNIT_DYNFLAG_TRACK_UNIT = 0x0004, - UNIT_DYNFLAG_TAPPED = 0x0008, // Lua_UnitIsTapped - UNIT_DYNFLAG_TAPPED_BY_PLAYER = 0x0010, // Lua_UnitIsTappedByPlayer + UNIT_DYNFLAG_TAPPED = 0x0008, // Lua_UnitIsTapped + UNIT_DYNFLAG_TAPPED_BY_PLAYER = 0x0010, // Lua_UnitIsTappedByPlayer UNIT_DYNFLAG_SPECIALINFO = 0x0020, UNIT_DYNFLAG_DEAD = 0x0040, UNIT_DYNFLAG_REFER_A_FRIEND = 0x0080, - UNIT_DYNFLAG_TAPPED_BY_ALL_THREAT_LIST = 0x0100 // Lua_UnitIsTappedByAllThreatList + UNIT_DYNFLAG_TAPPED_BY_ALL_THREAT_LIST = 0x0100 // Lua_UnitIsTappedByAllThreatList }; enum CorpseDynFlags diff --git a/src/server/game/Movement/FollowerRefManager.h b/src/server/game/Movement/FollowerRefManager.h index 136b5703fc9..a55bdfea4ba 100644 --- a/src/server/game/Movement/FollowerRefManager.h +++ b/src/server/game/Movement/FollowerRefManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/FollowerReference.cpp b/src/server/game/Movement/FollowerReference.cpp index e46abf3285c..29d1a2c35a6 100644 --- a/src/server/game/Movement/FollowerReference.cpp +++ b/src/server/game/Movement/FollowerReference.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/FollowerReference.h b/src/server/game/Movement/FollowerReference.h index ee6901dc2d7..16e8da107c6 100644 --- a/src/server/game/Movement/FollowerReference.h +++ b/src/server/game/Movement/FollowerReference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MotionMaster.cpp b/src/server/game/Movement/MotionMaster.cpp index f77cdc392ff..635350b6dad 100644 --- a/src/server/game/Movement/MotionMaster.cpp +++ b/src/server/game/Movement/MotionMaster.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MotionMaster.h b/src/server/game/Movement/MotionMaster.h index e162e45d962..2821cd5a59b 100644 --- a/src/server/game/Movement/MotionMaster.h +++ b/src/server/game/Movement/MotionMaster.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerator.cpp b/src/server/game/Movement/MovementGenerator.cpp index 930669e8cf1..8098b05f03a 100644 --- a/src/server/game/Movement/MovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerator.h b/src/server/game/Movement/MovementGenerator.h index d87344ba089..879b8aea537 100755 --- a/src/server/game/Movement/MovementGenerator.h +++ b/src/server/game/Movement/MovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGeneratorImpl.h b/src/server/game/Movement/MovementGeneratorImpl.h index 2c3d9bdeea0..1fc8c73b477 100644 --- a/src/server/game/Movement/MovementGeneratorImpl.h +++ b/src/server/game/Movement/MovementGeneratorImpl.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.cpp index 2ab408965c1..cbfc181fe9f 100755 --- a/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.h b/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.h index 923c1475718..4cc4baa081f 100755 --- a/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/ConfusedMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.cpp index 95320865d0b..cea25fefbda 100644 --- a/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.h b/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.h index f2ff4c6839d..d7cb956e541 100755 --- a/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/FleeingMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.cpp index 986014e1095..ff28f3855a6 100644 --- a/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.h b/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.h index 8e0b0e335c4..099d81ff54e 100644 --- a/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/HomeMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.cpp index 2b2b9bec288..cdbc1a8919f 100644 --- a/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.h b/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.h index 0cd9b2777b4..e4ea99e00cb 100755 --- a/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/IdleMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/PointMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/PointMovementGenerator.cpp index 0f69ed3b8f7..e233d52ecf5 100755 --- a/src/server/game/Movement/MovementGenerators/PointMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/PointMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/PointMovementGenerator.h b/src/server/game/Movement/MovementGenerators/PointMovementGenerator.h index 3c5b33f3736..e967bd7f0ba 100644 --- a/src/server/game/Movement/MovementGenerators/PointMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/PointMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.cpp index 2e859a7a56f..2ea19a02824 100644 --- a/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.h b/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.h index a4a8137546d..175e512c35d 100644 --- a/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/RandomMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.cpp index 686f362f5fd..40bf3af5194 100755 --- a/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.h b/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.h index 1a465097170..44d64909a3c 100755 --- a/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/TargetedMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.cpp b/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.cpp index 7b5d9e54436..9c17a2277c0 100755 --- a/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.cpp +++ b/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.h b/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.h index 85c39fe0830..f65af3fb73d 100755 --- a/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.h +++ b/src/server/game/Movement/MovementGenerators/WaypointMovementGenerator.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementStructures.cpp b/src/server/game/Movement/MovementStructures.cpp index 85dabf8ed20..841f739ff09 100644 --- a/src/server/game/Movement/MovementStructures.cpp +++ b/src/server/game/Movement/MovementStructures.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/MovementStructures.h b/src/server/game/Movement/MovementStructures.h index 4c7fbd1212b..afa30b4c1c7 100644 --- a/src/server/game/Movement/MovementStructures.h +++ b/src/server/game/Movement/MovementStructures.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/PathGenerator.cpp b/src/server/game/Movement/PathGenerator.cpp index 66e0ab7c917..e041ed9c6e6 100644 --- a/src/server/game/Movement/PathGenerator.cpp +++ b/src/server/game/Movement/PathGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify diff --git a/src/server/game/Movement/Waypoints/Path.h b/src/server/game/Movement/Waypoints/Path.h index c7e701c49ad..bb8abc37eb3 100644 --- a/src/server/game/Movement/Waypoints/Path.h +++ b/src/server/game/Movement/Waypoints/Path.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/Waypoints/WaypointManager.cpp b/src/server/game/Movement/Waypoints/WaypointManager.cpp index 21af63868db..cf319321c7c 100644 --- a/src/server/game/Movement/Waypoints/WaypointManager.cpp +++ b/src/server/game/Movement/Waypoints/WaypointManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Movement/Waypoints/WaypointManager.h b/src/server/game/Movement/Waypoints/WaypointManager.h index 8e5dd1f64c7..17842484bf8 100644 --- a/src/server/game/Movement/Waypoints/WaypointManager.h +++ b/src/server/game/Movement/Waypoints/WaypointManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/OutdoorPvP/OutdoorPvP.cpp b/src/server/game/OutdoorPvP/OutdoorPvP.cpp index c9119886dba..a23d71e0fe8 100644 --- a/src/server/game/OutdoorPvP/OutdoorPvP.cpp +++ b/src/server/game/OutdoorPvP/OutdoorPvP.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/OutdoorPvP/OutdoorPvP.h b/src/server/game/OutdoorPvP/OutdoorPvP.h index 1381d03c9b9..8f4475bce13 100644 --- a/src/server/game/OutdoorPvP/OutdoorPvP.h +++ b/src/server/game/OutdoorPvP/OutdoorPvP.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/OutdoorPvP/OutdoorPvPMgr.cpp b/src/server/game/OutdoorPvP/OutdoorPvPMgr.cpp index 98f697bc8ad..62440eab44e 100644 --- a/src/server/game/OutdoorPvP/OutdoorPvPMgr.cpp +++ b/src/server/game/OutdoorPvP/OutdoorPvPMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/OutdoorPvP/OutdoorPvPMgr.h b/src/server/game/OutdoorPvP/OutdoorPvPMgr.h index bbcad8074e1..4f03dd37fac 100644 --- a/src/server/game/OutdoorPvP/OutdoorPvPMgr.h +++ b/src/server/game/OutdoorPvP/OutdoorPvPMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Pools/PoolMgr.cpp b/src/server/game/Pools/PoolMgr.cpp index 4eec8ab780b..257c279ade2 100644 --- a/src/server/game/Pools/PoolMgr.cpp +++ b/src/server/game/Pools/PoolMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Pools/PoolMgr.h b/src/server/game/Pools/PoolMgr.h index ff633c08ba1..301c62b5f4b 100644 --- a/src/server/game/Pools/PoolMgr.h +++ b/src/server/game/Pools/PoolMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://www.mangosproject.org/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Quests/QuestDef.cpp b/src/server/game/Quests/QuestDef.cpp index 3c45f5efb38..2801dbead33 100644 --- a/src/server/game/Quests/QuestDef.cpp +++ b/src/server/game/Quests/QuestDef.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -24,13 +24,13 @@ Quest::Quest(Field* questRecord) { - Id = questRecord[0].GetUInt32(); - Method = questRecord[1].GetUInt8(); + ID = questRecord[0].GetUInt32(); + Type = questRecord[1].GetUInt8(); Level = questRecord[2].GetInt32(); PackageID = questRecord[3].GetUInt32(); - MinLevel = questRecord[4].GetUInt32(); - ZoneOrSort = questRecord[5].GetInt16(); - Type = questRecord[6].GetUInt16(); + MinLevel = questRecord[4].GetInt32(); + QuestSortID = questRecord[5].GetInt16(); + QuestInfoID = questRecord[6].GetUInt16(); SuggestedPlayers = questRecord[7].GetUInt8(); NextQuestInChain = questRecord[8].GetUInt32(); RewardXPDifficulty = questRecord[9].GetUInt32(); @@ -49,17 +49,17 @@ Quest::Quest(Field* questRecord) for (uint32 i = 0; i < QUEST_ITEM_DROP_COUNT; ++i) { - RewardItemId[i] = questRecord[22+i].GetUInt32(); - RewardItemCount[i] = questRecord[23+i].GetUInt32(); - ItemDrop[i] = questRecord[24+i].GetUInt32(); - ItemDropQuantity[i] = questRecord[25+i].GetUInt32(); + RewardItemId[i] = questRecord[22+i*4].GetUInt32(); + RewardItemCount[i] = questRecord[23+i*4].GetUInt32(); + ItemDrop[i] = questRecord[24+i*4].GetUInt32(); + ItemDropQuantity[i] = questRecord[25+i*4].GetUInt32(); } for (uint32 i = 0; i < QUEST_REWARD_CHOICES_COUNT; ++i) { - RewardChoiceItemId[i] = questRecord[38+i].GetUInt32(); - RewardChoiceItemCount[i] = questRecord[39+i].GetUInt32(); - RewardChoiceItemDisplayId[i] = questRecord[40+i].GetUInt32(); + RewardChoiceItemId[i] = questRecord[38+i*3].GetUInt32(); + RewardChoiceItemCount[i] = questRecord[39+i*3].GetUInt32(); + RewardChoiceItemDisplayId[i] = questRecord[40+i*3].GetUInt32(); } POIContinent = questRecord[56].GetUInt32(); @@ -78,17 +78,17 @@ Quest::Quest(Field* questRecord) for (uint32 i = 0; i < QUEST_REWARD_REPUTATIONS_COUNT; ++i) { - RewardFactionId[i] = questRecord[67+i].GetUInt32(); - RewardFactionValue[i] = questRecord[68+i].GetInt32(); - RewardFactionOverride[i] = questRecord[69+i].GetInt32(); + RewardFactionId[i] = questRecord[67+i*3].GetUInt32(); + RewardFactionValue[i] = questRecord[68+i*3].GetInt32(); + RewardFactionOverride[i] = questRecord[69+i*3].GetInt32(); } RewardReputationMask = questRecord[82].GetUInt32(); for (uint32 i = 0; i < QUEST_REWARD_CURRENCY_COUNT; ++i) { - RewardCurrencyId[i] = questRecord[83+i].GetUInt32(); - RewardCurrencyCount[i] = questRecord[84+i].GetUInt32(); + RewardCurrencyId[i] = questRecord[83+i*2].GetUInt32(); + RewardCurrencyCount[i] = questRecord[84+i*2].GetUInt32(); } SoundAccept = questRecord[91].GetUInt32(); @@ -179,34 +179,35 @@ void Quest::LoadQuestTemplateAddon(Field* fields) void Quest::LoadQuestObjective(Field* fields) { - uint8 storageIndex = fields[3].GetUInt8(); - - // Allocate space - if (storageIndex >= Objectives.size()) - Objectives.resize(storageIndex+1); - - QuestObjective& obj = Objectives[storageIndex]; + QuestObjective obj; obj.ID = fields[0].GetUInt32(); obj.Type = fields[2].GetUInt8(); - obj.StorageIndex = storageIndex; + obj.StorageIndex = fields[3].GetInt8(); obj.ObjectID = fields[4].GetInt32(); obj.Amount = fields[5].GetInt32(); obj.Flags = fields[6].GetUInt32(); obj.UnkFloat = fields[7].GetFloat(); obj.Description = fields[8].GetString(); + + Objectives.push_back(obj); } void Quest::LoadQuestObjectiveVisualEffect(Field* fields) { - // No need to check index because checks is objective exists are done in ObjectMgr while loading quest_visual_effect - uint8 storageIndex = fields[3].GetUInt8(); - QuestObjective& obj = Objectives[storageIndex]; + uint8 objID = fields[1].GetUInt32(); - uint8 effectIndex = fields[4].GetUInt8(); - if (effectIndex >= obj.VisualEffects.size()) - obj.VisualEffects.resize(effectIndex+1, 0); + for (QuestObjective& obj : Objectives) + { + if (obj.ID == objID) + { + uint8 effectIndex = fields[3].GetUInt8(); + if (effectIndex >= obj.VisualEffects.size()) + obj.VisualEffects.resize(effectIndex+1, 0); - obj.VisualEffects[effectIndex] = fields[5].GetInt32(); + obj.VisualEffects[effectIndex] = fields[4].GetInt32(); + break; + } + } } uint32 Quest::XPValue(uint32 playerLevel) const @@ -240,9 +241,12 @@ uint32 Quest::XPValue(uint32 playerLevel) const return 0; } -int32 Quest::GetRewMoney() const +uint32 Quest::GetRewMoney() const { - return int32(RewardMoney * sWorld->getRate(RATE_MONEY_QUEST)); + if (RewardMoney > 0) + return RewardMoney * sWorld->getRate(RATE_MONEY_QUEST); + else + return 0; } void Quest::BuildQuestRewards(WorldPackets::Quest::QuestRewards& rewards, Player* player) const @@ -302,18 +306,18 @@ bool Quest::IsAutoAccept() const bool Quest::IsAutoComplete() const { - return !sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_COMPLETE) && Method == 0; + return !sWorld->getBoolConfig(CONFIG_QUEST_IGNORE_AUTO_COMPLETE) && Type == QUEST_TYPE_AUTOCOMPLETE; } bool Quest::IsRaidQuest(Difficulty difficulty) const { switch (Type) { - case QUEST_TYPE_RAID: + case QUEST_INFO_RAID: return true; - case QUEST_TYPE_RAID_10: + case QUEST_INFO_RAID_10: return !(difficulty & RAID_DIFFICULTY_MASK_25MAN); - case QUEST_TYPE_RAID_25: + case QUEST_INFO_RAID_25: return difficulty & RAID_DIFFICULTY_MASK_25MAN; default: break; diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h index d5e81bc261b..d893784212e 100644 --- a/src/server/game/Quests/QuestDef.h +++ b/src/server/game/Quests/QuestDef.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -223,7 +223,7 @@ struct QuestObjective { uint32 ID = 0; uint8 Type = 0; - uint8 StorageIndex = 0; + int8 StorageIndex = 0; int32 ObjectID = 0; int32 Amount = 0; uint32 Flags = 0; @@ -261,14 +261,14 @@ class Quest void SetSpecialFlag(uint32 flag) { SpecialFlags |= flag; } // table data accessors: - uint32 GetQuestId() const { return Id; } - uint32 GetQuestMethod() const { return Method; } + uint32 GetQuestId() const { return ID; } + uint32 GetQuestType() const { return Type; } uint32 GetQuestPackageID() const { return PackageID; } - int32 GetZoneOrSort() const { return ZoneOrSort; } - uint32 GetMinLevel() const { return MinLevel; } + int32 GetZoneOrSort() const { return QuestSortID; } + int32 GetMinLevel() const { return MinLevel; } uint32 GetMaxLevel() const { return MaxLevel; } int32 GetQuestLevel() const { return Level; } - uint32 GetType() const { return Type; } + uint32 GetQuestInfoID() const { return QuestInfoID; } uint32 GetAllowableClasses() const { return AllowableClasses; } int32 GetAllowableRaces() const { return AllowableRaces; } uint32 GetRequiredSkill() const { return RequiredSkillId; } @@ -301,7 +301,7 @@ class Quest std::string const& GetPortraitTurnInText() const { return PortraitTurnInText; } std::string const& GetPortraitTurnInName() const { return PortraitTurnInName; } QuestObjectives const& GetObjectives() const { return Objectives; }; - int32 GetRewMoney() const; + uint32 GetRewMoney() const; uint32 GetRewMoneyDifficulty() const { return RewardMoneyDifficulty; } uint32 GetRewHonor() const { return RewardHonor; } uint32 GetRewKillHonor() const { return RewardKillHonor; } @@ -334,7 +334,7 @@ class Quest bool IsDaily() const { return (Flags & QUEST_FLAGS_DAILY) != 0; } bool IsWeekly() const { return (Flags & QUEST_FLAGS_WEEKLY) != 0; } bool IsMonthly() const { return (SpecialFlags & QUEST_SPECIAL_FLAGS_MONTHLY) != 0; } - bool IsSeasonal() const { return (ZoneOrSort == -QUEST_SORT_SEASONAL || ZoneOrSort == -QUEST_SORT_SPECIAL || ZoneOrSort == -QUEST_SORT_LUNAR_FESTIVAL || ZoneOrSort == -QUEST_SORT_MIDSUMMER || ZoneOrSort == -QUEST_SORT_BREWFEST || ZoneOrSort == -QUEST_SORT_LOVE_IS_IN_THE_AIR || ZoneOrSort == -QUEST_SORT_NOBLEGARDEN) && !IsRepeatable(); } + bool IsSeasonal() const { return (QuestSortID == -QUEST_SORT_SEASONAL || QuestSortID == -QUEST_SORT_SPECIAL || QuestSortID == -QUEST_SORT_LUNAR_FESTIVAL || QuestSortID == -QUEST_SORT_MIDSUMMER || QuestSortID == -QUEST_SORT_BREWFEST || QuestSortID == -QUEST_SORT_LOVE_IS_IN_THE_AIR || QuestSortID == -QUEST_SORT_NOBLEGARDEN) && !IsRepeatable(); } bool IsDailyOrWeekly() const { return (Flags & (QUEST_FLAGS_DAILY | QUEST_FLAGS_WEEKLY)) != 0; } bool IsRaidQuest(Difficulty difficulty) const; bool IsAllowedInRaid(Difficulty difficulty) const; @@ -359,18 +359,18 @@ class Quest public: // wdb data (quest query response) - uint32 Id; - uint32 Method; - uint32 PackageID; - int32 ZoneOrSort; - uint32 MinLevel; - int32 Level; + uint32 ID; uint32 Type; + int32 Level; + uint32 PackageID; + int32 MinLevel; + int32 QuestSortID; + uint32 QuestInfoID; uint32 SuggestedPlayers; uint32 NextQuestInChain; uint32 RewardXPDifficulty; float Float10; - uint32 RewardMoney; + int32 RewardMoney; uint32 RewardMoneyDifficulty; float Float13; uint32 RewardBonusMoney; diff --git a/src/server/game/Reputation/ReputationMgr.cpp b/src/server/game/Reputation/ReputationMgr.cpp index 0a0980691ed..b77f8f50835 100644 --- a/src/server/game/Reputation/ReputationMgr.cpp +++ b/src/server/game/Reputation/ReputationMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Reputation/ReputationMgr.h b/src/server/game/Reputation/ReputationMgr.h index 68f6ae6ca0b..f328d9809ca 100644 --- a/src/server/game/Reputation/ReputationMgr.h +++ b/src/server/game/Reputation/ReputationMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Scripting/MapScripts.cpp b/src/server/game/Scripting/MapScripts.cpp index 349e0195242..8797caf2cf7 100644 --- a/src/server/game/Scripting/MapScripts.cpp +++ b/src/server/game/Scripting/MapScripts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Scripting/ScriptLoader.cpp b/src/server/game/Scripting/ScriptLoader.cpp index ad727fc17d2..4fe6c5e49cd 100644 --- a/src/server/game/Scripting/ScriptLoader.cpp +++ b/src/server/game/Scripting/ScriptLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Scripting/ScriptLoader.h b/src/server/game/Scripting/ScriptLoader.h index 49a31700403..04bfc8d2736 100644 --- a/src/server/game/Scripting/ScriptLoader.h +++ b/src/server/game/Scripting/ScriptLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Scripting/ScriptMgr.cpp b/src/server/game/Scripting/ScriptMgr.cpp index 95ac2d275da..9c49958f10a 100644 --- a/src/server/game/Scripting/ScriptMgr.cpp +++ b/src/server/game/Scripting/ScriptMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Scripting/ScriptMgr.h b/src/server/game/Scripting/ScriptMgr.h index 4431f710976..0e9cdd9808f 100644 --- a/src/server/game/Scripting/ScriptMgr.h +++ b/src/server/game/Scripting/ScriptMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Scripting/ScriptSystem.cpp b/src/server/game/Scripting/ScriptSystem.cpp index 8094da2e105..742e2a1e77c 100644 --- a/src/server/game/Scripting/ScriptSystem.cpp +++ b/src/server/game/Scripting/ScriptSystem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Server/BattlenetServerManager.cpp b/src/server/game/Server/BattlenetServerManager.cpp index 048dc2d6402..18d74d14cd6 100644 --- a/src/server/game/Server/BattlenetServerManager.cpp +++ b/src/server/game/Server/BattlenetServerManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/BattlenetServerManager.h b/src/server/game/Server/BattlenetServerManager.h index f2bd6e0ca19..424d3131336 100644 --- a/src/server/game/Server/BattlenetServerManager.h +++ b/src/server/game/Server/BattlenetServerManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packet.cpp b/src/server/game/Server/Packet.cpp index 10b472bee67..10e935e87c7 100644 --- a/src/server/game/Server/Packet.cpp +++ b/src/server/game/Server/Packet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,7 +16,3 @@ */ #include "Packet.h" - -WorldPackets::ServerPacket::ServerPacket(OpcodeServer opcode, size_t initialSize /*= 200*/) : Packet(WorldPacket(opcode, initialSize)) -{ -} diff --git a/src/server/game/Server/Packet.h b/src/server/game/Server/Packet.h index 040b36bbbc3..bf538803ad6 100644 --- a/src/server/game/Server/Packet.h +++ b/src/server/game/Server/Packet.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -45,7 +45,7 @@ namespace WorldPackets class ServerPacket : public Packet { public: - ServerPacket(OpcodeServer opcode, size_t initialSize = 200); + ServerPacket(OpcodeServer opcode, size_t initialSize = 200) : Packet(WorldPacket(opcode, initialSize)) { } void Read() override final { ASSERT(!"Read not implemented for server packets."); } @@ -59,7 +59,7 @@ namespace WorldPackets { public: ClientPacket(WorldPacket&& packet) : Packet(std::move(packet)) { } - ClientPacket(OpcodeClient expectedOpcode, WorldPacket&& packet) : Packet(std::move(packet)) { ASSERT(packet.GetOpcode() == expectedOpcode); } + ClientPacket(OpcodeClient expectedOpcode, WorldPacket&& packet) : Packet(std::move(packet)) { ASSERT(GetOpcode() == expectedOpcode); } WorldPacket const* Write() override final { diff --git a/src/server/game/Server/Packets/AchievementPackets.cpp b/src/server/game/Server/Packets/AchievementPackets.cpp index d471d87426c..ee94fdfca67 100644 --- a/src/server/game/Server/Packets/AchievementPackets.cpp +++ b/src/server/game/Server/Packets/AchievementPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/AchievementPackets.h b/src/server/game/Server/Packets/AchievementPackets.h index 9d609372831..27d82ab0906 100644 --- a/src/server/game/Server/Packets/AchievementPackets.h +++ b/src/server/game/Server/Packets/AchievementPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/AuctionHousePackets.cpp b/src/server/game/Server/Packets/AuctionHousePackets.cpp index bb1a10be254..596419d71c7 100644 --- a/src/server/game/Server/Packets/AuctionHousePackets.cpp +++ b/src/server/game/Server/Packets/AuctionHousePackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/AuctionHousePackets.h b/src/server/game/Server/Packets/AuctionHousePackets.h index 4204c5c6afc..5c8f7f53d5f 100644 --- a/src/server/game/Server/Packets/AuctionHousePackets.h +++ b/src/server/game/Server/Packets/AuctionHousePackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/AuthenticationPackets.cpp b/src/server/game/Server/Packets/AuthenticationPackets.cpp index a69e684438f..97f68e676a6 100644 --- a/src/server/game/Server/Packets/AuthenticationPackets.cpp +++ b/src/server/game/Server/Packets/AuthenticationPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/AuthenticationPackets.h b/src/server/game/Server/Packets/AuthenticationPackets.h index dcc9a908539..09b528910cd 100644 --- a/src/server/game/Server/Packets/AuthenticationPackets.h +++ b/src/server/game/Server/Packets/AuthenticationPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/BattlegroundPackets.cpp b/src/server/game/Server/Packets/BattlegroundPackets.cpp index 8a1bec1173b..47b789d85f0 100644 --- a/src/server/game/Server/Packets/BattlegroundPackets.cpp +++ b/src/server/game/Server/Packets/BattlegroundPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/BattlegroundPackets.h b/src/server/game/Server/Packets/BattlegroundPackets.h index 77dc8238438..b3910fd7676 100644 --- a/src/server/game/Server/Packets/BattlegroundPackets.h +++ b/src/server/game/Server/Packets/BattlegroundPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/ChannelPackets.cpp b/src/server/game/Server/Packets/ChannelPackets.cpp index bd1e62eadd6..9bcb10948d5 100644 --- a/src/server/game/Server/Packets/ChannelPackets.cpp +++ b/src/server/game/Server/Packets/ChannelPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,12 +16,6 @@ */ #include "ChannelPackets.h" -#include "Channel.h" - -void WorldPackets::Channel::ChannelListRequest::Read() -{ - ChannelName = _worldPacket.ReadString(_worldPacket.ReadBits(7)); -} WorldPacket const* WorldPackets::Channel::ChannelListResponse::Write() { @@ -89,6 +83,53 @@ WorldPacket const* WorldPackets::Channel::ChannelNotifyLeft::Write() return &_worldPacket; } +void WorldPackets::Channel::ChannelPlayerCommand::Read() +{ + switch (GetOpcode()) + { + case CMSG_CHANNEL_BAN: + case CMSG_CHANNEL_INVITE: + case CMSG_CHANNEL_KICK: + case CMSG_CHANNEL_MODERATOR: + case CMSG_CHANNEL_MUTE: + case CMSG_CHANNEL_SET_OWNER: + case CMSG_CHANNEL_SILENCE_ALL: + case CMSG_CHANNEL_SILENCE_VOICE: + case CMSG_CHANNEL_UNBAN: + case CMSG_CHANNEL_UNMODERATOR: + case CMSG_CHANNEL_UNMUTE: + case CMSG_CHANNEL_UNSILENCE_ALL: + case CMSG_CHANNEL_UNSILENCE_VOICE: + { + uint32 channelNameLength = _worldPacket.ReadBits(7); + uint32 nameLength = _worldPacket.ReadBits(9); + ChannelName = _worldPacket.ReadString(channelNameLength); + Name = _worldPacket.ReadString(nameLength); + break; + } + case CMSG_CHANNEL_ANNOUNCEMENTS: + case CMSG_CHANNEL_DECLINE_INVITE: + case CMSG_CHANNEL_DISPLAY_LIST: + case CMSG_CHANNEL_LIST: + //case CMSG_CHANNEL_MODERATE: + case CMSG_CHANNEL_OWNER: + case CMSG_CHANNEL_VOICE_OFF: + case CMSG_CHANNEL_VOICE_ON: + { + ChannelName = _worldPacket.ReadString(_worldPacket.ReadBits(7)); + break; + } + case CMSG_CHANNEL_PASSWORD: + { + uint32 channelNameLength = _worldPacket.ReadBits(7); + uint32 nameLength = _worldPacket.ReadBits(7); + ChannelName = _worldPacket.ReadString(channelNameLength); + Name = _worldPacket.ReadString(nameLength); + break; + } + } +} + void WorldPackets::Channel::JoinChannel::Read() { _worldPacket >> ChatChannelId; diff --git a/src/server/game/Server/Packets/ChannelPackets.h b/src/server/game/Server/Packets/ChannelPackets.h index e3d96c5c453..14fbac84cf9 100644 --- a/src/server/game/Server/Packets/ChannelPackets.h +++ b/src/server/game/Server/Packets/ChannelPackets.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -19,25 +19,13 @@ #define ChannelPackets_h__ #include "Packet.h" +#include "Channel.h" #include "ObjectGuid.h" namespace WorldPackets { namespace Channel { - class ChannelListRequest final : public ClientPacket - { - public: - ChannelListRequest(WorldPacket&& packet) : ClientPacket(std::move(packet)) - { - ASSERT(packet.GetOpcode() == CMSG_CHANNEL_LIST || packet.GetOpcode() == CMSG_CHANNEL_DISPLAY_LIST); - } - - void Read() override; - - std::string ChannelName; - }; - class ChannelListResponse final : public ServerPacket { public: @@ -48,7 +36,7 @@ namespace WorldPackets ObjectGuid Guid; ///< Player Guid uint32 VirtualRealmAddress; - uint8 Flags = 0; ///< @see enum ChannelMemberFlags + uint8 Flags; ///< @see enum ChannelMemberFlags }; ChannelListResponse() : ServerPacket(SMSG_CHANNEL_LIST) { } @@ -107,6 +95,47 @@ namespace WorldPackets bool Suspended = false; ///< User Leave - false, On Zone Change - true }; + class ChannelPlayerCommand final : public ClientPacket + { + public: + ChannelPlayerCommand(WorldPacket&& packet) : ClientPacket(std::move(packet)) + { + switch (GetOpcode()) + { + default: + ASSERT(false); + case CMSG_CHANNEL_ANNOUNCEMENTS: + case CMSG_CHANNEL_BAN: + case CMSG_CHANNEL_DECLINE_INVITE: + case CMSG_CHANNEL_DISPLAY_LIST: + case CMSG_CHANNEL_INVITE: + case CMSG_CHANNEL_KICK: + case CMSG_CHANNEL_LIST: + //case CMSG_CHANNEL_MODERATE: + case CMSG_CHANNEL_MODERATOR: + case CMSG_CHANNEL_MUTE: + case CMSG_CHANNEL_OWNER: + case CMSG_CHANNEL_PASSWORD: + case CMSG_CHANNEL_SET_OWNER: + case CMSG_CHANNEL_SILENCE_ALL: + case CMSG_CHANNEL_SILENCE_VOICE: + case CMSG_CHANNEL_UNBAN: + case CMSG_CHANNEL_UNMODERATOR: + case CMSG_CHANNEL_UNMUTE: + case CMSG_CHANNEL_UNSILENCE_ALL: + case CMSG_CHANNEL_UNSILENCE_VOICE: + case CMSG_CHANNEL_VOICE_OFF: + case CMSG_CHANNEL_VOICE_ON: + break; + } + } + + void Read() override; + + std::string ChannelName; + std::string Name; + }; + class JoinChannel final : public ClientPacket { public: diff --git a/src/server/game/Server/Packets/CharacterPackets.cpp b/src/server/game/Server/Packets/CharacterPackets.cpp index 048b97248f7..0ab03092b4c 100644 --- a/src/server/game/Server/Packets/CharacterPackets.cpp +++ b/src/server/game/Server/Packets/CharacterPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/CharacterPackets.h b/src/server/game/Server/Packets/CharacterPackets.h index 386c407b10f..c32620f5a89 100644 --- a/src/server/game/Server/Packets/CharacterPackets.h +++ b/src/server/game/Server/Packets/CharacterPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/ChatPackets.cpp b/src/server/game/Server/Packets/ChatPackets.cpp index 21a9f9c27cd..9d28f50af4f 100644 --- a/src/server/game/Server/Packets/ChatPackets.cpp +++ b/src/server/game/Server/Packets/ChatPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/ChatPackets.h b/src/server/game/Server/Packets/ChatPackets.h index 447ada1d63f..81f4d08607f 100644 --- a/src/server/game/Server/Packets/ChatPackets.h +++ b/src/server/game/Server/Packets/ChatPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/ClientConfigPackets.cpp b/src/server/game/Server/Packets/ClientConfigPackets.cpp index 693f8e773df..2ff1bd236f8 100644 --- a/src/server/game/Server/Packets/ClientConfigPackets.cpp +++ b/src/server/game/Server/Packets/ClientConfigPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/ClientConfigPackets.h b/src/server/game/Server/Packets/ClientConfigPackets.h index 8a29b1fb175..d967fd5ab42 100644 --- a/src/server/game/Server/Packets/ClientConfigPackets.h +++ b/src/server/game/Server/Packets/ClientConfigPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/CombatLogPackets.cpp b/src/server/game/Server/Packets/CombatLogPackets.cpp index 128cc0d342f..3dd5237ac1f 100644 --- a/src/server/game/Server/Packets/CombatLogPackets.cpp +++ b/src/server/game/Server/Packets/CombatLogPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/CombatLogPackets.h b/src/server/game/Server/Packets/CombatLogPackets.h index b72bb1b883e..842382df00d 100644 --- a/src/server/game/Server/Packets/CombatLogPackets.h +++ b/src/server/game/Server/Packets/CombatLogPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/CombatPackets.cpp b/src/server/game/Server/Packets/CombatPackets.cpp index 7793ef4ae30..a23cbc7515b 100644 --- a/src/server/game/Server/Packets/CombatPackets.cpp +++ b/src/server/game/Server/Packets/CombatPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/CombatPackets.h b/src/server/game/Server/Packets/CombatPackets.h index 5b2347e3edb..012859ffc65 100644 --- a/src/server/game/Server/Packets/CombatPackets.h +++ b/src/server/game/Server/Packets/CombatPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/EquipmentSetPackets.cpp b/src/server/game/Server/Packets/EquipmentSetPackets.cpp index 07cab20debf..f69e378652e 100644 --- a/src/server/game/Server/Packets/EquipmentSetPackets.cpp +++ b/src/server/game/Server/Packets/EquipmentSetPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/EquipmentSetPackets.h b/src/server/game/Server/Packets/EquipmentSetPackets.h index b01c483f5ac..14e5ac808eb 100644 --- a/src/server/game/Server/Packets/EquipmentSetPackets.h +++ b/src/server/game/Server/Packets/EquipmentSetPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/GameObjectPackets.cpp b/src/server/game/Server/Packets/GameObjectPackets.cpp index 21e8305eb5e..604dcc4d2a1 100644 --- a/src/server/game/Server/Packets/GameObjectPackets.cpp +++ b/src/server/game/Server/Packets/GameObjectPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/GameObjectPackets.h b/src/server/game/Server/Packets/GameObjectPackets.h index 76b3478844b..8288681740b 100644 --- a/src/server/game/Server/Packets/GameObjectPackets.h +++ b/src/server/game/Server/Packets/GameObjectPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/GuildPackets.cpp b/src/server/game/Server/Packets/GuildPackets.cpp index f4159927543..5ad6d9729c2 100644 --- a/src/server/game/Server/Packets/GuildPackets.cpp +++ b/src/server/game/Server/Packets/GuildPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/GuildPackets.h b/src/server/game/Server/Packets/GuildPackets.h index ea308aa9a88..d4b1e9f12bd 100644 --- a/src/server/game/Server/Packets/GuildPackets.h +++ b/src/server/game/Server/Packets/GuildPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/ItemPackets.cpp b/src/server/game/Server/Packets/ItemPackets.cpp index ed57485299c..4d3c6a552a8 100644 --- a/src/server/game/Server/Packets/ItemPackets.cpp +++ b/src/server/game/Server/Packets/ItemPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -58,21 +58,32 @@ ByteBuffer& operator<<(ByteBuffer& data, WorldPackets::Item::ItemInstance const& return data; } -WorldPacket const* WorldPackets::Item::EquipError::Write() +ByteBuffer& WorldPackets::Item::operator>>(ByteBuffer& data, InvUpdate& invUpdate) { - _worldPacket << uint8(msg); - _worldPacket << itemGUID1; - _worldPacket << itemGUID2; - _worldPacket << uint8(0); // bag type subclass, used with EQUIP_ERR_EVENT_AUTOEQUIP_BIND_CONFIRM and EQUIP_ERR_ITEM_DOESNT_GO_INTO_BAG2 + invUpdate.Items.resize(data.ReadBits(2)); + for (size_t i = 0; i < invUpdate.Items.size(); ++i) + { + data >> invUpdate.Items[i].ContainerSlot; + data >> invUpdate.Items[i].Slot; + } + + return data; +} + +WorldPacket const* WorldPackets::Item::InventoryChangeFailure::Write() +{ + _worldPacket << int8(BagResult); + _worldPacket << Item[0]; + _worldPacket << Item[1]; + _worldPacket << uint8(ContainerBSlot); // bag type subclass, used with EQUIP_ERR_EVENT_AUTOEQUIP_BIND_CONFIRM and EQUIP_ERR_ITEM_DOESNT_GO_INTO_BAG2 - switch (msg) + switch (BagResult) { case EQUIP_ERR_CANT_EQUIP_LEVEL_I: case EQUIP_ERR_PURCHASE_LEVEL_TOO_LOW: - { - _worldPacket << level; + _worldPacket << int32(Level); break; - } + /// @todo: add more cases default: break; } @@ -82,42 +93,40 @@ WorldPacket const* WorldPackets::Item::EquipError::Write() void WorldPackets::Item::SplitItem::Read() { - itemCount = _worldPacket.ReadBits(2); - _worldPacket >> srcbag >> srcslot >> dstbag >> dstslot >> count; + _worldPacket >> Inv + >> FromPackSlot + >> FromSlot + >> ToPackSlot + >> ToSlot + >> Quantity; } void WorldPackets::Item::SwapInvItem::Read() { - itemCount = _worldPacket.ReadBits(2); - for (uint32 i = 0; i < itemCount; ++i) - { - _worldPacket.read_skip<uint8>(); // bag - _worldPacket.read_skip<uint8>(); // slot - } - _worldPacket >> dstslot >> srcslot; + _worldPacket >> Inv + >> Slot2 + >> Slot1; } void WorldPackets::Item::SwapItem::Read() { - itemCount = _worldPacket.ReadBits(2); - for (uint32 i = 0; i < itemCount; ++i) - { - _worldPacket.read_skip<uint8>(); // bag - _worldPacket.read_skip<uint8>(); // slot - } - _worldPacket >> dstbag >> srcbag >> dstslot >> srcslot; + _worldPacket >> Inv + >> ContainerSlotB + >> ContainerSlotA + >> SlotB + >> SlotA; } void WorldPackets::Item::AutoEquipItem::Read() { - itemCount = _worldPacket.ReadBits(2); - - _worldPacket >> srcbag >> srcslot; - _worldPacket.read_skip<uint8>(); - _worldPacket.read_skip<uint8>(); + _worldPacket >> Inv + >> PackSlot + >> Slot; } void WorldPackets::Item::DestroyItem::Read() { - _worldPacket >> count >> bag >> slot; + _worldPacket >> Count + >> ContainerId + >> SlotNum; } diff --git a/src/server/game/Server/Packets/ItemPackets.h b/src/server/game/Server/Packets/ItemPackets.h index 2445a9bc2df..1510ecd70d4 100644 --- a/src/server/game/Server/Packets/ItemPackets.h +++ b/src/server/game/Server/Packets/ItemPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -51,73 +51,100 @@ namespace WorldPackets std::vector<int32> Modifications; }; - class EquipError final : public ServerPacket + struct InvUpdate + { + struct InvItem + { + uint8 ContainerSlot = 0; + uint8 Slot = 0; + }; + + std::vector<InvItem> Items; + }; + + class InventoryChangeFailure final : public ServerPacket { public: - EquipError() : ServerPacket(SMSG_INVENTORY_CHANGE_FAILURE, 22) { } + InventoryChangeFailure() : ServerPacket(SMSG_INVENTORY_CHANGE_FAILURE, 22) { } WorldPacket const* Write() override; - InventoryResult msg; - ObjectGuid itemGUID1; - ObjectGuid itemGUID2; - uint32 level; + int8 BagResult = EQUIP_ERR_OK; /// @see enum InventoryResult + uint8 ContainerBSlot = 0; + ObjectGuid SrcContainer; + ObjectGuid DstContainer; + int32 SrcSlot = 0; + int32 LimitCategory = 0; + int32 Level = 0; + ObjectGuid Item[2]; }; - + class SplitItem final : public ClientPacket { public: SplitItem(WorldPacket&& packet) : ClientPacket(CMSG_SPLIT_ITEM, std::move(packet)) { } void Read() override; - - uint8 srcbag, srcslot, dstbag, dstslot; - uint32 itemCount, count; + + uint8 ToSlot = 0; + uint8 ToPackSlot = 0; + uint8 FromPackSlot = 0; + int32 Quantity = 0; + InvUpdate Inv; + uint8 FromSlot = 0; }; - + class SwapInvItem final : public ClientPacket { public: SwapInvItem(WorldPacket&& packet) : ClientPacket(CMSG_SWAP_INV_ITEM, std::move(packet)) { } void Read() override; - - uint32 itemCount; - uint8 srcslot, dstslot; + + InvUpdate Inv; + uint8 Slot1 = 0; /// Source Slot + uint8 Slot2 = 0; /// Destination Slot }; - + class SwapItem final : public ClientPacket { public: SwapItem(WorldPacket&& packet) : ClientPacket(CMSG_SWAP_ITEM, std::move(packet)) { } void Read() override; - - uint32 itemCount; - uint8 dstbag, dstslot, srcbag, srcslot; + + InvUpdate Inv; + uint8 SlotA = 0; + uint8 ContainerSlotB = 0; + uint8 SlotB = 0; + uint8 ContainerSlotA = 0; }; - + class AutoEquipItem final : public ClientPacket { public: AutoEquipItem(WorldPacket&& packet) : ClientPacket(CMSG_AUTOEQUIP_ITEM, std::move(packet)) { } void Read() override; - - uint32 itemCount; - uint8 srcbag, srcslot; + + uint8 Slot = 0; + InvUpdate Inv; + uint8 PackSlot = 0; }; - + class DestroyItem final : public ClientPacket { public: DestroyItem(WorldPacket&& packet) : ClientPacket(CMSG_DESTROY_ITEM, std::move(packet)) { } void Read() override; - - uint32 count; - uint8 bag, slot; + + uint32 Count = 0; + uint8 SlotNum = 0; + uint8 ContainerId = 0; }; + + ByteBuffer& operator>>(ByteBuffer& data, InvUpdate& invUpdate); } } diff --git a/src/server/game/Server/Packets/LootPackets.cpp b/src/server/game/Server/Packets/LootPackets.cpp index 45c45964210..5a8027858e3 100644 --- a/src/server/game/Server/Packets/LootPackets.cpp +++ b/src/server/game/Server/Packets/LootPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/LootPackets.h b/src/server/game/Server/Packets/LootPackets.h index d555040f3d9..c12cc7224c7 100644 --- a/src/server/game/Server/Packets/LootPackets.h +++ b/src/server/game/Server/Packets/LootPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -19,6 +19,7 @@ #define LootPackets_h__ #include "Packet.h" +#include "ObjectGuid.h" namespace WorldPackets { diff --git a/src/server/game/Server/Packets/MiscPackets.cpp b/src/server/game/Server/Packets/MiscPackets.cpp index 03960aa4e4c..31d8d2d54a1 100644 --- a/src/server/game/Server/Packets/MiscPackets.cpp +++ b/src/server/game/Server/Packets/MiscPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -163,3 +163,10 @@ WorldPacket const* WorldPackets::Misc::WorldServerInfo::Write() return &_worldPacket; } + +void WorldPackets::Misc::AreaTrigger::Read() +{ + _worldPacket >> AreaTriggerID; + Entered = _worldPacket.ReadBit(); + FromClient = _worldPacket.ReadBit(); +} diff --git a/src/server/game/Server/Packets/MiscPackets.h b/src/server/game/Server/Packets/MiscPackets.h index 8b0b010038b..706cdb491a2 100644 --- a/src/server/game/Server/Packets/MiscPackets.h +++ b/src/server/game/Server/Packets/MiscPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -189,6 +189,18 @@ namespace WorldPackets Optional<uint32> RestrictedAccountMaxMoney; uint32 DifficultyID = 0; }; + + class AreaTrigger final : public ClientPacket + { + public: + AreaTrigger(WorldPacket&& packet) : ClientPacket(CMSG_AREATRIGGER, std::move(packet)) { } + + void Read() override; + + int32 AreaTriggerID = 0; + bool Entered = false; + bool FromClient = false; + }; } } diff --git a/src/server/game/Server/Packets/MovementPackets.cpp b/src/server/game/Server/Packets/MovementPackets.cpp index 78f00e613cf..242515e52b6 100644 --- a/src/server/game/Server/Packets/MovementPackets.cpp +++ b/src/server/game/Server/Packets/MovementPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/MovementPackets.h b/src/server/game/Server/Packets/MovementPackets.h index b30be8cfb6f..4f511acb0e8 100644 --- a/src/server/game/Server/Packets/MovementPackets.h +++ b/src/server/game/Server/Packets/MovementPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/NPCPackets.cpp b/src/server/game/Server/Packets/NPCPackets.cpp index 60dbed09f1b..1df59cd469d 100644 --- a/src/server/game/Server/Packets/NPCPackets.cpp +++ b/src/server/game/Server/Packets/NPCPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/NPCPackets.h b/src/server/game/Server/Packets/NPCPackets.h index 221cb454765..823632e8f6f 100644 --- a/src/server/game/Server/Packets/NPCPackets.h +++ b/src/server/game/Server/Packets/NPCPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/QueryPackets.cpp b/src/server/game/Server/Packets/QueryPackets.cpp index 57b67f3a737..e3f8dc01335 100644 --- a/src/server/game/Server/Packets/QueryPackets.cpp +++ b/src/server/game/Server/Packets/QueryPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/QueryPackets.h b/src/server/game/Server/Packets/QueryPackets.h index 7f4dbd77ab3..f2ab09f2b6b 100644 --- a/src/server/game/Server/Packets/QueryPackets.h +++ b/src/server/game/Server/Packets/QueryPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -238,7 +238,7 @@ namespace WorldPackets size_t GetDataSize() const { // [1..3] always empty '\0' '\0' '\0' '\0' QuestItems counter - return sizeof(Type) + sizeof(DisplayID) + (Name->length() + (4 * 1)) + (IconName.size() + 1) + (CastBarCaption.size() + 1) + (UnkString.size() + 1) + sizeof(Data) + sizeof(Size) + sizeof(uint8) + (QuestItems.size() * sizeof(int32)) + sizeof(Expansion); + return sizeof(Type) + sizeof(DisplayID) + (Name->size() + (4 * 1)) + (IconName.size() + 1) + (CastBarCaption.size() + 1) + (UnkString.size() + 1) + sizeof(Data) + sizeof(Size) + sizeof(uint8) + (QuestItems.size() * sizeof(int32)) + sizeof(Expansion); } }; diff --git a/src/server/game/Server/Packets/QuestPackets.cpp b/src/server/game/Server/Packets/QuestPackets.cpp index fd7320eac7e..471d4846f16 100644 --- a/src/server/game/Server/Packets/QuestPackets.cpp +++ b/src/server/game/Server/Packets/QuestPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -374,3 +374,55 @@ WorldPacket const* WorldPackets::Quest::QuestGiverQuestDetails::Write() return &_worldPacket; } + +WorldPacket const* WorldPackets::Quest::QuestGiverRequestItems::Write() +{ + _worldPacket << QuestGiverGUID; + _worldPacket << QuestGiverCreatureID; + _worldPacket << QuestID; + _worldPacket << CompEmoteDelay; + _worldPacket << CompEmoteType; + _worldPacket << QuestFlags[0]; + _worldPacket << QuestFlags[1]; + _worldPacket << SuggestPartyMembers; + _worldPacket << MoneyToGet; + _worldPacket << int32(Collect.size()); + _worldPacket << int32(Currency.size()); + _worldPacket << StatusFlags; + + for (QuestObjectiveCollect const& obj : Collect) + { + _worldPacket << obj.ObjectID; + _worldPacket << obj.Amount; + } + + for (QuestCurrency const& cur : Currency) + { + _worldPacket << cur.CurrencyID; + _worldPacket << cur.Amount; + } + + _worldPacket.WriteBit(AutoLaunched); + _worldPacket.FlushBits(); + + _worldPacket.WriteBits(QuestTitle.size(), 9); + _worldPacket.WriteBits(CompletionText.size(), 12); + + _worldPacket.WriteString(QuestTitle); + _worldPacket.WriteString(CompletionText); + + return &_worldPacket; +} + +void WorldPackets::Quest::QuestGiverRequestReward::Read() +{ + _worldPacket >> QuestGiverGUID; + _worldPacket >> QuestID; +} + +void WorldPackets::Quest::QuestGiverQueryQuest::Read() +{ + _worldPacket >> QuestGiverGUID; + _worldPacket >> QuestID; + RespondToGiver = _worldPacket.ReadBit(); +} diff --git a/src/server/game/Server/Packets/QuestPackets.h b/src/server/game/Server/Packets/QuestPackets.h index 9aa77da47f4..c7d901aff01 100644 --- a/src/server/game/Server/Packets/QuestPackets.h +++ b/src/server/game/Server/Packets/QuestPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -94,14 +94,14 @@ namespace WorldPackets void Read() override; ObjectGuid QuestGiver; - int32 QuestID; + int32 QuestID = 0; }; - + struct QuestInfoChoiceItem { - int32 ItemID; - int32 Quantity; - int32 DisplayID; + int32 ItemID = 0; + int32 Quantity = 0; + int32 DisplayID = 0; }; struct QuestInfo @@ -124,8 +124,8 @@ namespace WorldPackets int32 RewardHonor = 0; float RewardKillHonor = 0.0f; int32 StartItem = 0; - int32 Flags = 0; - int32 FlagsEx = 0; + uint32 Flags = 0; + uint32 FlagsEx = 0; int32 POIContinent = 0; float POIx = 0.0f; float POIy = 0.0f; @@ -345,6 +345,66 @@ namespace WorldPackets bool StartCheat = false; bool AutoLaunched = false; }; + + struct QuestObjectiveCollect + { + QuestObjectiveCollect(int32 objectID = 0, int32 amount = 0) : ObjectID(objectID), Amount(amount) { } + int32 ObjectID; + int32 Amount; + }; + + struct QuestCurrency + { + QuestCurrency(int32 currencyID = 0, int32 amount = 0) : CurrencyID(currencyID), Amount(amount) { } + int32 CurrencyID; + int32 Amount; + }; + + class QuestGiverRequestItems final : public ServerPacket + { + public: + QuestGiverRequestItems() : ServerPacket(SMSG_QUESTGIVER_REQUEST_ITEMS, 300) { } + + WorldPacket const* Write() override; + + ObjectGuid QuestGiverGUID; + int32 QuestGiverCreatureID = 0; + int32 QuestID = 0; + int32 CompEmoteDelay = 0; + int32 CompEmoteType = 0; + bool AutoLaunched = false; + int32 SuggestPartyMembers = 0; + int32 MoneyToGet = 0; + std::vector<QuestObjectiveCollect> Collect; + std::vector<QuestCurrency> Currency; + int32 StatusFlags = 0; + uint32 QuestFlags[2] = {}; + std::string QuestTitle; + std::string CompletionText; + }; + + class QuestGiverRequestReward final : public ClientPacket + { + public: + QuestGiverRequestReward(WorldPacket&& packet) : ClientPacket(CMSG_QUESTGIVER_REQUEST_REWARD, std::move(packet)) { } + + void Read() override; + + ObjectGuid QuestGiverGUID; + int32 QuestID = 0; + }; + + class QuestGiverQueryQuest final : public ClientPacket + { + public: + QuestGiverQueryQuest(WorldPacket&& packet) : ClientPacket(CMSG_QUESTGIVER_QUERY_QUEST, std::move(packet)) { } + + void Read() override; + + ObjectGuid QuestGiverGUID; + int32 QuestID = 0; + bool RespondToGiver = false; + }; } } diff --git a/src/server/game/Server/Packets/ReputationPackets.cpp b/src/server/game/Server/Packets/ReputationPackets.cpp index 4acecf851f4..8dce2936835 100644 --- a/src/server/game/Server/Packets/ReputationPackets.cpp +++ b/src/server/game/Server/Packets/ReputationPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/ReputationPackets.h b/src/server/game/Server/Packets/ReputationPackets.h index 387ae9b0318..578e6e35911 100644 --- a/src/server/game/Server/Packets/ReputationPackets.h +++ b/src/server/game/Server/Packets/ReputationPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/SpellPackets.cpp b/src/server/game/Server/Packets/SpellPackets.cpp index 0f68a37799e..0ec4cc4a09a 100644 --- a/src/server/game/Server/Packets/SpellPackets.cpp +++ b/src/server/game/Server/Packets/SpellPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/SpellPackets.h b/src/server/game/Server/Packets/SpellPackets.h index f5351cad4e3..d131eefc765 100644 --- a/src/server/game/Server/Packets/SpellPackets.h +++ b/src/server/game/Server/Packets/SpellPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/SystemPackets.cpp b/src/server/game/Server/Packets/SystemPackets.cpp index 4a7be4ed591..cfb61039fc1 100644 --- a/src/server/game/Server/Packets/SystemPackets.cpp +++ b/src/server/game/Server/Packets/SystemPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/SystemPackets.h b/src/server/game/Server/Packets/SystemPackets.h index 37b85a48b2f..119ab0ec8f7 100644 --- a/src/server/game/Server/Packets/SystemPackets.h +++ b/src/server/game/Server/Packets/SystemPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/TalentPackets.cpp b/src/server/game/Server/Packets/TalentPackets.cpp index d340b476cf9..9713951ed7d 100644 --- a/src/server/game/Server/Packets/TalentPackets.cpp +++ b/src/server/game/Server/Packets/TalentPackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -47,7 +47,7 @@ void WorldPackets::Talent::LearnTalent::Read() { uint32 count; _worldPacket >> count; - + for (uint32 i = 0; i < count; ++i) { uint16 talent; diff --git a/src/server/game/Server/Packets/TalentPackets.h b/src/server/game/Server/Packets/TalentPackets.h index 2bc8b3934a8..3a1e6229ee9 100644 --- a/src/server/game/Server/Packets/TalentPackets.h +++ b/src/server/game/Server/Packets/TalentPackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -57,7 +57,7 @@ namespace WorldPackets uint32 SpecGroupIndex = 0; }; - + class LearnTalent final : public ClientPacket { public: @@ -68,7 +68,7 @@ namespace WorldPackets void Read() override; std::vector<uint16> Talents; - + }; } } diff --git a/src/server/game/Server/Packets/TradePackets.h b/src/server/game/Server/Packets/TradePackets.h index aff21ff32dc..b964a24e6fe 100644 --- a/src/server/game/Server/Packets/TradePackets.h +++ b/src/server/game/Server/Packets/TradePackets.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/WorldStatePackets.cpp b/src/server/game/Server/Packets/WorldStatePackets.cpp index 919ad11e738..68b9e1c76a9 100644 --- a/src/server/game/Server/Packets/WorldStatePackets.cpp +++ b/src/server/game/Server/Packets/WorldStatePackets.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Packets/WorldStatePackets.h b/src/server/game/Server/Packets/WorldStatePackets.h index 7f9cdfe80de..3b57a9c29c4 100644 --- a/src/server/game/Server/Packets/WorldStatePackets.h +++ b/src/server/game/Server/Packets/WorldStatePackets.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Protocol/Opcodes.cpp b/src/server/game/Server/Protocol/Opcodes.cpp index eb35eab8007..bf0b9eec068 100644 --- a/src/server/game/Server/Protocol/Opcodes.cpp +++ b/src/server/game/Server/Protocol/Opcodes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -143,7 +143,7 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_ADD_MUTE, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_ADD_VOICE_IGNORE, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_ALTER_APPEARANCE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleAlterAppearance ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_AREATRIGGER, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleAreaTriggerOpcode ); + DEFINE_HANDLER(CMSG_AREATRIGGER, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Misc::AreaTrigger, &WorldSession::HandleAreaTriggerOpcode); DEFINE_OPCODE_HANDLER_OLD(CMSG_AREA_SPIRIT_HEALER_QUERY, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleAreaSpiritHealerQueryOpcode); DEFINE_OPCODE_HANDLER_OLD(CMSG_AREA_SPIRIT_HEALER_QUEUE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleAreaSpiritHealerQueueOpcode); DEFINE_OPCODE_HANDLER_OLD(CMSG_ARENA_TEAM_ACCEPT, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleArenaTeamAcceptOpcode ); @@ -230,28 +230,28 @@ void OpcodeTable::Initialize() DEFINE_HANDLER(CMSG_CAST_SPELL, STATUS_LOGGEDIN, PROCESS_THREADSAFE, WorldPackets::Spells::SpellCastRequest, &WorldSession::HandleCastSpellOpcode); DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANGEPLAYER_DIFFICULTY, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANGE_SEATS_ON_CONTROLLED_VEHICLE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChangeSeatsOnControlledVehicle); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_ANNOUNCEMENTS, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelAnnouncements ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_BAN, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelBan ); - DEFINE_HANDLER(CMSG_CHANNEL_DISPLAY_LIST, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelListRequest, &WorldSession::HandleChannelList); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_INVITE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelInvite ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_KICK, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelKick ); - DEFINE_HANDLER(CMSG_CHANNEL_LIST, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelListRequest, &WorldSession::HandleChannelList); + DEFINE_HANDLER(CMSG_CHANNEL_ANNOUNCEMENTS, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelCommand<&Channel::Announce>); + DEFINE_HANDLER(CMSG_CHANNEL_BAN, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::Ban>); + DEFINE_HANDLER(CMSG_CHANNEL_DECLINE_INVITE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelCommand<&Channel::DeclineInvite>); + DEFINE_HANDLER(CMSG_CHANNEL_DISPLAY_LIST, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelCommand<&Channel::List>); + DEFINE_HANDLER(CMSG_CHANNEL_INVITE, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::Invite>); + DEFINE_HANDLER(CMSG_CHANNEL_KICK, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::Kick>); + DEFINE_HANDLER(CMSG_CHANNEL_LIST, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelCommand<&Channel::List>); DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_MODERATE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_MODERATOR, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelModerator ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_MUTE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelMute ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_OWNER, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelOwner ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_PASSWORD, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelPassword ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_ROSTER_INFO, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_SET_OWNER, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelSetOwner ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_SILENCE_ALL, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_SILENCE_VOICE, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_UNBAN, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelUnban ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_UNMODERATOR, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelUnmoderator ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_UNMUTE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelUnmute ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_UNSILENCE_ALL, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_UNSILENCE_VOICE, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_VOICE_OFF, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelVoiceOnOpcode ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CHANNEL_VOICE_ON, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChannelVoiceOnOpcode ); + DEFINE_HANDLER(CMSG_CHANNEL_MODERATOR, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::SetModerator>); + DEFINE_HANDLER(CMSG_CHANNEL_MUTE, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::SetMute>); + DEFINE_HANDLER(CMSG_CHANNEL_OWNER, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelCommand<&Channel::SendWhoOwner>); + DEFINE_HANDLER(CMSG_CHANNEL_PASSWORD, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::Password>); + DEFINE_HANDLER(CMSG_CHANNEL_SET_OWNER, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::SetOwner>); + DEFINE_HANDLER(CMSG_CHANNEL_SILENCE_ALL, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::SilenceAll>); + DEFINE_HANDLER(CMSG_CHANNEL_SILENCE_VOICE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::SilenceVoice>); + DEFINE_HANDLER(CMSG_CHANNEL_UNBAN, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::UnBan>); + DEFINE_HANDLER(CMSG_CHANNEL_UNMODERATOR, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::UnsetModerator>); + DEFINE_HANDLER(CMSG_CHANNEL_UNMUTE, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::UnsetMute>); + DEFINE_HANDLER(CMSG_CHANNEL_UNSILENCE_ALL, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::UnsilenceAll>); + DEFINE_HANDLER(CMSG_CHANNEL_UNSILENCE_VOICE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelPlayerCommand<&Channel::UnsilenceVoice>); + DEFINE_HANDLER(CMSG_CHANNEL_VOICE_OFF, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelCommand<&Channel::DeVoice>); + DEFINE_HANDLER(CMSG_CHANNEL_VOICE_ON, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, WorldPackets::Channel::ChannelPlayerCommand, &WorldSession::HandleChannelCommand<&Channel::Voice>); DEFINE_HANDLER(CMSG_CHAR_CREATE, STATUS_AUTHED, PROCESS_THREADUNSAFE, WorldPackets::Character::CreateChar, &WorldSession::HandleCharCreateOpcode); DEFINE_HANDLER(CMSG_CHAR_CUSTOMIZE, STATUS_AUTHED, PROCESS_THREADUNSAFE, WorldPackets::Character::CharCustomize, &WorldSession::HandleCharCustomizeOpcode); DEFINE_HANDLER(CMSG_CHAR_DELETE, STATUS_AUTHED, PROCESS_THREADUNSAFE, WorldPackets::Character::DeleteChar, &WorldSession::HandleCharDeleteOpcode); @@ -261,7 +261,6 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_CHAR_UNDELETE_ENUM, STATUS_AUTHED, PROCESS_THREADUNSAFE, &WorldSession::HandleCharUndeleteEnumOpcode ); DEFINE_OPCODE_HANDLER_OLD(CMSG_CHAT_FILTERED, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_CHAT_IGNORED, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleChatIgnoredOpcode ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_CLEAR_CHANNEL_WATCH, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_CLEAR_RAID_MARKER, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_CLEAR_TRADE_ITEM, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleClearTradeItemOpcode ); DEFINE_OPCODE_HANDLER_OLD(CMSG_COMMENTATOR_ENABLE, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); @@ -298,13 +297,15 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_EQUIPMENT_SET_DELETE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleEquipmentSetDelete ); DEFINE_HANDLER(CMSG_EQUIPMENT_SET_SAVE, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::EquipmentSet::SaveEquipmentSet, &WorldSession::HandleEquipmentSetSave); DEFINE_OPCODE_HANDLER_OLD(CMSG_EQUIPMENT_SET_USE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleEquipmentSetUse ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_FACTION_BONUS_INFO, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_FAR_SIGHT, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleFarSightOpcode ); DEFINE_OPCODE_HANDLER_OLD(CMSG_FORCE_MOVE_ROOT_ACK, STATUS_UNHANDLED, PROCESS_THREADSAFE, &WorldSession::HandleMoveRootAck ); DEFINE_OPCODE_HANDLER_OLD(CMSG_FORCE_MOVE_UNROOT_ACK, STATUS_UNHANDLED, PROCESS_THREADSAFE, &WorldSession::HandleMoveUnRootAck ); DEFINE_HANDLER(CMSG_GAMEOBJECT_QUERY, STATUS_LOGGEDIN, PROCESS_INPLACE, WorldPackets::Query::QueryGameObject, &WorldSession::HandleGameObjectQueryOpcode); DEFINE_HANDLER(CMSG_GAMEOBJ_REPORT_USE, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::GameObject::GameObjectReportUse, &WorldSession::HandleGameobjectReportUse); DEFINE_HANDLER(CMSG_GAMEOBJ_USE, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::GameObject::GameObjectUse, &WorldSession::HandleGameObjectUseOpcode); + DEFINE_OPCODE_HANDLER_OLD(CMSG_GARRISON_COMPLETE_MISSION, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); + DEFINE_OPCODE_HANDLER_OLD(CMSG_GARRISON_MISSION_BONUS_ROLL, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); + DEFINE_OPCODE_HANDLER_OLD(CMSG_GARRISON_START_MISSION, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_GET_MAIL_LIST, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGetMailList); DEFINE_OPCODE_HANDLER_OLD(CMSG_GET_MIRRORIMAGE_DATA, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleMirrorImageDataRequest ); DEFINE_OPCODE_HANDLER_OLD(CMSG_GMRESPONSE_RESOLVE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGMResponseResolve ); @@ -334,6 +335,7 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_GUILD_ACHIEVEMENT_PROGRESS_QUERY, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGuildAchievementProgressQuery); DEFINE_OPCODE_HANDLER_OLD(CMSG_GUILD_ADD_RANK, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGuildAddRankOpcode ); DEFINE_OPCODE_HANDLER_OLD(CMSG_GUILD_ASSIGN_MEMBER_RANK, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGuildAssignRankOpcode ); + DEFINE_OPCODE_HANDLER_OLD(CMSG_GUILD_AUTO_DECLINE_INVITATION, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_GUILD_BANKER_ACTIVATE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGuildBankerActivate ); DEFINE_OPCODE_HANDLER_OLD(CMSG_GUILD_BANK_BUY_TAB, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGuildBankBuyTab ); DEFINE_OPCODE_HANDLER_OLD(CMSG_GUILD_BANK_DEPOSIT_MONEY, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleGuildBankDepositMoney ); @@ -434,6 +436,7 @@ void OpcodeTable::Initialize() DEFINE_HANDLER(CMSG_MESSAGECHAT_DND, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Chat::ChatMessageDND, &WorldSession::HandleChatMessageDNDOpcode); DEFINE_HANDLER(CMSG_MESSAGECHAT_EMOTE, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Chat::ChatMessageEmote, &WorldSession::HandleChatMessageEmoteOpcode); DEFINE_HANDLER(CMSG_MESSAGECHAT_GUILD, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Chat::ChatMessage, &WorldSession::HandleChatMessageOpcode); + DEFINE_OPCODE_HANDLER_OLD(CMSG_MESSAGECHAT_INSTANCE, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_HANDLER(CMSG_MESSAGECHAT_OFFICER, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Chat::ChatMessage, &WorldSession::HandleChatMessageOpcode); DEFINE_HANDLER(CMSG_MESSAGECHAT_PARTY, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Chat::ChatMessage, &WorldSession::HandleChatMessageOpcode); DEFINE_HANDLER(CMSG_MESSAGECHAT_RAID, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Chat::ChatMessage, &WorldSession::HandleChatMessageOpcode); @@ -542,8 +545,8 @@ void OpcodeTable::Initialize() DEFINE_HANDLER(CMSG_QUESTGIVER_CHOOSE_REWARD, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Quest::QuestGiverChooseReward, &WorldSession::HandleQuestgiverChooseRewardOpcode); DEFINE_HANDLER(CMSG_QUESTGIVER_COMPLETE_QUEST, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Quest::QuestGiverCompleteQuest, &WorldSession::HandleQuestgiverCompleteQuest); DEFINE_HANDLER(CMSG_QUESTGIVER_HELLO, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Quest::QuestGiverHello, &WorldSession::HandleQuestgiverHelloOpcode); - DEFINE_OPCODE_HANDLER_OLD(CMSG_QUESTGIVER_QUERY_QUEST, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleQuestgiverQueryQuestOpcode); - DEFINE_OPCODE_HANDLER_OLD(CMSG_QUESTGIVER_REQUEST_REWARD, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleQuestgiverRequestRewardOpcode); + DEFINE_HANDLER(CMSG_QUESTGIVER_QUERY_QUEST, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Quest::QuestGiverQueryQuest, &WorldSession::HandleQuestgiverQueryQuestOpcode); + DEFINE_HANDLER(CMSG_QUESTGIVER_REQUEST_REWARD, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Quest::QuestGiverRequestReward, &WorldSession::HandleQuestgiverRequestRewardOpcode); DEFINE_HANDLER(CMSG_QUESTGIVER_STATUS_MULTIPLE_QUERY, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Quest::QuestGiverStatusMultipleQuery, &WorldSession::HandleQuestgiverStatusMultipleQuery); DEFINE_HANDLER(CMSG_QUESTGIVER_STATUS_QUERY, STATUS_LOGGEDIN, PROCESS_INPLACE, WorldPackets::Quest::QuestGiverStatusQuery, &WorldSession::HandleQuestgiverStatusQueryOpcode); DEFINE_OPCODE_HANDLER_OLD(CMSG_QUESTLOG_REMOVE_QUEST, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleQuestLogRemoveQuest ); @@ -584,6 +587,7 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_RESURRECT_RESPONSE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleResurrectResponseOpcode ); DEFINE_OPCODE_HANDLER_OLD(CMSG_RETURN_TO_GRAVEYARD, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleReturnToGraveyard ); DEFINE_OPCODE_HANDLER_OLD(CMSG_ROLE_POLL_BEGIN, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleRolePollBeginOpcode ); + DEFINE_OPCODE_HANDLER_OLD(CMSG_ROUTER_CLIENT_LOG_STREAMING_ERROR, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SAVE_CUF_PROFILES, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::HandleSaveCUFProfiles ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SELF_RES, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSelfResOpcode ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SELL_ITEM, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSellItemOpcode ); @@ -597,7 +601,6 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_ACTIVE_VOICE_CHANNEL, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSetActiveVoiceChannel ); // STATUS_AUTHED DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_ALLOW_LOW_LEVEL_RAID1, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_ALLOW_LOW_LEVEL_RAID2, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_CHANNEL_WATCH, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSetChannelWatch ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_CONTACT_NOTES, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSetContactNotesOpcode ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_CURRENCY_FLAGS, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_EVERYONE_IS_ASSISTANT, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); @@ -608,6 +611,8 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_PET_SLOT, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_PLAYER_DECLINED_NAMES, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSetPlayerDeclinedNames ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_PREFERED_CEMETERY, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); + DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_PVP, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); + DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_RAID_DIFFICULTY, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_RELATIVE_POSITION, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SET_SAVED_INSTANCE_EXTEND, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSetSavedInstanceExtend ); DEFINE_HANDLER(CMSG_SET_SELECTION, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Misc::SetSelection, &WorldSession::HandleSetSelectionOpcode); @@ -632,6 +637,7 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(CMSG_SUBMIT_COMPLAIN, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SUGGESTION_SUBMIT, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SUMMON_RESPONSE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSummonResponseOpcode ); + DEFINE_OPCODE_HANDLER_OLD(CMSG_SUPPORT_TICKET_SUBMIT_COMPLAINT, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SUSPEND_COMMS_ACK, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(CMSG_SUSPEND_TOKEN_RESPONSE, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_HANDLER(CMSG_SWAP_INV_ITEM, STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, WorldPackets::Item::SwapInvItem, &WorldSession::HandleSwapInvItemOpcode); @@ -682,7 +688,6 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(MSG_LIST_STABLED_PETS, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleListStabledPetsOpcode ); DEFINE_OPCODE_HANDLER_OLD(MSG_MOVE_CHARM_TELEPORT_CHEAT, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(MSG_MOVE_TELEPORT_CHEAT, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); - DEFINE_OPCODE_HANDLER_OLD(MSG_MOVE_TIME_SKIPPED, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(MSG_MOVE_TOGGLE_COLLISION_CHEAT, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(MSG_NOTIFY_PARTY_SQUELCH, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(MSG_PARTY_ASSIGNMENT, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandlePartyAssignmentOpcode ); @@ -690,10 +695,8 @@ void OpcodeTable::Initialize() DEFINE_OPCODE_HANDLER_OLD(MSG_PETITION_RENAME, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandlePetitionRenameOpcode ); DEFINE_OPCODE_HANDLER_OLD(MSG_QUEST_PUSH_RESULT, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleQuestPushResult ); DEFINE_OPCODE_HANDLER_OLD(MSG_RAID_READY_CHECK, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleRaidReadyCheckOpcode ); - DEFINE_OPCODE_HANDLER_OLD(MSG_RAID_READY_CHECK_CONFIRM, STATUS_UNHANDLED, PROCESS_INPLACE, &WorldSession::Handle_NULL ); DEFINE_OPCODE_HANDLER_OLD(MSG_RAID_READY_CHECK_FINISHED, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleRaidReadyCheckFinishedOpcode); DEFINE_OPCODE_HANDLER_OLD(MSG_RAID_TARGET_UPDATE, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleRaidTargetUpdateOpcode ); - DEFINE_OPCODE_HANDLER_OLD(MSG_RANDOM_ROLL, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleRandomRollOpcode ); DEFINE_OPCODE_HANDLER_OLD(MSG_SAVE_GUILD_EMBLEM, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSaveGuildEmblemOpcode ); DEFINE_OPCODE_HANDLER_OLD(MSG_SET_DUNGEON_DIFFICULTY, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSetDungeonDifficultyOpcode); DEFINE_OPCODE_HANDLER_OLD(MSG_SET_RAID_DIFFICULTY, STATUS_UNHANDLED, PROCESS_THREADUNSAFE, &WorldSession::HandleSetRaidDifficultyOpcode ); @@ -714,10 +717,11 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_ACHIEVEMENT_DELETED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ACHIEVEMENT_EARNED, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ACTION_BUTTONS, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); - DEFINE_SERVER_OPCODE_HANDLER(SMSG_ACTIVATETAXIREPLY, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_ACTIVATE_TAXI_REPLY, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ADDON_INFO, STATUS_NEVER, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ADD_RUNE_POWER, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ADJUST_SPLINE_DURATION, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_AE_LOOT_TARGETS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_AI_REACTION, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ALL_ACHIEVEMENT_DATA, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); DEFINE_SERVER_OPCODE_HANDLER(SMSG_AREA_SPIRIT_HEALER_TIME, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -738,6 +742,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_ATTACKSWING_BADFACING, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ATTACKSWING_CANT_ATTACK, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ATTACKSWING_DEADTARGET, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_ATTACKSWING_ERROR, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ATTACKSWING_NOTINRANGE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_AUCTION_BIDDER_LIST_RESULT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_AUCTION_BIDDER_NOTIFICATION, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -767,7 +772,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_PLAYER_POSITIONS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_PORT_DENIED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_RATED_INFO, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); - DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_STATUS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_STATUS_NONE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_STATUS_QUEUED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_STATUS_ACTIVE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_BATTLEFIELD_STATUS_NEEDCONFIRMATION, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -816,7 +821,6 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_CANCEL_COMBAT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CAST_FAILED, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CHANNEL_LIST, STATUS_NEVER, CONNECTION_TYPE_REALM); - DEFINE_SERVER_OPCODE_HANDLER(SMSG_CHANNEL_MEMBER_COUNT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CHANNEL_NOTIFY, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CHANNEL_NOTIFY_JOINED, STATUS_NEVER, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CHANNEL_NOTIFY_LEFT, STATUS_NEVER, CONNECTION_TYPE_REALM); @@ -860,6 +864,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_COMSAT_CONNECT_FAIL, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_COMSAT_DISCONNECT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_COMSAT_RECONNECT_TRY, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_CONQUEST_FORMULA_CONSTANTS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CONTACT_LIST, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CONTACT_STATUS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_CONVERT_RUNE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -882,7 +887,6 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_DEATH_RELEASE_LOC, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_DEBUG_RUNE_REGEN, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_DEFENSE_MESSAGE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); - DEFINE_SERVER_OPCODE_HANDLER(SMSG_DESTROY_OBJECT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_DESTRUCTIBLE_BUILDING_DAMAGE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_DIFFERENT_INSTANCE_FROM_PARTY, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_DISENCHANT_CREDIT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -911,6 +915,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_EQUIPMENT_SET_USE_RESULT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_EXPECTED_SPAM_RECORDS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_EXPLORATION_EXPERIENCE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_FACTION_BONUS_INFO, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_FAILED_PLAYER_CONDITION, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_FEATURE_SYSTEM_STATUS, STATUS_NEVER, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_FEATURE_SYSTEM_STATUS_GLUE_SCREEN, STATUS_NEVER, CONNECTION_TYPE_REALM); @@ -986,6 +991,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_GUILD_EVENT_BANK_MONEY_CHANGED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_GUILD_EVENT_LOG_QUERY_RESULT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_GUILD_EVENT_PRESENCE_CHANGE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_GUILD_EVENT_RANK_CHANGED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_GUILD_FLAGGED_FOR_RENAME, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_GUILD_INVITE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_GUILD_INVITE_CANCEL, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -1170,8 +1176,8 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_OPEN_LFG_DUNGEON_FINDER, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_OVERRIDE_LIGHT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_PAGE_TEXT_QUERY_RESPONSE, STATUS_NEVER, CONNECTION_TYPE_REALM); - DEFINE_SERVER_OPCODE_HANDLER(SMSG_PARTYKILLLOG, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_PARTY_COMMAND_RESULT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_PARTY_KILL_LOG, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_PARTY_MEMBER_STATS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_PARTY_MEMBER_STATS_FULL, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_PAUSE_MIRROR_TIMER, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -1231,7 +1237,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTGIVER_QUEST_FAILED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTGIVER_QUEST_INVALID, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTGIVER_QUEST_LIST, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); - DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTGIVER_REQUEST_ITEMS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTGIVER_REQUEST_ITEMS, STATUS_NEVER, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTGIVER_STATUS, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTGIVER_STATUS_MULTIPLE, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); DEFINE_SERVER_OPCODE_HANDLER(SMSG_QUESTLOG_FULL, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -1249,8 +1255,12 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_INSTANCE_INFO, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_INSTANCE_MESSAGE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_MARKERS_CHANGED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_READY_CHECK, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_READY_CHECK_COMPLETED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_READY_CHECK_CONFIRM, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_READY_CHECK_THROTTLED_ERROR, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RAID_SUMMON_FAILED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_RANDOM_ROLL, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RANDOMIZE_CHAR_NAME, STATUS_NEVER, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RATED_BG_RATING, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RATED_BG_STATS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -1273,6 +1283,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_RESET_COMPRESSION_CONTEXT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RESET_FAILED_NOTIFY, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RESPOND_INSPECT_ACHIEVEMENTS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_RESUME_CAST_BAR, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RESUME_COMMS, STATUS_NEVER, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RESUME_TOKEN, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RESURRECT_FAILED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -1281,6 +1292,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_ROLE_POLL_BEGIN, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_RWHOIS, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_SELL_ITEM, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_SELL_RESPONSE, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_SEND_MAIL_RESULT, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_SEND_SPELL_CHARGES, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_SEND_SPELL_HISTORY, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); @@ -1450,6 +1462,7 @@ void OpcodeTable::Initialize() DEFINE_SERVER_OPCODE_HANDLER(SMSG_WORLD_SERVER_INFO, STATUS_NEVER, CONNECTION_TYPE_INSTANCE); DEFINE_SERVER_OPCODE_HANDLER(SMSG_WORLD_STATE_UI_TIMER_UPDATE, STATUS_NEVER, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_XP_GAIN_ABORTED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); + DEFINE_SERVER_OPCODE_HANDLER(SMSG_XP_GAIN_ENABLED, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); DEFINE_SERVER_OPCODE_HANDLER(SMSG_ZONE_UNDER_ATTACK, STATUS_UNHANDLED, CONNECTION_TYPE_REALM); #undef DEFINE_SERVER_OPCODE_HANDLER diff --git a/src/server/game/Server/Protocol/Opcodes.h b/src/server/game/Server/Protocol/Opcodes.h index d95ed8b0bc6..3177cb77d2a 100644 --- a/src/server/game/Server/Protocol/Opcodes.h +++ b/src/server/game/Server/Protocol/Opcodes.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -43,10 +43,10 @@ enum OpcodeMisc : uint32 NULL_OPCODE = 0xBADD }; -// CMSGs 6.0.3.19116 +// CMSGs 6.0.3.19342 enum OpcodeClient : uint32 { - CMSG_ACCEPT_LEVEL_GRANT = 0xBADD, + CMSG_ACCEPT_LEVEL_GRANT = 0x1921, CMSG_ACCEPT_TRADE = 0xBADD, CMSG_ACTIVATETAXI = 0x0311, CMSG_ACTIVATETAXIEXPRESS = 0x1B52, @@ -55,7 +55,7 @@ enum OpcodeClient : uint32 CMSG_ADD_IGNORE = 0x1321, CMSG_ADD_MUTE = 0x098A, CMSG_ADD_VOICE_IGNORE = 0xBADD, - CMSG_ALTER_APPEARANCE = 0xBADD, + CMSG_ALTER_APPEARANCE = 0x13E9, CMSG_AREATRIGGER = 0x01B4, CMSG_AREA_SPIRIT_HEALER_QUERY = 0xBADD, CMSG_AREA_SPIRIT_HEALER_QUEUE = 0xBADD, @@ -89,11 +89,10 @@ enum OpcodeClient : uint32 CMSG_AUTOSTORE_BANK_ITEM = 0x0732, CMSG_AUTOSTORE_GROUND_ITEM = 0xBADD, CMSG_AUTOSTORE_LOOT_ITEM = 0x0609, - CMSG_AUTO_DECLINE_GUILD_INVITE = 0xBADD, CMSG_AUTO_DECLINE_GUILD_INVITES = 0xBADD, CMSG_BANKER_ACTIVATE = 0x1B24, CMSG_BATTLEFIELD_JOIN = 0xBADD, - CMSG_BATTLEFIELD_LEAVE = 0xBADD, + CMSG_BATTLEFIELD_LEAVE = 0x06F1, CMSG_BATTLEFIELD_LIST = 0x03B1, CMSG_BATTLEFIELD_MGR_ENTRY_INVITE_RESPONSE = 0x059A, CMSG_BATTLEFIELD_MGR_EXIT_REQUEST = 0x1381, @@ -140,38 +139,38 @@ enum OpcodeClient : uint32 CMSG_CALENDAR_UPDATE_EVENT = 0xBADD, CMSG_CANCEL_AURA = 0x08AE, CMSG_CANCEL_AUTO_REPEAT_SPELL = 0xBADD, - CMSG_CANCEL_CAST = 0xBADD, - CMSG_CANCEL_CHANNELLING = 0xBADD, + CMSG_CANCEL_CAST = 0x0071, + CMSG_CANCEL_CHANNELLING = 0x0BE6, CMSG_CANCEL_GROWTH_AURA = 0xBADD, - CMSG_CANCEL_MOUNT_AURA = 0xBADD, + CMSG_CANCEL_MOUNT_AURA = 0x03E6, CMSG_CANCEL_QUEUED_SPELL = 0xBADD, CMSG_CANCEL_TEMP_ENCHANTMENT = 0xBADD, CMSG_CANCEL_TRADE = 0x1159, CMSG_CAST_SPELL = 0x08FE, CMSG_CHANGEPLAYER_DIFFICULTY = 0xBADD, CMSG_CHANGE_SEATS_ON_CONTROLLED_VEHICLE = 0xBADD, - CMSG_CHANNEL_ANNOUNCEMENTS = 0xBADD, - CMSG_CHANNEL_BAN = 0xBADD, + CMSG_CHANNEL_ANNOUNCEMENTS = 0x1313, + CMSG_CHANNEL_BAN = 0x1A82, + CMSG_CHANNEL_DECLINE_INVITE = 0x19DB, CMSG_CHANNEL_DISPLAY_LIST = 0x093B, - CMSG_CHANNEL_INVITE = 0xBADD, - CMSG_CHANNEL_KICK = 0xBADD, - CMSG_CHANNEL_LIST = 0x093B, + CMSG_CHANNEL_INVITE = 0x1933, + CMSG_CHANNEL_KICK = 0x0A2A, + CMSG_CHANNEL_LIST = 0x091C, CMSG_CHANNEL_MODERATE = 0xBADD, - CMSG_CHANNEL_MODERATOR = 0xBADD, - CMSG_CHANNEL_MUTE = 0xBADD, - CMSG_CHANNEL_OWNER = 0xBADD, - CMSG_CHANNEL_PASSWORD = 0xBADD, - CMSG_CHANNEL_ROSTER_INFO = 0xBADD, - CMSG_CHANNEL_SET_OWNER = 0xBADD, - CMSG_CHANNEL_SILENCE_ALL = 0xBADD, - CMSG_CHANNEL_SILENCE_VOICE = 0xBADD, - CMSG_CHANNEL_UNBAN = 0xBADD, - CMSG_CHANNEL_UNMODERATOR = 0xBADD, - CMSG_CHANNEL_UNMUTE = 0xBADD, - CMSG_CHANNEL_UNSILENCE_ALL = 0xBADD, - CMSG_CHANNEL_UNSILENCE_VOICE = 0xBADD, - CMSG_CHANNEL_VOICE_OFF = 0xBADD, - CMSG_CHANNEL_VOICE_ON = 0xBADD, + CMSG_CHANNEL_MODERATOR = 0x088B, + CMSG_CHANNEL_MUTE = 0x18AB, + CMSG_CHANNEL_OWNER = 0x0BFA, + CMSG_CHANNEL_PASSWORD = 0x1113, + CMSG_CHANNEL_SET_OWNER = 0x0174, + CMSG_CHANNEL_SILENCE_ALL = 0x11FB, + CMSG_CHANNEL_SILENCE_VOICE = 0x0AA3, + CMSG_CHANNEL_UNBAN = 0x0BCB, + CMSG_CHANNEL_UNMODERATOR = 0x1AA1, + CMSG_CHANNEL_UNMUTE = 0x0A81, + CMSG_CHANNEL_UNSILENCE_ALL = 0x1164, + CMSG_CHANNEL_UNSILENCE_VOICE = 0x0B4C, + CMSG_CHANNEL_VOICE_OFF = 0x016C, + CMSG_CHANNEL_VOICE_ON = 0x0374, CMSG_CHAR_CREATE = 0x070D, CMSG_CHAR_CUSTOMIZE = 0x072A, CMSG_CHAR_DELETE = 0x030E, @@ -181,7 +180,6 @@ enum OpcodeClient : uint32 CMSG_CHAR_UNDELETE_ENUM = 0x0F2D, CMSG_CHAT_FILTERED = 0xBADD, CMSG_CHAT_IGNORED = 0xBADD, - CMSG_CLEAR_CHANNEL_WATCH = 0xBADD, CMSG_CLEAR_RAID_MARKER = 0xBADD, CMSG_CLEAR_TRADE_ITEM = 0xBADD, CMSG_COMMENTATOR_ENABLE = 0xBADD, @@ -193,7 +191,7 @@ enum OpcodeClient : uint32 CMSG_COMMENTATOR_INSTANCE_COMMAND = 0xBADD, CMSG_COMMENTATOR_SKIRMISH_QUEUE_COMMAND = 0xBADD, CMSG_COMMENTATOR_START_WARGAME = 0xBADD, - CMSG_COMPLAIN = 0xBADD, + CMSG_COMPLAIN = 0x0917, CMSG_COMPLETE_CINEMATIC = 0xBADD, CMSG_COMPLETE_MOVIE = 0xBADD, CMSG_CONNECT_TO_FAILED = 0x0135, @@ -202,7 +200,6 @@ enum OpcodeClient : uint32 CMSG_CREATURE_QUERY = 0x0505, CMSG_DANCE_QUERY = 0xBADD, CMSG_DB_QUERY_BULK = 0x138B, - CMSG_DECLINE_CHANNEL_INVITE = 0xBADD, CMSG_DEL_FRIEND = 0x0F2A, CMSG_DEL_IGNORE = 0x033D, CMSG_DEL_MUTE = 0x0128, @@ -219,7 +216,6 @@ enum OpcodeClient : uint32 CMSG_EQUIPMENT_SET_DELETE = 0xBADD, CMSG_EQUIPMENT_SET_SAVE = 0x1B54, CMSG_EQUIPMENT_SET_USE = 0xBADD, - CMSG_FACTION_BONUS_INFO = 0x0928, CMSG_FAR_SIGHT = 0xBADD, CMSG_FORCE_MOVE_ROOT_ACK = 0x0B73, CMSG_FORCE_MOVE_UNROOT_ACK = 0xBADD, @@ -228,6 +224,9 @@ enum OpcodeClient : uint32 CMSG_GAMEOBJ_USE = 0x082E, CMSG_GAMESPEED_SET = 0xBADD, CMSG_GAMETIME_SET = 0xBADD, + CMSG_GARRISON_COMPLETE_MISSION = 0x102C, + CMSG_GARRISON_MISSION_BONUS_ROLL = 0x02C2, + CMSG_GARRISON_START_MISSION = 0x1624, CMSG_GETDEATHBINDZONE = 0xBADD, CMSG_GET_MAIL_LIST = 0x0BD3, CMSG_GET_MIRRORIMAGE_DATA = 0xBADD, @@ -245,7 +244,7 @@ enum OpcodeClient : uint32 CMSG_GM_SET_SECURITY_GROUP = 0xBADD, CMSG_GOSSIP_HELLO = 0x00F3, CMSG_GOSSIP_SELECT_OPTION = 0x0332, - CMSG_GRANT_LEVEL = 0xBADD, + CMSG_GRANT_LEVEL = 0x0BE3, CMSG_GROUP_ASSISTANT_LEADER = 0xBADD, CMSG_GROUP_CANCEL = 0xBADD, CMSG_GROUP_CHANGE_SUB_GROUP = 0xBADD, @@ -262,52 +261,53 @@ enum OpcodeClient : uint32 CMSG_GUILD_ACCEPT = 0xBADD, CMSG_GUILD_ACHIEVEMENT_MEMBERS = 0xBADD, CMSG_GUILD_ACHIEVEMENT_PROGRESS_QUERY = 0xBADD, - CMSG_GUILD_ADD_RANK = 0xBADD, - CMSG_GUILD_ASSIGN_MEMBER_RANK = 0xBADD, + CMSG_GUILD_ADD_RANK = 0x0C2F, + CMSG_GUILD_ASSIGN_MEMBER_RANK = 0x0436, + CMSG_GUILD_AUTO_DECLINE_INVITATION = 0x062F, CMSG_GUILD_BANKER_ACTIVATE = 0xBADD, - CMSG_GUILD_BANK_BUY_TAB = 0xBADD, - CMSG_GUILD_BANK_DEPOSIT_MONEY = 0xBADD, - CMSG_GUILD_BANK_LOG_QUERY = 0xBADD, + CMSG_GUILD_BANK_BUY_TAB = 0x1BC3, + CMSG_GUILD_BANK_DEPOSIT_MONEY = 0x1B11, + CMSG_GUILD_BANK_LOG_QUERY = 0x0428, CMSG_GUILD_BANK_MONEY_WITHDRAWN_QUERY = 0x063D, CMSG_GUILD_BANK_NOTE = 0xBADD, - CMSG_GUILD_BANK_QUERY_TAB = 0xBADD, + CMSG_GUILD_BANK_QUERY_TAB = 0x13C1, CMSG_GUILD_BANK_QUERY_TEXT = 0xBADD, CMSG_GUILD_BANK_SWAP_ITEMS = 0xBADD, CMSG_GUILD_BANK_UPDATE_TAB = 0xBADD, CMSG_GUILD_BANK_WITHDRAW_MONEY = 0xBADD, CMSG_GUILD_CHANGE_NAME_REQUEST = 0xBADD, - CMSG_GUILD_DECLINE = 0xBADD, - CMSG_GUILD_DEL_RANK = 0xBADD, - CMSG_GUILD_DEMOTE = 0xBADD, - CMSG_GUILD_DISBAND = 0xBADD, - CMSG_GUILD_EVENT_LOG_QUERY = 0xBADD, + CMSG_GUILD_DECLINE = 0x0667, + CMSG_GUILD_DEL_RANK = 0x0C28, + CMSG_GUILD_DEMOTE = 0x142F, + CMSG_GUILD_DISBAND = 0x0E68, + CMSG_GUILD_EVENT_LOG_QUERY = 0x0E37, CMSG_GUILD_INFO = 0xBADD, - CMSG_GUILD_INFO_TEXT = 0xBADD, + CMSG_GUILD_INFO_TEXT = 0x0C75, CMSG_GUILD_INVITE = 0x19A4, - CMSG_GUILD_LEAVE = 0xBADD, + CMSG_GUILD_LEAVE = 0x0476, CMSG_GUILD_MEMBER_SEND_SOR_REQUEST = 0xBADD, CMSG_GUILD_MOTD = 0xBADD, CMSG_GUILD_NEWS_UPDATE_STICKY = 0xBADD, CMSG_GUILD_PERMISSIONS = 0x1436, CMSG_GUILD_PROMOTE = 0xBADD, CMSG_GUILD_QUERY = 0x0930, - CMSG_GUILD_QUERY_NEWS = 0xBADD, + CMSG_GUILD_QUERY_NEWS = 0x0676, CMSG_GUILD_QUERY_RANKS = 0x0C37, - CMSG_GUILD_REMOVE = 0xBADD, + CMSG_GUILD_REMOVE = 0x042F, CMSG_GUILD_REPLACE_GUILD_MASTER = 0xBADD, CMSG_GUILD_REQUEST_CHALLENGE_UPDATE = 0xBADD, CMSG_GUILD_REQUEST_MAX_DAILY_XP = 0xBADD, CMSG_GUILD_REQUEST_PARTY_STATE = 0x0A8E, CMSG_GUILD_ROSTER = 0x0638, CMSG_GUILD_SET_ACHIEVEMENT_TRACKING = 0xBADD, - CMSG_GUILD_SET_GUILD_MASTER = 0xBADD, + CMSG_GUILD_SET_GUILD_MASTER = 0x1184, CMSG_GUILD_SET_NOTE = 0xBADD, - CMSG_GUILD_SET_RANK_PERMISSIONS = 0xBADD, + CMSG_GUILD_SET_RANK_PERMISSIONS = 0x0E38, CMSG_GUILD_SWITCH_RANK = 0xBADD, CMSG_HEARTH_AND_RESURRECT = 0xBADD, CMSG_IGNORE_TRADE = 0xBADD, CMSG_INITIATE_TRADE = 0xBADD, - CMSG_INSPECT = 0xBADD, + CMSG_INSPECT = 0x01EC, CMSG_INSPECT_HONOR_STATS = 0xBADD, CMSG_INSTANCE_LOCK_WARNING_RESPONSE = 0xBADD, CMSG_ITEM_REFUND = 0xBADD, @@ -348,7 +348,7 @@ enum OpcodeClient : uint32 CMSG_LOOT_MASTER_GIVE = 0xBADD, CMSG_LOOT_METHOD = 0x0729, CMSG_LOOT_MONEY = 0xBADD, - CMSG_LOOT_RELEASE = 0xBADD, + CMSG_LOOT_RELEASE = 0x1199, CMSG_LOOT_ROLL = 0xBADD, CMSG_MAIL_CREATE_TEXT_ITEM = 0x13D1, CMSG_MAIL_DELETE = 0x068C, @@ -367,8 +367,9 @@ enum OpcodeClient : uint32 CMSG_MESSAGECHAT_DND = 0x0AAB, CMSG_MESSAGECHAT_EMOTE = 0x113C, CMSG_MESSAGECHAT_GUILD = 0x0B1B, + CMSG_MESSAGECHAT_INSTANCE = 0x0134, CMSG_MESSAGECHAT_OFFICER = 0x0114, - CMSG_MESSAGECHAT_PARTY = 0x0134, + CMSG_MESSAGECHAT_PARTY = 0x0803, CMSG_MESSAGECHAT_RAID = 0x0B33, CMSG_MESSAGECHAT_RAID_WARNING = 0x0313, CMSG_MESSAGECHAT_SAY = 0x1884, @@ -380,7 +381,7 @@ enum OpcodeClient : uint32 CMSG_MOVE_CHARM_TELEPORT_CHEAT = 0xBADD, CMSG_MOVE_CHNG_TRANSPORT = 0xBADD, CMSG_MOVE_ENABLE_SWIM_TO_FLY_TRANS_ACK = 0xBADD, - CMSG_MOVE_FALL_RESET = 0xBADD, + CMSG_MOVE_FALL_RESET = 0x0522, CMSG_MOVE_FEATHER_FALL_ACK = 0xBADD, CMSG_MOVE_FORCE_FLIGHT_BACK_SPEED_CHANGE_ACK = 0xBADD, CMSG_MOVE_FORCE_FLIGHT_SPEED_CHANGE_ACK = 0xBADD, @@ -394,7 +395,7 @@ enum OpcodeClient : uint32 CMSG_MOVE_GRAVITY_DISABLE_ACK = 0x0553, CMSG_MOVE_GRAVITY_ENABLE_ACK = 0xBADD, CMSG_MOVE_HEARTBEAT = 0x19C1, - CMSG_MOVE_HOVER_ACK = 0xBADD, + CMSG_MOVE_HOVER_ACK = 0x0543, CMSG_MOVE_JUMP = 0x0282, CMSG_MOVE_KNOCK_BACK_ACK = 0xBADD, CMSG_MOVE_FALL_LAND = 0x0D54, @@ -409,7 +410,7 @@ enum OpcodeClient : uint32 CMSG_MOVE_SET_RUN_MODE = 0x0D51, CMSG_MOVE_SET_VEHICLE_REC_ID_ACK = 0xBADD, CMSG_MOVE_SET_WALK_MODE = 0x0544, - CMSG_MOVE_SPLINE_DONE = 0xBADD, + CMSG_MOVE_SPLINE_DONE = 0x0B63, CMSG_MOVE_START_ASCEND = 0x0D41, CMSG_MOVE_START_BACKWARD = 0x0583, CMSG_MOVE_START_DESCEND = 0x0B79, @@ -430,7 +431,7 @@ enum OpcodeClient : uint32 CMSG_MOVE_TELEPORT_ACK = 0x0D01, CMSG_MOVE_TIME_SKIPPED = 0x19C2, CMSG_MOVE_TOGGLE_COLLISION_ACK = 0xBADD, - CMSG_MOVE_WATER_WALK_ACK = 0xBADD, + CMSG_MOVE_WATER_WALK_ACK = 0x0B6C, CMSG_MOVE_WORLDPORT_ACK = 0x0938, CMSG_NAME_QUERY = 0x0B15, CMSG_NEW_SPELL_SLOT = 0xBADD, @@ -480,14 +481,14 @@ enum OpcodeClient : uint32 CMSG_QUERY_NEXT_MAIL_TIME = 0x0B31, CMSG_QUERY_QUESTS_COMPLETED = 0xBADD, CMSG_QUERY_TIME = 0xBADD, - CMSG_QUESTGIVER_ACCEPT_QUEST = 0xBADD, + CMSG_QUESTGIVER_ACCEPT_QUEST = 0x13D3, CMSG_QUESTGIVER_CANCEL = 0xBADD, CMSG_QUESTGIVER_CHOOSE_REWARD = 0x0DAD, CMSG_QUESTGIVER_COMPLETE_QUEST = 0x1E8A, CMSG_QUESTGIVER_HELLO = 0x058E, CMSG_QUESTGIVER_QUERY_QUEST = 0x1924, CMSG_QUESTGIVER_QUEST_AUTOLAUNCH = 0xBADD, - CMSG_QUESTGIVER_REQUEST_REWARD = 0xBADD, + CMSG_QUESTGIVER_REQUEST_REWARD = 0x022E, CMSG_QUESTGIVER_STATUS_MULTIPLE_QUERY = 0x0131, CMSG_QUESTGIVER_STATUS_QUERY = 0x01E2, CMSG_QUESTLOG_REMOVE_QUEST = 0xBADD, @@ -530,6 +531,7 @@ enum OpcodeClient : uint32 CMSG_RESURRECT_RESPONSE = 0xBADD, CMSG_RETURN_TO_GRAVEYARD = 0x12EA, CMSG_ROLE_POLL_BEGIN = 0xBADD, + CMSG_ROUTER_CLIENT_LOG_STREAMING_ERROR = 0x0C10, CMSG_SAVE_CUF_PROFILES = 0x0053, CMSG_SAVE_PLAYER = 0xBADD, CMSG_SEARCH_LFG_JOIN = 0xBADD, @@ -542,13 +544,12 @@ enum OpcodeClient : uint32 CMSG_SERVERTIME = 0xBADD, CMSG_SETDEATHBINDPOINT = 0xBADD, CMSG_SETSHEATHED = 0x1B43, - CMSG_SET_ACTIONBAR_TOGGLES = 0xBADD, + CMSG_SET_ACTIONBAR_TOGGLES = 0x0BD2, CMSG_SET_ACTION_BUTTON = 0x0599, - CMSG_SET_ACTIVE_MOVER = 0xBADD, + CMSG_SET_ACTIVE_MOVER = 0x0971, CMSG_SET_ACTIVE_VOICE_CHANNEL = 0x031E, CMSG_SET_ALLOW_LOW_LEVEL_RAID1 = 0xBADD, CMSG_SET_ALLOW_LOW_LEVEL_RAID2 = 0xBADD, - CMSG_SET_CHANNEL_WATCH = 0xBADD, CMSG_SET_CONTACT_NOTES = 0xBADD, CMSG_SET_CURRENCY_FLAGS = 0xBADD, CMSG_SET_EVERYONE_IS_ASSISTANT = 0xBADD, @@ -561,6 +562,7 @@ enum OpcodeClient : uint32 CMSG_SET_PET_SLOT = 0xBADD, CMSG_SET_PLAYER_DECLINED_NAMES = 0xBADD, CMSG_SET_PREFERED_CEMETERY = 0xBADD, + CMSG_SET_PVP = 0x19B9, CMSG_SET_RAID_DIFFICULTY = 0xBADD, CMSG_SET_RELATIVE_POSITION = 0xBADD, CMSG_SET_SAVED_INSTANCE_EXTEND = 0xBADD, @@ -568,7 +570,7 @@ enum OpcodeClient : uint32 CMSG_SET_SKILL_CHEAT = 0xBADD, CMSG_SET_SPECIALIZATION = 0x0AC5, CMSG_SET_TAXI_BENCHMARK_MODE = 0xBADD, - CMSG_SET_TITLE = 0xBADD, + CMSG_SET_TITLE = 0x0BC6, CMSG_SET_TRADE_CURRENCY = 0xBADD, CMSG_SET_TRADE_GOLD = 0xBADD, CMSG_SET_TRADE_ITEM = 0xBADD, @@ -576,11 +578,11 @@ enum OpcodeClient : uint32 CMSG_SET_WATCHED_FACTION = 0xBADD, CMSG_SHOWING_CLOAK = 0x0132, CMSG_SHOWING_HELM = 0x11E1, - CMSG_SOCKET_GEMS = 0xBADD, + CMSG_SOCKET_GEMS = 0x1BE1, CMSG_SPELLCLICK = 0x0BC2, CMSG_SPIRIT_HEALER_ACTIVATE = 0xBADD, CMSG_SPLIT_ITEM = 0x0795, - CMSG_STANDSTATECHANGE = 0xBADD, + CMSG_STANDSTATECHANGE = 0x0ABD, CMSG_START_QUEST = 0xBADD, CMSG_STOP_DANCE = 0xBADD, CMSG_STORE_LOOT_IN_SLOT = 0xBADD, @@ -588,6 +590,7 @@ enum OpcodeClient : uint32 CMSG_SUBMIT_COMPLAIN = 0xBADD, CMSG_SUGGESTION_SUBMIT = 0xBADD, CMSG_SUMMON_RESPONSE = 0xBADD, + CMSG_SUPPORT_TICKET_SUBMIT_COMPLAINT = 0x0B37, CMSG_SUSPEND_COMMS_ACK = 0x0C56, CMSG_SUSPEND_TOKEN_RESPONSE = 0x041E, CMSG_SWAP_INV_ITEM = 0x0F17, @@ -595,7 +598,7 @@ enum OpcodeClient : uint32 CMSG_SYNC_DANCE = 0xBADD, CMSG_TAXICLEARALLNODES = 0xBADD, CMSG_TAXIENABLEALLNODES = 0xBADD, - CMSG_TAXINODE_STATUS_QUERY = 0xBADD, + CMSG_TAXINODE_STATUS_QUERY = 0x1BC1, CMSG_TAXIQUERYAVAILABLENODES = 0xBADD, CMSG_TAXISHOWNODES = 0xBADD, CMSG_TELEPORT_TO_UNIT = 0xBADD, @@ -654,7 +657,6 @@ enum OpcodeClient : uint32 MSG_MOVE_SET_TURN_RATE_CHEAT = 0xBADD, MSG_MOVE_SET_WALK_SPEED_CHEAT = 0xBADD, MSG_MOVE_TELEPORT_CHEAT = 0xBADD, - MSG_MOVE_TIME_SKIPPED = 0xBADD, MSG_MOVE_TOGGLE_COLLISION_CHEAT = 0xBADD, MSG_MOVE_TOGGLE_FALL_LOGGING = 0xBADD, MSG_MOVE_TOGGLE_LOGGING = 0xBADD, @@ -666,10 +668,8 @@ enum OpcodeClient : uint32 MSG_QUERY_NEXT_MAIL_TIME = 0xBADD, MSG_QUEST_PUSH_RESULT = 0xBADD, MSG_RAID_READY_CHECK = 0xBADD, - MSG_RAID_READY_CHECK_CONFIRM = 0xBADD, MSG_RAID_READY_CHECK_FINISHED = 0xBADD, MSG_RAID_TARGET_UPDATE = 0xBADD, - MSG_RANDOM_ROLL = 0xBADD, MSG_SAVE_GUILD_EMBLEM = 0xBADD, MSG_SET_DUNGEON_DIFFICULTY = 0xBADD, MSG_SET_RAID_DIFFICULTY = 0xBADD, @@ -677,7 +677,7 @@ enum OpcodeClient : uint32 MSG_TALENT_WIPE_CONFIRM = 0xBADD }; -// SMSGs 6.0.3.19116 +// SMSGs 6.0.3.19342 enum OpcodeServer : uint32 { SMSG_ACCOUNT_DATA_TIMES = 0x0120, @@ -688,10 +688,11 @@ enum OpcodeServer : uint32 SMSG_ACHIEVEMENT_DELETED = 0xBADD, SMSG_ACHIEVEMENT_EARNED = 0x010E, SMSG_ACTION_BUTTONS = 0x1D1F, - SMSG_ACTIVATETAXIREPLY = 0xBADD, + SMSG_ACTIVATE_TAXI_REPLY = 0x1321, SMSG_ADDON_INFO = 0x1D9F, SMSG_ADD_RUNE_POWER = 0xBADD, SMSG_ADJUST_SPLINE_DURATION = 0x0104, + SMSG_AE_LOOT_TARGETS = 0x15AF, SMSG_AI_REACTION = 0x0BA1, SMSG_ACCOUNT_CRITERIA_UPDATE = 0x0912, SMSG_ALL_ACCOUNT_CRITERIA = 0x0123, @@ -700,7 +701,7 @@ enum OpcodeServer : uint32 SMSG_AREA_TRIGGER_MESSAGE = 0xBADD, SMSG_AREA_TRIGGER_MOVEMENT_UPDATE = 0xBADD, SMSG_ARENA_ERROR = 0xBADD, - SMSG_ARENA_UNIT_DESTROYED = 0xBADD, + SMSG_ARENA_UNIT_DESTROYED = 0x19E1, SMSG_ARENA_TEAM_CHANGE_FAILED_QUEUED = 0xBADD, SMSG_ARENA_TEAM_COMMAND_RESULT = 0xBADD, SMSG_ARENA_TEAM_EVENT = 0xBADD, @@ -714,6 +715,7 @@ enum OpcodeServer : uint32 SMSG_ATTACKSWING_BADFACING = 0xBADD, SMSG_ATTACKSWING_CANT_ATTACK = 0xBADD, SMSG_ATTACKSWING_DEADTARGET = 0xBADD, + SMSG_ATTACKSWING_ERROR = 0x0509, SMSG_ATTACKSWING_NOTINRANGE = 0xBADD, SMSG_AUCTION_BIDDER_LIST_RESULT = 0xBADD, SMSG_AUCTION_BIDDER_NOTIFICATION = 0xBADD, @@ -731,11 +733,11 @@ enum OpcodeServer : uint32 SMSG_AUTH_RESPONSE = 0x0DA9, SMSG_AVAILABLE_VOICE_CHANNEL = 0x04D4, SMSG_AVERAGE_ITEM_LEVEL_INFORM = 0xBADD, - SMSG_BARBER_SHOP_RESULT = 0xBADD, - SMSG_BATTLEFIELD_LIST = 0xBADD, - SMSG_BATTLEFIELD_MGR_EJECTED = 0xBADD, + SMSG_BARBER_SHOP_RESULT = 0x150D, + SMSG_BATTLEFIELD_LIST = 0x11A1, + SMSG_BATTLEFIELD_MGR_EJECTED = 0x0DAF, SMSG_BATTLEFIELD_MGR_EJECT_PENDING = 0xBADD, - SMSG_BATTLEFIELD_MGR_ENTERED = 0xBADD, + SMSG_BATTLEFIELD_MGR_ENTERED = 0x11A3, SMSG_BATTLEFIELD_MGR_ENTRY_INVITE = 0xBADD, SMSG_BATTLEFIELD_MGR_EXIT_REQUEST = 0xBADD, SMSG_BATTLEFIELD_MGR_QUEUE_INVITE = 0xBADD, @@ -744,15 +746,15 @@ enum OpcodeServer : uint32 SMSG_BATTLEFIELD_PLAYER_POSITIONS = 0xBADD, SMSG_BATTLEFIELD_PORT_DENIED = 0xBADD, SMSG_BATTLEFIELD_RATED_INFO = 0x1F0A, - SMSG_BATTLEFIELD_STATUS = 0xBADD, - SMSG_BATTLEFIELD_STATUS_QUEUED = 0xBADD, - SMSG_BATTLEFIELD_STATUS_ACTIVE = 0xBADD, - SMSG_BATTLEFIELD_STATUS_NEEDCONFIRMATION = 0xBADD, - SMSG_BATTLEFIELD_STATUS_WAITFORGROUPS = 0xBADD, - SMSG_BATTLEFIELD_STATUS_FAILED = 0xBADD, + SMSG_BATTLEFIELD_STATUS_NONE = 0x1E89, + SMSG_BATTLEFIELD_STATUS_QUEUED = 0x002D, + SMSG_BATTLEFIELD_STATUS_ACTIVE = 0x1284, + SMSG_BATTLEFIELD_STATUS_NEEDCONFIRMATION = 0x1719, + SMSG_BATTLEFIELD_STATUS_WAITFORGROUPS = 0x082D, + SMSG_BATTLEFIELD_STATUS_FAILED = 0x0308, SMSG_BATTLEGROUND_INFO_THROTTLED = 0xBADD, - SMSG_BATTLEGROUND_PLAYER_JOINED = 0xBADD, - SMSG_BATTLEGROUND_PLAYER_LEFT = 0xBADD, + SMSG_BATTLEGROUND_PLAYER_JOINED = 0x13EA, + SMSG_BATTLEGROUND_PLAYER_LEFT = 0x1BD1, SMSG_BATTLE_PAY_DISTRIBUTION_UPDATE = 0x0BE3, SMSG_BATTLE_PAY_GET_DISTRIBUTION_LIST_RESPONSE = 0x0F2A, SMSG_BATTLE_PAY_GET_PRODUCT_LIST_RESPONSE = 0x12A4, @@ -792,10 +794,9 @@ enum OpcodeServer : uint32 SMSG_CALENDAR_UPDATE_INVITE_LIST = 0xBADD, SMSG_CAMERA_SHAKE = 0xBADD, SMSG_CANCEL_AUTO_REPEAT = 0x0B18, - SMSG_CANCEL_COMBAT = 0xBADD, + SMSG_CANCEL_COMBAT = 0x05AD, SMSG_CAST_FAILED = 0x1A89, SMSG_CHANNEL_LIST = 0x1411, - SMSG_CHANNEL_MEMBER_COUNT = 0xBADD, SMSG_CHANNEL_NOTIFY = 0x0643, SMSG_CHANNEL_NOTIFY_JOINED = 0x1602, SMSG_CHANNEL_NOTIFY_LEFT = 0x1452, @@ -812,7 +813,7 @@ enum OpcodeServer : uint32 SMSG_CHAT_IGNORED_ACCOUNT_MUTED = 0xBADD, SMSG_CHAT_NOT_IN_PARTY = 0xBADD, SMSG_CHAT_PLAYER_AMBIGUOUS = 0xBADD, - SMSG_CHAT_PLAYER_NOT_FOUND = 0xBADD, + SMSG_CHAT_PLAYER_NOT_FOUND = 0x0614, SMSG_CHAT_RESTRICTED = 0xBADD, SMSG_CHAT_SERVER_DISCONNECTED = 0xBADD, SMSG_CHAT_SERVER_DISCONNECTED_2 = 0xBADD, @@ -826,9 +827,9 @@ enum OpcodeServer : uint32 SMSG_CLEAR_QUEST_COMPLETED_BITS = 0x1D47, SMSG_CLEAR_TARGET = 0xBADD, SMSG_CLIENTCACHE_VERSION = 0x080D, - SMSG_CLIENT_CONTROL_UPDATE = 0xBADD, + SMSG_CLIENT_CONTROL_UPDATE = 0x080E, SMSG_COIN_REMOVED = 0x0D30, - SMSG_COMBAT_EVENT_FAILED = 0xBADD, + SMSG_COMBAT_EVENT_FAILED = 0x1DAF, SMSG_COMBAT_LOG_MULTIPLE = 0xBADD, SMSG_COMMENTATOR_MAP_INFO = 0xBADD, SMSG_COMMENTATOR_PARTY_INFO = 0xBADD, @@ -842,9 +843,10 @@ enum OpcodeServer : uint32 SMSG_COMSAT_CONNECT_FAIL = 0xBADD, SMSG_COMSAT_DISCONNECT = 0xBADD, SMSG_COMSAT_RECONNECT_TRY = 0xBADD, + SMSG_CONQUEST_FORMULA_CONSTANTS = 0x1342, SMSG_CONTACT_LIST = 0x0210, SMSG_CONTACT_STATUS = 0x1BEA, - SMSG_CONVERT_RUNE = 0xBADD, + SMSG_CONVERT_RUNE = 0x1C89, SMSG_COOLDOWN_CHEAT = 0xBADD, SMSG_COOLDOWN_EVENT = 0xBADD, SMSG_CORPSE_MAP_POSITION_QUERY_RESPONSE = 0xBADD, @@ -865,8 +867,7 @@ enum OpcodeServer : uint32 SMSG_DEATH_RELEASE_LOC = 0xBADD, SMSG_DEBUG_RUNE_REGEN = 0xBADD, SMSG_DEBUG_SERVER_GEO = 0xBADD, - SMSG_DEFENSE_MESSAGE = 0xBADD, - SMSG_DESTROY_OBJECT = 0xBADD, + SMSG_DEFENSE_MESSAGE = 0x1442, SMSG_DESTRUCTIBLE_BUILDING_DAMAGE = 0xBADD, SMSG_DIFFERENT_INSTANCE_FROM_PARTY = 0xBADD, SMSG_DISENCHANT_CREDIT = 0xBADD, @@ -878,23 +879,24 @@ enum OpcodeServer : uint32 SMSG_DONT_AUTO_PUSH_SPELLS_TO_ACTION_BAR = 0xBADD, SMSG_DROP_NEW_CONNECTION = 0xBADD, SMSG_DUEL_COMPLETE = 0xBADD, - SMSG_DUEL_COUNTDOWN = 0xBADD, + SMSG_DUEL_COUNTDOWN = 0x020E, SMSG_DUEL_INBOUNDS = 0xBADD, SMSG_DUEL_OUTOFBOUNDS = 0xBADD, SMSG_DUEL_REQUESTED = 0xBADD, - SMSG_DUEL_WINNER = 0xBADD, + SMSG_DUEL_WINNER = 0x0935, SMSG_DUMP_RIDE_TICKETS_RESPONSE = 0xBADD, SMSG_DURABILITY_DAMAGE_DEATH = 0xBADD, SMSG_ECHO_PARTY_SQUELCH = 0xBADD, SMSG_EMOTE = 0x071D, SMSG_ENABLE_BARBER_SHOP = 0xBADD, SMSG_ENCHANTMENTLOG = 0xBADD, - SMSG_ENVIRONMENTALDAMAGELOG = 0xBADD, + SMSG_ENVIRONMENTALDAMAGELOG = 0x0AAB, SMSG_EQUIPMENT_SET_LIST = 0x0F1E, SMSG_EQUIPMENT_SET_SAVED = 0x0027, SMSG_EQUIPMENT_SET_USE_RESULT = 0xBADD, SMSG_EXPECTED_SPAM_RECORDS = 0xBADD, SMSG_EXPLORATION_EXPERIENCE = 0xBADD, + SMSG_FACTION_BONUS_INFO = 0x0928, SMSG_FAILED_PLAYER_CONDITION = 0xBADD, SMSG_FEATURE_SYSTEM_STATUS = 0x0B1E, SMSG_FEATURE_SYSTEM_STATUS_GLUE_SCREEN = 0x1540, @@ -972,6 +974,7 @@ enum OpcodeServer : uint32 SMSG_GUILD_EVENT_BANK_MONEY_CHANGED = 0x1077, SMSG_GUILD_EVENT_LOG_QUERY_RESULT = 0xBADD, SMSG_GUILD_EVENT_PRESENCE_CHANGE = 0x1228, + SMSG_GUILD_EVENT_RANK_CHANGED = 0x1276, SMSG_GUILD_FLAGGED_FOR_RENAME = 0xBADD, SMSG_GUILD_INVITE = 0x1025, SMSG_GUILD_INVITE_CANCEL = 0xBADD, @@ -1021,7 +1024,7 @@ enum OpcodeServer : uint32 SMSG_INSPECT_TALENT = 0xBADD, SMSG_INSTANCE_INFO = 0x0DA0, SMSG_INSTANCE_LOCK_WARNING_QUERY = 0xBADD, - SMSG_INSTANCE_RESET = 0xBADD, + SMSG_INSTANCE_RESET = 0x0B16, SMSG_INSTANCE_RESET_FAILED = 0xBADD, SMSG_INSTANCE_SAVE_CREATED = 0xBADD, SMSG_INVALIDATE_DANCE = 0xBADD, @@ -1032,18 +1035,18 @@ enum OpcodeServer : uint32 SMSG_ITEM_COOLDOWN = 0xBADD, SMSG_ITEM_ENCHANT_TIME_UPDATE = 0x010D, SMSG_ITEM_EXPIRE_PURCHASE_REFUND = 0xBADD, - SMSG_ITEM_PUSH_RESULT = 0xBADD, + SMSG_ITEM_PUSH_RESULT = 0x0183, SMSG_ITEM_REFUND_INFO_RESPONSE = 0xBADD, SMSG_ITEM_REFUND_RESULT = 0xBADD, SMSG_ITEM_REMOVE_PASSIVE = 0xBADD, SMSG_ITEM_SEND_PASSIVE = 0xBADD, SMSG_ITEM_TEXT_QUERY_RESPONSE = 0xBADD, - SMSG_ITEM_TIME_UPDATE = 0xBADD, + SMSG_ITEM_TIME_UPDATE = 0x0F3E, SMSG_JOINED_BATTLEGROUND_QUEUE = 0xBADD, SMSG_KICK_REASON = 0xBADD, SMSG_LEARNED_DANCE_MOVES = 0xBADD, SMSG_LEARNED_SPELLS = 0x08AB, - SMSG_LEVELUP_INFO = 0xBADD, + SMSG_LEVELUP_INFO = 0x1BE4, SMSG_LFG_BOOT_PROPOSAL_UPDATE = 0xBADD, SMSG_LFG_DISABLED = 0xBADD, SMSG_LFG_JOIN_RESULT = 0x0F72, @@ -1053,7 +1056,7 @@ enum OpcodeServer : uint32 SMSG_LFG_PLAYER_INFO = 0x0F36, SMSG_LFG_PLAYER_REWARD = 0xBADD, SMSG_LFG_PROPOSAL_UPDATE = 0xBADD, - SMSG_LFG_QUEUE_STATUS = 0xBADD, + SMSG_LFG_QUEUE_STATUS = 0x07F1, SMSG_LFG_ROLE_CHECK_UPDATE = 0xBADD, SMSG_LFG_ROLE_CHOSEN = 0xBADD, SMSG_LFG_SLOT_INVALID = 0xBADD, @@ -1084,8 +1087,8 @@ enum OpcodeServer : uint32 SMSG_LOOT_MASTER_LIST = 0xBADD, SMSG_LOOT_MONEY_NOTIFY = 0x12A9, SMSG_LOOT_RELEASE_RESPONSE = 0xBADD, - SMSG_LOOT_REMOVED = 0xBADD, - SMSG_LOOT_RESPONSE = 0xBADD, + SMSG_LOOT_REMOVED = 0x0906, + SMSG_LOOT_RESPONSE = 0x0F8A, SMSG_LOOT_ROLL = 0xBADD, SMSG_LOOT_ROLL_WON = 0xBADD, SMSG_LOOT_SLOT_CHANGED = 0xBADD, @@ -1162,8 +1165,7 @@ enum OpcodeServer : uint32 SMSG_NEW_TAXI_PATH = 0xBADD, SMSG_NEW_WORLD = 0x0206, SMSG_NEW_WORLD_ABORT = 0xBADD, - SMSG_NOTIFICATION = 0xBADD, - SMSG_NOTIFICATION_2 = 0xBADD, + SMSG_NOTIFICATION = 0x0B22, SMSG_NOTIFY_DANCE = 0xBADD, SMSG_NOTIFY_DEST_LOC_SPELL_CAST = 0xBADD, SMSG_NPC_TEXT_UPDATE = 0x1122, @@ -1174,8 +1176,8 @@ enum OpcodeServer : uint32 SMSG_OPEN_LFG_DUNGEON_FINDER = 0xBADD, SMSG_OVERRIDE_LIGHT = 0xBADD, SMSG_PAGE_TEXT_QUERY_RESPONSE = 0x05A0, - SMSG_PARTYKILLLOG = 0xBADD, SMSG_PARTY_COMMAND_RESULT = 0xBADD, + SMSG_PARTY_KILL_LOG = 0x1312, SMSG_PARTY_MEMBER_STATS = 0x1729, SMSG_PARTY_MEMBER_STATS_FULL = 0xBADD, SMSG_PAUSE_MIRROR_TIMER = 0xBADD, @@ -1213,7 +1215,7 @@ enum OpcodeServer : uint32 SMSG_PLAY_DANCE = 0xBADD, SMSG_PLAY_MUSIC = 0xBADD, SMSG_PLAY_OBJECT_SOUND = 0xBADD, - SMSG_PLAY_ONE_SHOT_ANIM_KIT = 0xBADD, + SMSG_PLAY_ONE_SHOT_ANIM_KIT = 0x078D, SMSG_PLAY_SOUND = 0x02D2, SMSG_PLAY_SPELL_VISUAL = 0x1A84, SMSG_PLAY_SPELL_VISUAL_KIT = 0x0171, @@ -1235,15 +1237,15 @@ enum OpcodeServer : uint32 SMSG_QUESTGIVER_QUEST_DETAILS = 0x15B3, SMSG_QUESTGIVER_QUEST_FAILED = 0xBADD, SMSG_QUESTGIVER_QUEST_INVALID = 0xBADD, - SMSG_QUESTGIVER_QUEST_LIST = 0xBADD, - SMSG_QUESTGIVER_REQUEST_ITEMS = 0xBADD, + SMSG_QUESTGIVER_QUEST_LIST = 0x17A5, + SMSG_QUESTGIVER_REQUEST_ITEMS = 0x17B8, SMSG_QUESTGIVER_STATUS = 0x1567, SMSG_QUESTGIVER_STATUS_MULTIPLE = 0x17C6, SMSG_QUESTLOG_FULL = 0xBADD, SMSG_QUESTUPDATE_ADD_ITEM = 0xBADD, SMSG_QUESTUPDATE_ADD_KILL = 0x1515, SMSG_QUESTUPDATE_ADD_PVP_KILL = 0xBADD, - SMSG_QUESTUPDATE_COMPLETE = 0xBADD, + SMSG_QUESTUPDATE_COMPLETE = 0x1787, SMSG_QUESTUPDATE_FAILED = 0xBADD, SMSG_QUESTUPDATE_FAILEDTIMER = 0xBADD, SMSG_QUEST_NPC_QUERY_RESPONSE = 0x1591, @@ -1255,8 +1257,12 @@ enum OpcodeServer : uint32 SMSG_RAID_INSTANCE_INFO = 0xBADD, SMSG_RAID_INSTANCE_MESSAGE = 0xBADD, SMSG_RAID_MARKERS_CHANGED = 0xBADD, + SMSG_RAID_READY_CHECK = 0x17A9, + SMSG_RAID_READY_CHECK_COMPLETED = 0x0BC3, + SMSG_RAID_READY_CHECK_CONFIRM = 0x0A10, SMSG_RAID_READY_CHECK_THROTTLED_ERROR = 0xBADD, SMSG_RAID_SUMMON_FAILED = 0xBADD, + SMSG_RANDOM_ROLL = 0x1B04, SMSG_RANDOMIZE_CHAR_NAME = 0x0D8F, SMSG_RATED_BG_RATING = 0xBADD, SMSG_RATED_BG_STATS = 0xBADD, @@ -1280,6 +1286,7 @@ enum OpcodeServer : uint32 SMSG_RESET_FAILED_NOTIFY = 0xBADD, SMSG_RESISTLOG = 0xBADD, SMSG_RESPOND_INSPECT_ACHIEVEMENTS = 0xBADD, + SMSG_RESUME_CAST_BAR = 0x082C, SMSG_RESUME_COMMS = 0x07C9, SMSG_RESUME_TOKEN = 0x0326, SMSG_RESURRECT_FAILED = 0xBADD, @@ -1288,6 +1295,7 @@ enum OpcodeServer : uint32 SMSG_ROLE_POLL_BEGIN = 0xBADD, SMSG_RWHOIS = 0xBADD, SMSG_SELL_ITEM = 0xBADD, + SMSG_SELL_RESPONSE = 0x1352, SMSG_SEND_MAIL_RESULT = 0x0302, SMSG_SEND_SPELL_CHARGES = 0x1A82, SMSG_SEND_SPELL_HISTORY = 0x1933, @@ -1326,8 +1334,8 @@ enum OpcodeServer : uint32 SMSG_SOCKET_GEMS_RESULT = 0xBADD, SMSG_SOR_START_EXPERIENCE_INCOMPLETE = 0xBADD, SMSG_SPELLBREAKLOG = 0xBADD, - SMSG_SPELLDAMAGESHIELD = 0x188A, - SMSG_SPELLDISPELLOG = 0xBADD, + SMSG_SPELLDAMAGESHIELD = 0x0B4C, + SMSG_SPELLDISPELLOG = 0x18A2, SMSG_SPELLENERGIZELOG = 0x137C, SMSG_SPELLHEALLOG = 0x0114, SMSG_SPELLINSTAKILLLOG = 0xBADD, @@ -1379,7 +1387,7 @@ enum OpcodeServer : uint32 SMSG_STABLE_RESULT = 0xBADD, SMSG_STANDSTATE_UPDATE = 0x1311, SMSG_START_ELAPSED_TIMERS = 0x093F, - SMSG_START_MIRROR_TIMER = 0xBADD, + SMSG_START_MIRROR_TIMER = 0x051E, SMSG_START_TIMER = 0xBADD, SMSG_STOP_DANCE = 0xBADD, SMSG_STOP_MIRROR_TIMER = 0xBADD, @@ -1396,7 +1404,7 @@ enum OpcodeServer : uint32 SMSG_TAXINODE_STATUS = 0x0338, SMSG_TEST_DROP_RATE_RESULT = 0xBADD, SMSG_TEXT_EMOTE = 0x0383, - SMSG_THREAT_CLEAR = 0xBADD, + SMSG_THREAT_CLEAR = 0x030F, SMSG_THREAT_REMOVE = 0x0F3D, SMSG_THREAT_UPDATE = 0x03A9, SMSG_TIME_ADJUSTMENT = 0xBADD, @@ -1411,8 +1419,8 @@ enum OpcodeServer : uint32 SMSG_TRAINER_LIST = 0x0BA9, SMSG_TRANSFER_ABORTED = 0x03C2, SMSG_TRANSFER_PENDING = 0x172A, - SMSG_TRIGGER_CINEMATIC = 0xBADD, - SMSG_TRIGGER_MOVIE = 0xBADD, + SMSG_TRIGGER_CINEMATIC = 0x032F, + SMSG_TRIGGER_MOVIE = 0x151F, SMSG_TURN_IN_PETITION_RESULTS = 0xBADD, SMSG_TUTORIAL_FLAGS = 0x020F, SMSG_UNDELETE_CHARACTER_RESPONSE = 0x0344, @@ -1430,9 +1438,9 @@ enum OpcodeServer : uint32 SMSG_UPDATE_SERVER_PLAYER_POSITION = 0xBADD, SMSG_UPDATE_TASK_PROGRESS = 0x1209, SMSG_UPDATE_WORLD_STATE = 0x03EC, - SMSG_USERLIST_ADD = 0xBADD, - SMSG_USERLIST_REMOVE = 0xBADD, - SMSG_USERLIST_UPDATE = 0xBADD, + SMSG_USERLIST_ADD = 0x0441, + SMSG_USERLIST_REMOVE = 0x0641, + SMSG_USERLIST_UPDATE = 0x04C4, SMSG_VOICESESSION_FULL = 0xBADD, SMSG_VOICE_CHAT_STATUS = 0xBADD, SMSG_VOICE_PARENTAL_CONTROLS = 0xBADD, @@ -1453,12 +1461,13 @@ enum OpcodeServer : uint32 SMSG_WEEKLY_LAST_RESET = 0xBADD, SMSG_WEEKLY_RESET_CURRENCY = 0xBADD, SMSG_WEEKLY_SPELL_USAGE = 0x13DC, - SMSG_WEEKLY_SPELL_USAGE_UPDATE = 0xBADD, + SMSG_WEEKLY_SPELL_USAGE_UPDATE = 0x1829, SMSG_WHO = 0x0601, SMSG_WHOIS = 0xBADD, SMSG_WORLD_SERVER_INFO = 0x11AC, SMSG_WORLD_STATE_UI_TIMER_UPDATE = 0x0B83, SMSG_XP_GAIN_ABORTED = 0xBADD, + SMSG_XP_GAIN_ENABLED = 0x0FAA, SMSG_ZONE_UNDER_ATTACK = 0x1401 }; @@ -1636,7 +1645,6 @@ enum PacketProcessing PROCESS_THREADSAFE //packet is thread-safe - process it in Map::Update() }; -class WorldSession; class WorldPacket; class WorldSession; diff --git a/src/server/game/Server/Protocol/PacketLog.cpp b/src/server/game/Server/Protocol/PacketLog.cpp index 2a94aa03eba..ebc57f3faad 100644 --- a/src/server/game/Server/Protocol/PacketLog.cpp +++ b/src/server/game/Server/Protocol/PacketLog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Protocol/PacketLog.h b/src/server/game/Server/Protocol/PacketLog.h index bc4f39c0d84..75a0619ed20 100644 --- a/src/server/game/Server/Protocol/PacketLog.h +++ b/src/server/game/Server/Protocol/PacketLog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Server/Protocol/ServerPktHeader.h b/src/server/game/Server/Protocol/ServerPktHeader.h index fd28143c24b..e2f7824b178 100644 --- a/src/server/game/Server/Protocol/ServerPktHeader.h +++ b/src/server/game/Server/Protocol/ServerPktHeader.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Server/WorldPacket.h b/src/server/game/Server/WorldPacket.h index d711bdcab3f..bd25213ed4c 100644 --- a/src/server/game/Server/WorldPacket.h +++ b/src/server/game/Server/WorldPacket.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Server/WorldSession.cpp b/src/server/game/Server/WorldSession.cpp index 350291c2b4e..d9f04a01bd7 100644 --- a/src/server/game/Server/WorldSession.cpp +++ b/src/server/game/Server/WorldSession.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Server/WorldSession.h b/src/server/game/Server/WorldSession.h index 55b4a13e99f..beed0547b5f 100644 --- a/src/server/game/Server/WorldSession.h +++ b/src/server/game/Server/WorldSession.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -35,6 +35,7 @@ #include "AccountMgr.h" #include <unordered_set> +class Channel; class Creature; class GameObject; class InstanceSave; @@ -47,6 +48,7 @@ class SpellCastTargets; class Unit; class Warden; class WorldPacket; +class WorldSession; class WorldSocket; struct AreaTableEntry; struct AuctionEntry; @@ -104,7 +106,7 @@ namespace WorldPackets namespace Channel { - class ChannelListRequest; + class ChannelPlayerCommand; class JoinChannel; class LeaveChannel; } @@ -160,6 +162,7 @@ namespace WorldPackets namespace Misc { + class AreaTrigger; class SetSelection; class ViolenceLevel; class TimeSyncResponse; @@ -196,6 +199,8 @@ namespace WorldPackets class QueryQuestInfo; class QuestGiverChooseReward; class QuestGiverCompleteQuest; + class QuestGiverRequestReward; + class QuestGiverQueryQuest; } namespace Spells @@ -699,7 +704,7 @@ class WorldSession void HandleSetContactNotesOpcode(WorldPacket& recvPacket); void HandleBugOpcode(WorldPacket& recvPacket); - void HandleAreaTriggerOpcode(WorldPacket& recvPacket); + void HandleAreaTriggerOpcode(WorldPackets::Misc::AreaTrigger& packet); void HandleSetFactionAtWar(WorldPacket& recvData); void HandleSetFactionCheat(WorldPacket& recvData); @@ -912,9 +917,9 @@ class WorldSession void HandleQuestgiverStatusMultipleQuery(WorldPackets::Quest::QuestGiverStatusMultipleQuery& packet); void HandleQuestgiverHelloOpcode(WorldPackets::Quest::QuestGiverHello& packet); void HandleQuestgiverAcceptQuestOpcode(WorldPacket& recvPacket); - void HandleQuestgiverQueryQuestOpcode(WorldPacket& recvPacket); + void HandleQuestgiverQueryQuestOpcode(WorldPackets::Quest::QuestGiverQueryQuest& packet); void HandleQuestgiverChooseRewardOpcode(WorldPackets::Quest::QuestGiverChooseReward& packet); - void HandleQuestgiverRequestRewardOpcode(WorldPacket& recvPacket); + void HandleQuestgiverRequestRewardOpcode(WorldPackets::Quest::QuestGiverRequestReward& packet); void HandleQuestQueryOpcode(WorldPackets::Quest::QueryQuestInfo& packet); void HandleQuestgiverCancel(WorldPacket& recvData); void HandleQuestLogSwapQuest(WorldPacket& recvData); @@ -953,23 +958,15 @@ class WorldSession void HandleJoinChannel(WorldPackets::Channel::JoinChannel& packet); void HandleLeaveChannel(WorldPackets::Channel::LeaveChannel& packet); - void HandleChannelList(WorldPackets::Channel::ChannelListRequest& packet); - void HandleChannelPassword(WorldPacket& recvPacket); - void HandleChannelSetOwner(WorldPacket& recvPacket); - void HandleChannelOwner(WorldPacket& recvPacket); - void HandleChannelModerator(WorldPacket& recvPacket); - void HandleChannelUnmoderator(WorldPacket& recvPacket); - void HandleChannelMute(WorldPacket& recvPacket); - void HandleChannelUnmute(WorldPacket& recvPacket); - void HandleChannelInvite(WorldPacket& recvPacket); - void HandleChannelKick(WorldPacket& recvPacket); - void HandleChannelBan(WorldPacket& recvPacket); - void HandleChannelUnban(WorldPacket& recvPacket); - void HandleChannelAnnouncements(WorldPacket& recvPacket); - void HandleChannelModerate(WorldPacket& recvPacket); - void HandleChannelDeclineInvite(WorldPacket& recvPacket); - void HandleGetChannelMemberCount(WorldPacket& recvPacket); - void HandleSetChannelWatch(WorldPacket& recvPacket); + + template<void(Channel::*CommandFunction)(Player const*)> + void HandleChannelCommand(WorldPackets::Channel::ChannelPlayerCommand& packet); + + template<void(Channel::*CommandFunction)(Player const*, std::string const&)> + void HandleChannelPlayerCommand(WorldPackets::Channel::ChannelPlayerCommand& packet); + + void HandleVoiceSessionEnableOpcode(WorldPacket& recvData); + void HandleSetActiveVoiceChannel(WorldPacket& recvData); void HandleCompleteCinematic(WorldPacket& recvPacket); void HandleNextCinematicCamera(WorldPacket& recvPacket); @@ -1094,9 +1091,6 @@ class WorldSession void HandleItemRefundInfoRequest(WorldPacket& recvData); void HandleItemRefund(WorldPacket& recvData); - void HandleChannelVoiceOnOpcode(WorldPacket& recvData); - void HandleVoiceSessionEnableOpcode(WorldPacket& recvData); - void HandleSetActiveVoiceChannel(WorldPacket& recvData); void HandleSetTaxiBenchmarkOpcode(WorldPacket& recvData); // Guild Bank @@ -1292,5 +1286,6 @@ class WorldSession WorldSession(WorldSession const& right) = delete; WorldSession& operator=(WorldSession const& right) = delete; }; + #endif /// @} diff --git a/src/server/game/Server/WorldSocket.cpp b/src/server/game/Server/WorldSocket.cpp index 7f4b2cc906e..51074835151 100644 --- a/src/server/game/Server/WorldSocket.cpp +++ b/src/server/game/Server/WorldSocket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Server/WorldSocket.h b/src/server/game/Server/WorldSocket.h index 16769c68c33..94662a616b1 100644 --- a/src/server/game/Server/WorldSocket.h +++ b/src/server/game/Server/WorldSocket.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Server/WorldSocketMgr.cpp b/src/server/game/Server/WorldSocketMgr.cpp index 5fcd308f376..11d77b082e8 100644 --- a/src/server/game/Server/WorldSocketMgr.cpp +++ b/src/server/game/Server/WorldSocketMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2008 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -42,7 +42,7 @@ public: } }; -WorldSocketMgr::WorldSocketMgr() : BaseSocketMgr(), _socketSendBufferSize(-1), m_SockOutUBuff(65536), _tcpNoDelay(true) +WorldSocketMgr::WorldSocketMgr() : BaseSocketMgr(), _instanceAcceptor(nullptr), _socketSendBufferSize(-1), m_SockOutUBuff(65536), _tcpNoDelay(true) { } diff --git a/src/server/game/Server/WorldSocketMgr.h b/src/server/game/Server/WorldSocketMgr.h index 389818b2f9b..34517e2fd42 100644 --- a/src/server/game/Server/WorldSocketMgr.h +++ b/src/server/game/Server/WorldSocketMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2013 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Skills/SkillDiscovery.cpp b/src/server/game/Skills/SkillDiscovery.cpp index 4d9800acedd..e64f7eeb3a1 100644 --- a/src/server/game/Skills/SkillDiscovery.cpp +++ b/src/server/game/Skills/SkillDiscovery.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Skills/SkillDiscovery.h b/src/server/game/Skills/SkillDiscovery.h index 42c7eabf5fc..2126445a1c4 100644 --- a/src/server/game/Skills/SkillDiscovery.h +++ b/src/server/game/Skills/SkillDiscovery.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Skills/SkillExtraItems.cpp b/src/server/game/Skills/SkillExtraItems.cpp index a979e2fa58f..8df9ce86f9a 100644 --- a/src/server/game/Skills/SkillExtraItems.cpp +++ b/src/server/game/Skills/SkillExtraItems.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Skills/SkillExtraItems.h b/src/server/game/Skills/SkillExtraItems.h index d1cc4acbbd2..0cdfff74ed2 100644 --- a/src/server/game/Skills/SkillExtraItems.h +++ b/src/server/game/Skills/SkillExtraItems.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/Auras/SpellAuraDefines.h b/src/server/game/Spells/Auras/SpellAuraDefines.h index c7db28b6fd2..a8370a4b40a 100644 --- a/src/server/game/Spells/Auras/SpellAuraDefines.h +++ b/src/server/game/Spells/Auras/SpellAuraDefines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.cpp b/src/server/game/Spells/Auras/SpellAuraEffects.cpp index 21edb53d3ad..aa1c0744bea 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.cpp +++ b/src/server/game/Spells/Auras/SpellAuraEffects.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/Auras/SpellAuraEffects.h b/src/server/game/Spells/Auras/SpellAuraEffects.h index ebfeece4c7c..41eb2ab91ed 100644 --- a/src/server/game/Spells/Auras/SpellAuraEffects.h +++ b/src/server/game/Spells/Auras/SpellAuraEffects.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/Auras/SpellAuras.cpp b/src/server/game/Spells/Auras/SpellAuras.cpp index cf19e9df359..1a5bb05044c 100644 --- a/src/server/game/Spells/Auras/SpellAuras.cpp +++ b/src/server/game/Spells/Auras/SpellAuras.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/Auras/SpellAuras.h b/src/server/game/Spells/Auras/SpellAuras.h index c2c356efa4b..efd0e49f5ae 100644 --- a/src/server/game/Spells/Auras/SpellAuras.h +++ b/src/server/game/Spells/Auras/SpellAuras.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp index 5e4effbd237..c037730c9e1 100644 --- a/src/server/game/Spells/Spell.cpp +++ b/src/server/game/Spells/Spell.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/Spell.h b/src/server/game/Spells/Spell.h index 3e83478e492..a8ff53b5cb1 100644 --- a/src/server/game/Spells/Spell.h +++ b/src/server/game/Spells/Spell.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index 812055e18d4..5a5090aa91e 100644 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index 01bf2a4dae2..8a5fbb7e99b 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Spells/SpellInfo.h b/src/server/game/Spells/SpellInfo.h index 753bcad0b9d..17b83faec07 100644 --- a/src/server/game/Spells/SpellInfo.h +++ b/src/server/game/Spells/SpellInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 811e6d9c0f9..4d838a363b6 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/SpellMgr.h b/src/server/game/Spells/SpellMgr.h index 3acd13b3a0e..a828b979ac9 100644 --- a/src/server/game/Spells/SpellMgr.h +++ b/src/server/game/Spells/SpellMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Spells/SpellScript.cpp b/src/server/game/Spells/SpellScript.cpp index 6ec8b62e55b..c1ea5b86498 100644 --- a/src/server/game/Spells/SpellScript.cpp +++ b/src/server/game/Spells/SpellScript.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Spells/SpellScript.h b/src/server/game/Spells/SpellScript.h index 2312e9d9f4a..f9f62ab14c6 100644 --- a/src/server/game/Spells/SpellScript.h +++ b/src/server/game/Spells/SpellScript.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Texts/ChatTextBuilder.h b/src/server/game/Texts/ChatTextBuilder.h index 14148e0f38e..dcee6f08ac3 100644 --- a/src/server/game/Texts/ChatTextBuilder.h +++ b/src/server/game/Texts/ChatTextBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Texts/CreatureTextMgr.cpp b/src/server/game/Texts/CreatureTextMgr.cpp index d0e0e5e325d..71b96c3d5bc 100644 --- a/src/server/game/Texts/CreatureTextMgr.cpp +++ b/src/server/game/Texts/CreatureTextMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Texts/CreatureTextMgr.h b/src/server/game/Texts/CreatureTextMgr.h index f15ec94c69b..75650d0b169 100644 --- a/src/server/game/Texts/CreatureTextMgr.h +++ b/src/server/game/Texts/CreatureTextMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Tickets/TicketMgr.cpp b/src/server/game/Tickets/TicketMgr.cpp index 5c1a144efe8..fb812cfbeec 100644 --- a/src/server/game/Tickets/TicketMgr.cpp +++ b/src/server/game/Tickets/TicketMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Tickets/TicketMgr.h b/src/server/game/Tickets/TicketMgr.h index 5c31906c5a8..4dd94cc1762 100644 --- a/src/server/game/Tickets/TicketMgr.h +++ b/src/server/game/Tickets/TicketMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/game/Tools/CharacterDatabaseCleaner.cpp b/src/server/game/Tools/CharacterDatabaseCleaner.cpp index ec96d092393..bd1d1897d5b 100644 --- a/src/server/game/Tools/CharacterDatabaseCleaner.cpp +++ b/src/server/game/Tools/CharacterDatabaseCleaner.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Tools/CharacterDatabaseCleaner.h b/src/server/game/Tools/CharacterDatabaseCleaner.h index 94d17d45c47..f5be291c10b 100644 --- a/src/server/game/Tools/CharacterDatabaseCleaner.h +++ b/src/server/game/Tools/CharacterDatabaseCleaner.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Tools/PlayerDump.cpp b/src/server/game/Tools/PlayerDump.cpp index 43d4374c544..8e3aff790d8 100644 --- a/src/server/game/Tools/PlayerDump.cpp +++ b/src/server/game/Tools/PlayerDump.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Tools/PlayerDump.h b/src/server/game/Tools/PlayerDump.h index 5684d9d05e4..1decdfa3aea 100644 --- a/src/server/game/Tools/PlayerDump.h +++ b/src/server/game/Tools/PlayerDump.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/Modules/WardenModuleMac.h b/src/server/game/Warden/Modules/WardenModuleMac.h index 5489d9ce5fd..145d61fd6f3 100644 --- a/src/server/game/Warden/Modules/WardenModuleMac.h +++ b/src/server/game/Warden/Modules/WardenModuleMac.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/Modules/WardenModuleWin.h b/src/server/game/Warden/Modules/WardenModuleWin.h index 9efd60b1daa..6b27fbfa7e1 100644 --- a/src/server/game/Warden/Modules/WardenModuleWin.h +++ b/src/server/game/Warden/Modules/WardenModuleWin.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/Warden.cpp b/src/server/game/Warden/Warden.cpp index 0810295c0cc..aed2d73c422 100644 --- a/src/server/game/Warden/Warden.cpp +++ b/src/server/game/Warden/Warden.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/Warden.h b/src/server/game/Warden/Warden.h index ec5bfba85cc..4d46773adcd 100644 --- a/src/server/game/Warden/Warden.h +++ b/src/server/game/Warden/Warden.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/WardenCheckMgr.cpp b/src/server/game/Warden/WardenCheckMgr.cpp index 98ed381a2b1..c2d095e6530 100644 --- a/src/server/game/Warden/WardenCheckMgr.cpp +++ b/src/server/game/Warden/WardenCheckMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/WardenCheckMgr.h b/src/server/game/Warden/WardenCheckMgr.h index 4a56c1fc849..d01fc80a1f9 100644 --- a/src/server/game/Warden/WardenCheckMgr.h +++ b/src/server/game/Warden/WardenCheckMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/WardenMac.cpp b/src/server/game/Warden/WardenMac.cpp index f903e5324ac..2eccd4c46ff 100644 --- a/src/server/game/Warden/WardenMac.cpp +++ b/src/server/game/Warden/WardenMac.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/WardenMac.h b/src/server/game/Warden/WardenMac.h index e9ccfe55438..83f98a9e6e1 100644 --- a/src/server/game/Warden/WardenMac.h +++ b/src/server/game/Warden/WardenMac.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/WardenWin.cpp b/src/server/game/Warden/WardenWin.cpp index 1a6127daa89..6e96fc51f2c 100644 --- a/src/server/game/Warden/WardenWin.cpp +++ b/src/server/game/Warden/WardenWin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Warden/WardenWin.h b/src/server/game/Warden/WardenWin.h index d760d9ee981..31d28b22e23 100644 --- a/src/server/game/Warden/WardenWin.h +++ b/src/server/game/Warden/WardenWin.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Weather/Weather.cpp b/src/server/game/Weather/Weather.cpp index cab232931b9..9ad77761123 100644 --- a/src/server/game/Weather/Weather.cpp +++ b/src/server/game/Weather/Weather.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Weather/Weather.h b/src/server/game/Weather/Weather.h index ae83fa67a84..04d38b19c73 100644 --- a/src/server/game/Weather/Weather.h +++ b/src/server/game/Weather/Weather.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Weather/WeatherMgr.cpp b/src/server/game/Weather/WeatherMgr.cpp index 8bf045c5adc..8f599b8514b 100644 --- a/src/server/game/Weather/WeatherMgr.cpp +++ b/src/server/game/Weather/WeatherMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/Weather/WeatherMgr.h b/src/server/game/Weather/WeatherMgr.h index 9c03fa513d0..61eddc0c60a 100644 --- a/src/server/game/Weather/WeatherMgr.h +++ b/src/server/game/Weather/WeatherMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp index 7195c58ae00..8415d3d7bd5 100644 --- a/src/server/game/World/World.cpp +++ b/src/server/game/World/World.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/game/World/World.h b/src/server/game/World/World.h index 8f77ab786c7..ac7193e4267 100644 --- a/src/server/game/World/World.h +++ b/src/server/game/World/World.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/ipc/CMakeLists.txt b/src/server/ipc/CMakeLists.txt index 93a5d630dfe..95e5e2fc0da 100644 --- a/src/server/ipc/CMakeLists.txt +++ b/src/server/ipc/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/ipc/Commands.cpp b/src/server/ipc/Commands.cpp index 61b448d3d01..e08943030f7 100644 --- a/src/server/ipc/Commands.cpp +++ b/src/server/ipc/Commands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/Commands.h b/src/server/ipc/Commands.h index e34f939bae4..b594090b0f8 100644 --- a/src/server/ipc/Commands.h +++ b/src/server/ipc/Commands.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZMQTask.cpp b/src/server/ipc/ZMQTask.cpp index 0d25dc2babf..fe09775505f 100644 --- a/src/server/ipc/ZMQTask.cpp +++ b/src/server/ipc/ZMQTask.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZMQTask.h b/src/server/ipc/ZMQTask.h index 1141f740f76..8dc6563fecb 100644 --- a/src/server/ipc/ZMQTask.h +++ b/src/server/ipc/ZMQTask.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqContext.cpp b/src/server/ipc/ZmqContext.cpp index 305e6b1d843..dfe2ec2b749 100644 --- a/src/server/ipc/ZmqContext.cpp +++ b/src/server/ipc/ZmqContext.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqContext.h b/src/server/ipc/ZmqContext.h index e1168eb97a3..d0124a62ec3 100644 --- a/src/server/ipc/ZmqContext.h +++ b/src/server/ipc/ZmqContext.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqListener.cpp b/src/server/ipc/ZmqListener.cpp index 98333305e58..515cea090e2 100644 --- a/src/server/ipc/ZmqListener.cpp +++ b/src/server/ipc/ZmqListener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqListener.h b/src/server/ipc/ZmqListener.h index 370d8811781..e536fee88e7 100644 --- a/src/server/ipc/ZmqListener.h +++ b/src/server/ipc/ZmqListener.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqMux.cpp b/src/server/ipc/ZmqMux.cpp index 0f87106a948..0f7a8ad8b1b 100644 --- a/src/server/ipc/ZmqMux.cpp +++ b/src/server/ipc/ZmqMux.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqMux.h b/src/server/ipc/ZmqMux.h index c6ec26596c1..e19568e82c3 100644 --- a/src/server/ipc/ZmqMux.h +++ b/src/server/ipc/ZmqMux.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqWorker.cpp b/src/server/ipc/ZmqWorker.cpp index a3db41efe18..5d2d161d1ec 100644 --- a/src/server/ipc/ZmqWorker.cpp +++ b/src/server/ipc/ZmqWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/ipc/ZmqWorker.h b/src/server/ipc/ZmqWorker.h index 7f9b0cd1382..2639d178764 100644 --- a/src/server/ipc/ZmqWorker.h +++ b/src/server/ipc/ZmqWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/CMakeLists.txt b/src/server/scripts/CMakeLists.txt index f1dc26918f1..1d441339df6 100644 --- a/src/server/scripts/CMakeLists.txt +++ b/src/server/scripts/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Commands/CMakeLists.txt b/src/server/scripts/Commands/CMakeLists.txt index 6f969030606..49d71129f90 100644 --- a/src/server/scripts/Commands/CMakeLists.txt +++ b/src/server/scripts/Commands/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Commands/cs_account.cpp b/src/server/scripts/Commands/cs_account.cpp index cbc9e9b823f..c5f1fe114f6 100644 --- a/src/server/scripts/Commands/cs_account.cpp +++ b/src/server/scripts/Commands/cs_account.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_achievement.cpp b/src/server/scripts/Commands/cs_achievement.cpp index edcdb553be0..8a038844ec1 100644 --- a/src/server/scripts/Commands/cs_achievement.cpp +++ b/src/server/scripts/Commands/cs_achievement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_ahbot.cpp b/src/server/scripts/Commands/cs_ahbot.cpp index 772e1a69b21..559a775da31 100644 --- a/src/server/scripts/Commands/cs_ahbot.cpp +++ b/src/server/scripts/Commands/cs_ahbot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_arena.cpp b/src/server/scripts/Commands/cs_arena.cpp index 29b874d83c4..596aeca95df 100644 --- a/src/server/scripts/Commands/cs_arena.cpp +++ b/src/server/scripts/Commands/cs_arena.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_ban.cpp b/src/server/scripts/Commands/cs_ban.cpp index c3e32e007af..1b0f8fec4a3 100644 --- a/src/server/scripts/Commands/cs_ban.cpp +++ b/src/server/scripts/Commands/cs_ban.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_battlenet_account.cpp b/src/server/scripts/Commands/cs_battlenet_account.cpp index e98e0f34fd1..f92f541c0a2 100644 --- a/src/server/scripts/Commands/cs_battlenet_account.cpp +++ b/src/server/scripts/Commands/cs_battlenet_account.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_bf.cpp b/src/server/scripts/Commands/cs_bf.cpp index b74bb733822..830e801bcef 100644 --- a/src/server/scripts/Commands/cs_bf.cpp +++ b/src/server/scripts/Commands/cs_bf.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_cast.cpp b/src/server/scripts/Commands/cs_cast.cpp index 9bc79c3f8f9..dfd0bb36755 100644 --- a/src/server/scripts/Commands/cs_cast.cpp +++ b/src/server/scripts/Commands/cs_cast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_character.cpp b/src/server/scripts/Commands/cs_character.cpp index f066613b905..93a4a526786 100644 --- a/src/server/scripts/Commands/cs_character.cpp +++ b/src/server/scripts/Commands/cs_character.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_cheat.cpp b/src/server/scripts/Commands/cs_cheat.cpp index 54db5c2af51..07fae339996 100644 --- a/src/server/scripts/Commands/cs_cheat.cpp +++ b/src/server/scripts/Commands/cs_cheat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_debug.cpp b/src/server/scripts/Commands/cs_debug.cpp index b6afc619387..8530a226ab1 100644 --- a/src/server/scripts/Commands/cs_debug.cpp +++ b/src/server/scripts/Commands/cs_debug.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_deserter.cpp b/src/server/scripts/Commands/cs_deserter.cpp index 9dcecba05ef..2887ac8c134 100644 --- a/src/server/scripts/Commands/cs_deserter.cpp +++ b/src/server/scripts/Commands/cs_deserter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_disable.cpp b/src/server/scripts/Commands/cs_disable.cpp index 8cf60e4bb28..14f76945a80 100644 --- a/src/server/scripts/Commands/cs_disable.cpp +++ b/src/server/scripts/Commands/cs_disable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_event.cpp b/src/server/scripts/Commands/cs_event.cpp index b89c5686511..37495289149 100644 --- a/src/server/scripts/Commands/cs_event.cpp +++ b/src/server/scripts/Commands/cs_event.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_gm.cpp b/src/server/scripts/Commands/cs_gm.cpp index 24da9e37327..8bf4eebd62e 100644 --- a/src/server/scripts/Commands/cs_gm.cpp +++ b/src/server/scripts/Commands/cs_gm.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_go.cpp b/src/server/scripts/Commands/cs_go.cpp index d0bf3c3e781..b2256ba962b 100644 --- a/src/server/scripts/Commands/cs_go.cpp +++ b/src/server/scripts/Commands/cs_go.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_gobject.cpp b/src/server/scripts/Commands/cs_gobject.cpp index d802d5a496d..f7a261eaa92 100644 --- a/src/server/scripts/Commands/cs_gobject.cpp +++ b/src/server/scripts/Commands/cs_gobject.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_group.cpp b/src/server/scripts/Commands/cs_group.cpp index f58517f4813..ae7b2039e81 100644 --- a/src/server/scripts/Commands/cs_group.cpp +++ b/src/server/scripts/Commands/cs_group.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_guild.cpp b/src/server/scripts/Commands/cs_guild.cpp index f7a614b171b..88ded7a376c 100644 --- a/src/server/scripts/Commands/cs_guild.cpp +++ b/src/server/scripts/Commands/cs_guild.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_honor.cpp b/src/server/scripts/Commands/cs_honor.cpp index eeaee40fea9..ad2c53415bb 100644 --- a/src/server/scripts/Commands/cs_honor.cpp +++ b/src/server/scripts/Commands/cs_honor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_instance.cpp b/src/server/scripts/Commands/cs_instance.cpp index 0bc352be842..78c8f970f52 100644 --- a/src/server/scripts/Commands/cs_instance.cpp +++ b/src/server/scripts/Commands/cs_instance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_learn.cpp b/src/server/scripts/Commands/cs_learn.cpp index e571f30b74e..e607bd3f082 100644 --- a/src/server/scripts/Commands/cs_learn.cpp +++ b/src/server/scripts/Commands/cs_learn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_lfg.cpp b/src/server/scripts/Commands/cs_lfg.cpp index 1a4cce16d68..308a841df2a 100644 --- a/src/server/scripts/Commands/cs_lfg.cpp +++ b/src/server/scripts/Commands/cs_lfg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_list.cpp b/src/server/scripts/Commands/cs_list.cpp index 7721fed3fba..c06dba9dc4e 100644 --- a/src/server/scripts/Commands/cs_list.cpp +++ b/src/server/scripts/Commands/cs_list.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_lookup.cpp b/src/server/scripts/Commands/cs_lookup.cpp index f92e62f2aa9..626a0cbb086 100644 --- a/src/server/scripts/Commands/cs_lookup.cpp +++ b/src/server/scripts/Commands/cs_lookup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_message.cpp b/src/server/scripts/Commands/cs_message.cpp index 664c8f3d216..30cc075692a 100644 --- a/src/server/scripts/Commands/cs_message.cpp +++ b/src/server/scripts/Commands/cs_message.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_misc.cpp b/src/server/scripts/Commands/cs_misc.cpp index 674560f2500..164f53cf9c1 100644 --- a/src/server/scripts/Commands/cs_misc.cpp +++ b/src/server/scripts/Commands/cs_misc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_mmaps.cpp b/src/server/scripts/Commands/cs_mmaps.cpp index a6a7fac3cb5..16edb91873f 100644 --- a/src/server/scripts/Commands/cs_mmaps.cpp +++ b/src/server/scripts/Commands/cs_mmaps.cpp @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_modify.cpp b/src/server/scripts/Commands/cs_modify.cpp index aadf97e9b0c..3588297c31a 100644 --- a/src/server/scripts/Commands/cs_modify.cpp +++ b/src/server/scripts/Commands/cs_modify.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_npc.cpp b/src/server/scripts/Commands/cs_npc.cpp index 9a347463e15..70086c94988 100644 --- a/src/server/scripts/Commands/cs_npc.cpp +++ b/src/server/scripts/Commands/cs_npc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_pet.cpp b/src/server/scripts/Commands/cs_pet.cpp index d36214d1898..943b779e7e7 100644 --- a/src/server/scripts/Commands/cs_pet.cpp +++ b/src/server/scripts/Commands/cs_pet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_quest.cpp b/src/server/scripts/Commands/cs_quest.cpp index 26806ce6785..297c5600929 100644 --- a/src/server/scripts/Commands/cs_quest.cpp +++ b/src/server/scripts/Commands/cs_quest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_rbac.cpp b/src/server/scripts/Commands/cs_rbac.cpp index ab960026d69..d6f5f40a9c6 100644 --- a/src/server/scripts/Commands/cs_rbac.cpp +++ b/src/server/scripts/Commands/cs_rbac.cpp @@ -1,5 +1,5 @@ /*
- * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/>
+ * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
diff --git a/src/server/scripts/Commands/cs_reload.cpp b/src/server/scripts/Commands/cs_reload.cpp index 5ade8708703..e4a3a832aa7 100644 --- a/src/server/scripts/Commands/cs_reload.cpp +++ b/src/server/scripts/Commands/cs_reload.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_reset.cpp b/src/server/scripts/Commands/cs_reset.cpp index 1c3bff77593..c02bfc15040 100644 --- a/src/server/scripts/Commands/cs_reset.cpp +++ b/src/server/scripts/Commands/cs_reset.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_send.cpp b/src/server/scripts/Commands/cs_send.cpp index c42ebe5655e..3ce7db3e36a 100644 --- a/src/server/scripts/Commands/cs_send.cpp +++ b/src/server/scripts/Commands/cs_send.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_server.cpp b/src/server/scripts/Commands/cs_server.cpp index a5b2ed045c6..7ecf1337ee5 100644 --- a/src/server/scripts/Commands/cs_server.cpp +++ b/src/server/scripts/Commands/cs_server.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_tele.cpp b/src/server/scripts/Commands/cs_tele.cpp index 2aa5fdc40e6..55562a004ac 100644 --- a/src/server/scripts/Commands/cs_tele.cpp +++ b/src/server/scripts/Commands/cs_tele.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_ticket.cpp b/src/server/scripts/Commands/cs_ticket.cpp index 3917368a3c3..d6614255ee3 100644 --- a/src/server/scripts/Commands/cs_ticket.cpp +++ b/src/server/scripts/Commands/cs_ticket.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_titles.cpp b/src/server/scripts/Commands/cs_titles.cpp index 60d376d867a..74df7266e57 100644 --- a/src/server/scripts/Commands/cs_titles.cpp +++ b/src/server/scripts/Commands/cs_titles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Commands/cs_wp.cpp b/src/server/scripts/Commands/cs_wp.cpp index 58b86e9da74..35b142e9e5e 100644 --- a/src/server/scripts/Commands/cs_wp.cpp +++ b/src/server/scripts/Commands/cs_wp.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Custom/CMakeLists.txt b/src/server/scripts/Custom/CMakeLists.txt index 80ebe36b555..5218f76ee66 100644 --- a/src/server/scripts/Custom/CMakeLists.txt +++ b/src/server/scripts/Custom/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp index a9fc95fdb14..451384d18d9 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/alterac_valley.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp index c8717a73f16..09c0a465c17 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_balinda.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp index d9b0c1490b5..59d5250bf1d 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_drekthar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp index 0c029537add..3b038a12b54 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_galvangar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp b/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp index 1eabfb67f57..99d6b7c1c73 100644 --- a/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp +++ b/src/server/scripts/EasternKingdoms/AlteracValley/boss_vanndar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BaradinHold/baradin_hold.h b/src/server/scripts/EasternKingdoms/BaradinHold/baradin_hold.h index 2ae40d1d39a..cc3b2f44ecb 100644 --- a/src/server/scripts/EasternKingdoms/BaradinHold/baradin_hold.h +++ b/src/server/scripts/EasternKingdoms/BaradinHold/baradin_hold.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2013 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BaradinHold/boss_alizabal.cpp b/src/server/scripts/EasternKingdoms/BaradinHold/boss_alizabal.cpp index 80ddecf8914..293d4cca10a 100644 --- a/src/server/scripts/EasternKingdoms/BaradinHold/boss_alizabal.cpp +++ b/src/server/scripts/EasternKingdoms/BaradinHold/boss_alizabal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BaradinHold/boss_occuthar.cpp b/src/server/scripts/EasternKingdoms/BaradinHold/boss_occuthar.cpp index 5805509cc9b..87c4c89204a 100644 --- a/src/server/scripts/EasternKingdoms/BaradinHold/boss_occuthar.cpp +++ b/src/server/scripts/EasternKingdoms/BaradinHold/boss_occuthar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BaradinHold/boss_pit_lord_argaloth.cpp b/src/server/scripts/EasternKingdoms/BaradinHold/boss_pit_lord_argaloth.cpp index 26a6b89dee9..6e82cd00734 100644 --- a/src/server/scripts/EasternKingdoms/BaradinHold/boss_pit_lord_argaloth.cpp +++ b/src/server/scripts/EasternKingdoms/BaradinHold/boss_pit_lord_argaloth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BaradinHold/instance_baradin_hold.cpp b/src/server/scripts/EasternKingdoms/BaradinHold/instance_baradin_hold.cpp index 8f523b7bfac..5fdce92dd85 100644 --- a/src/server/scripts/EasternKingdoms/BaradinHold/instance_baradin_hold.cpp +++ b/src/server/scripts/EasternKingdoms/BaradinHold/instance_baradin_hold.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.cpp index 97d43ab163c..2107fa80fd6 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.h b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.h index d44eeda9c28..f82e28b7490 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.h +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/blackrock_caverns.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_ascendant_lord_obsidius.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_ascendant_lord_obsidius.cpp index a3bbb4bfcfa..6efd8b2e3bb 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_ascendant_lord_obsidius.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_ascendant_lord_obsidius.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_beauty.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_beauty.cpp index 5f01023cd98..dacee322467 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_beauty.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_beauty.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_corla.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_corla.cpp index e97583c3575..41a776669c3 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_corla.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_corla.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_karsh_steelbender.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_karsh_steelbender.cpp index 3cd1c4b4031..51a5cf68e43 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_karsh_steelbender.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_karsh_steelbender.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_romogg_bonecrusher.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_romogg_bonecrusher.cpp index d3d737d75be..56f6e465c7e 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_romogg_bonecrusher.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/boss_romogg_bonecrusher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/instance_blackrock_caverns.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/instance_blackrock_caverns.cpp index 99dd60f0d24..0c8f5c797b7 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/instance_blackrock_caverns.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockCaverns/instance_blackrock_caverns.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp index 857ae04d41b..59255691f48 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.h b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.h index 160c80fc4d1..3deb2b153ec 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.h +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/blackrock_depths.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp index 3e4097daf20..53d490c4b64 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_ambassador_flamelash.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp index 894b528c03c..c2261785782 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_anubshiah.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_emperor_dagran_thaurissan.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_emperor_dagran_thaurissan.cpp index 4b2434c73c9..ca9c6b27ef7 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_emperor_dagran_thaurissan.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_emperor_dagran_thaurissan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp index d5b8d1deadd..114be945bde 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_general_angerforge.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp index e9034e17d83..83702ffb16d 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_gorosh_the_dervish.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp index f53fd0f65b3..44dbbe3f4c2 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_grizzle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp index c41ddf9d98b..99f46b4225c 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_high_interrogator_gerstahn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp index 3230a700810..2d70aacf2ea 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_magmus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp index 8342bef682b..35f3a6d9835 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_moira_bronzebeard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_tomb_of_seven.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_tomb_of_seven.cpp index 6706713698d..a9109c73d94 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_tomb_of_seven.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/boss_tomb_of_seven.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp index a8b373531a1..83b8651943c 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockDepths/instance_blackrock_depths.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/blackrock_spire.h b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/blackrock_spire.h index be8149fbdcc..a2efad28fd3 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/blackrock_spire.h +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/blackrock_spire.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp index 6a56ce363f4..bfa4298db30 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_drakkisath.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp index e92409555da..ea4e4a77faa 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gizrul_the_slavener.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp index ea92aa91b69..d8e6b838d81 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_gyth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp index b85cf4611ac..2199a2d4642 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_halycon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp index 25e8014639f..c11914f006e 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_highlord_omokk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp index bc1bdca1f61..7e51c96805f 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_lord_valthalak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp index 87ecd00609d..86c13ef10dc 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_mother_smolderweb.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp index 4b4633d54ca..7d64310fb7f 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_overlord_wyrmthalak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp index 92906009b9a..e3c2b7a67ec 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_pyroguard_emberseer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp index e431bebcf02..215e8125a41 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_quartermaster_zigris.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_rend_blackhand.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_rend_blackhand.cpp index 2018f12b613..d5265def9e1 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_rend_blackhand.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_rend_blackhand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp index f70864c0ebe..c3788b31b0b 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_shadow_hunter_voshgajin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp index 51e84359707..439c5053cff 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_the_beast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp index 412844b8709..20a3f34ea28 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_urok_doomhowl.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp index 756f8d22511..1ebee9a9327 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/boss_warmaster_voone.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/instance_blackrock_spire.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/instance_blackrock_spire.cpp index 34d524a5470..635333a5886 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/instance_blackrock_spire.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackrockSpire/instance_blackrock_spire.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/blackwing_lair.h b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/blackwing_lair.h index 1cf89a263ce..c79a57d0746 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/blackwing_lair.h +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/blackwing_lair.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_broodlord_lashlayer.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_broodlord_lashlayer.cpp index 491d8cbd512..2609cf5fdf8 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_broodlord_lashlayer.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_broodlord_lashlayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp index 9a6d0e9c224..61d6c052cdf 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_ebonroc.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_ebonroc.cpp index 158ffce8cea..8bd3ae0ebce 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_ebonroc.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_ebonroc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_firemaw.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_firemaw.cpp index 4814a1a98d1..e41153796e5 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_firemaw.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_firemaw.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_flamegor.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_flamegor.cpp index 98bf146c9c9..011c695b61f 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_flamegor.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_flamegor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp index 2793a6a0510..6c0f8cad0f5 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_nefarian.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_razorgore.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_razorgore.cpp index 2efea4ae30c..8d660fc17d1 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_razorgore.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_razorgore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp index 22a33ba4b6c..4a0ead606d7 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_vaelastrasz.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp index 6d29170c5ff..b8843afef98 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/instance_blackwing_lair.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_baron_geddon.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_baron_geddon.cpp index 81731fabeb0..6a3c85f1f98 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_baron_geddon.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_baron_geddon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp index a268890c25d..77e9b9962f9 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_garr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_gehennas.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_gehennas.cpp index 39dc0f11248..5b5456f1b40 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_gehennas.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_gehennas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_golemagg.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_golemagg.cpp index cdfe00c767f..04532b54543 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_golemagg.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_golemagg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_lucifron.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_lucifron.cpp index e61b6f2cbf9..779418a7f73 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_lucifron.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_lucifron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_magmadar.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_magmadar.cpp index 4a3b6cc16e4..532ef043d68 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_magmadar.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_magmadar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp index 80f907d4803..3c2836e1597 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_majordomo_executus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp index 58f38ec4267..1275319d37a 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_ragnaros.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp index 44c41a6be0f..77927b339cb 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_shazzrah.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_sulfuron_harbinger.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_sulfuron_harbinger.cpp index dfe7a1527cd..d066fe980f9 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_sulfuron_harbinger.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/boss_sulfuron_harbinger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/instance_molten_core.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/instance_molten_core.cpp index d87fd69cbf4..00acb9d6746 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/instance_molten_core.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/instance_molten_core.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/molten_core.h b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/molten_core.h index af0e0a89e45..e4756bc7a81 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/molten_core.h +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/MoltenCore/molten_core.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/CMakeLists.txt b/src/server/scripts/EasternKingdoms/CMakeLists.txt index 83fdf513f01..754f0173c97 100644 --- a/src/server/scripts/EasternKingdoms/CMakeLists.txt +++ b/src/server/scripts/EasternKingdoms/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp b/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp index 029c3f08a8d..1191497e873 100644 --- a/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp +++ b/src/server/scripts/EasternKingdoms/Deadmines/boss_mr_smite.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Deadmines/deadmines.cpp b/src/server/scripts/EasternKingdoms/Deadmines/deadmines.cpp index 59610b20015..2b6e7b24721 100644 --- a/src/server/scripts/EasternKingdoms/Deadmines/deadmines.cpp +++ b/src/server/scripts/EasternKingdoms/Deadmines/deadmines.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Deadmines/deadmines.h b/src/server/scripts/EasternKingdoms/Deadmines/deadmines.h index b1ff0e03ff0..79121f6ef08 100644 --- a/src/server/scripts/EasternKingdoms/Deadmines/deadmines.h +++ b/src/server/scripts/EasternKingdoms/Deadmines/deadmines.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp b/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp index 177f35329be..9d651493c0d 100644 --- a/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp +++ b/src/server/scripts/EasternKingdoms/Deadmines/instance_deadmines.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.cpp b/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.cpp index 6d9d07fdd81..5ad5a3782ae 100644 --- a/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.cpp +++ b/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.h b/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.h index adac26efff5..760f84a69e9 100644 --- a/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.h +++ b/src/server/scripts/EasternKingdoms/Gnomeregan/gnomeregan.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Gnomeregan/instance_gnomeregan.cpp b/src/server/scripts/EasternKingdoms/Gnomeregan/instance_gnomeregan.cpp index 958126610f9..843b28ce430 100644 --- a/src/server/scripts/EasternKingdoms/Gnomeregan/instance_gnomeregan.cpp +++ b/src/server/scripts/EasternKingdoms/Gnomeregan/instance_gnomeregan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp index f469bf6deb1..e3efd804f44 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_curator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp index 0f4840c0d1f..7af7f27ec0c 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_maiden_of_virtue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp index 87f7ab5f07e..0b5c3302890 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_midnight.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp index 8877289813b..f7d43bf631b 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_moroes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp index 77e9e3fe86d..5e83c0c8653 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_netherspite.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_nightbane.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_nightbane.cpp index 619e3c9cd15..d8f1e2d15d7 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_nightbane.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_nightbane.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp index 06e4859a931..0abba3dfff4 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_prince_malchezaar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp index 9c4865a8d84..8e1e74ebbfb 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_shade_of_aran.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp index 2b0fb61dba3..de9b49f672e 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_terestian_illhoof.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp b/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp index 944858fc573..064ec86f929 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/bosses_opera.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp b/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp index a294611babf..1302c618e6f 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/instance_karazhan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/karazhan.cpp b/src/server/scripts/EasternKingdoms/Karazhan/karazhan.cpp index 159035c6eb3..59f2ce1a2c9 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/karazhan.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/karazhan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h b/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h index eec7e461e9b..83f3f38aaea 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h +++ b/src/server/scripts/EasternKingdoms/Karazhan/karazhan.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp index bae61f9b452..a95ac9aaa20 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_felblood_kaelthas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp index c6bd65cb909..cf8a54fd802 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_priestess_delrissa.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp index c186470f2d5..f57de5316ab 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_selin_fireheart.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_vexallus.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_vexallus.cpp index b9930820303..7d91a68e7ca 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_vexallus.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/boss_vexallus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp index 65fed52d998..665213314b4 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp index 6758808c5d9..9d96a73bf71 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.h b/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.h index 142453c2502..2b1ed8fee4d 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.h +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/magisters_terrace.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp index ce359603176..16167d81f79 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp index 873ca94c033..b65db4c90ff 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter2.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp index d2c0ae88590..b21b2f8a73c 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter5.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp index efba7040b76..b53fdf4d600 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/zone_the_scarlet_enclave.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp index cdfcede1c93..59b1b553a07 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_arcanist_doan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp index c3c74e4c83d..c2dbd0c7245 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_azshir_the_sleepless.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp index 14698faaa97..8f80344b247 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_bloodmage_thalnos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp index d2288ab8af7..6b6ac8b313c 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_headless_horseman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp index d77334785ef..911cdf90d18 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_herod.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp index 78a317b216e..7bf70c4d7f1 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_high_inquisitor_fairbanks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp index 0e1b51f9a83..4098701be76 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_houndmaster_loksey.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_interrogator_vishas.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_interrogator_vishas.cpp index 4f0cdc2ec16..e9a7dd0ce18 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_interrogator_vishas.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_interrogator_vishas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp index da32e535ab2..2848b19cd04 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_mograine_and_whitemane.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp index d64e556c011..86d2c170f29 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/boss_scorn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp b/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp index ab0a44b013d..ed9f7ccb6dd 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/instance_scarlet_monastery.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ScarletMonastery/scarlet_monastery.h b/src/server/scripts/EasternKingdoms/ScarletMonastery/scarlet_monastery.h index af716b5f448..cbff8d50dae 100644 --- a/src/server/scripts/EasternKingdoms/ScarletMonastery/scarlet_monastery.h +++ b/src/server/scripts/EasternKingdoms/ScarletMonastery/scarlet_monastery.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp index e5a42096a04..b66ff920c8a 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_darkmaster_gandling.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp index a4f53b9e082..85e1e33c22a 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_death_knight_darkreaver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp index 82c7e6cea78..e0da7b9a440 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_doctor_theolen_krastinov.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp index e8e69c5c8b1..b073f5ade73 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_illucia_barov.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp index 4a9703b509b..3d7b96a9abd 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_instructor_malicia.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp index c5f7a5da6d7..f09c896e0be 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_jandice_barov.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_kirtonos_the_herald.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_kirtonos_the_herald.cpp index 05f5dcd9952..8f780d1e2c3 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_kirtonos_the_herald.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_kirtonos_the_herald.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp index 099a69782b8..00b3beeabf0 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_kormok.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp index cbe707a353e..72fd1a18b9d 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_lord_alexei_barov.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp index 7c82520959b..679fa0dc58e 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_lorekeeper_polkelt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp index 348e2212870..b6a3f186268 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_ras_frostwhisper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp index 51eb42cd7ab..47e0bd80068 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_the_ravenian.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp b/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp index f5b1dc34062..f555554e6c4 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/boss_vectus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp b/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp index 9565666cee8..49c3c3ba1c7 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp +++ b/src/server/scripts/EasternKingdoms/Scholomance/instance_scholomance.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Scholomance/scholomance.h b/src/server/scripts/EasternKingdoms/Scholomance/scholomance.h index 30d0e978145..0ec53105f1f 100644 --- a/src/server/scripts/EasternKingdoms/Scholomance/scholomance.h +++ b/src/server/scripts/EasternKingdoms/Scholomance/scholomance.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp b/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp index 3379882ce28..be544449b67 100644 --- a/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp +++ b/src/server/scripts/EasternKingdoms/ShadowfangKeep/instance_shadowfang_keep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.cpp b/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.cpp index a6e77a234c6..f2d3a21a280 100644 --- a/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.cpp +++ b/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.h b/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.h index 669dfc3975d..2f0de6de5e6 100644 --- a/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.h +++ b/src/server/scripts/EasternKingdoms/ShadowfangKeep/shadowfang_keep.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_baron_rivendare.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_baron_rivendare.cpp index 85f5b51b52e..8d7d43048b4 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_baron_rivendare.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_baron_rivendare.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_baroness_anastari.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_baroness_anastari.cpp index fa8f0f39563..d8f4383f614 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_baroness_anastari.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_baroness_anastari.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp index 063081021fd..2e33865fe28 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_cannon_master_willey.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp index 1c7af67190f..3f207ef680d 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_dathrohan_balnazzar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp index ddd51320b1c..e42662bbe0b 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_magistrate_barthilas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_maleki_the_pallid.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_maleki_the_pallid.cpp index 68193ffd0c2..96651e5bff4 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_maleki_the_pallid.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_maleki_the_pallid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_nerubenkan.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_nerubenkan.cpp index 1d3e28946be..2dc00edac16 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_nerubenkan.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_nerubenkan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_order_of_silver_hand.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_order_of_silver_hand.cpp index e855b7e676f..9ac8d9b40f9 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_order_of_silver_hand.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_order_of_silver_hand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp index f5ca0a42fad..6d9ccc5e882 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_postmaster_malown.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_ramstein_the_gorger.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_ramstein_the_gorger.cpp index 531a4f3887a..e3ea85a1d1f 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_ramstein_the_gorger.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_ramstein_the_gorger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp b/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp index f721fca8aab..cbc9e3c375d 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/boss_timmy_the_cruel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp index 699b61ed216..1257808756e 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/instance_stratholme.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp b/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp index 384be9c90a8..ba99df8cdd5 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp +++ b/src/server/scripts/EasternKingdoms/Stratholme/stratholme.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Stratholme/stratholme.h b/src/server/scripts/EasternKingdoms/Stratholme/stratholme.h index 687512ea92d..28b0a67fa75 100644 --- a/src/server/scripts/EasternKingdoms/Stratholme/stratholme.h +++ b/src/server/scripts/EasternKingdoms/Stratholme/stratholme.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/SunkenTemple/instance_sunken_temple.cpp b/src/server/scripts/EasternKingdoms/SunkenTemple/instance_sunken_temple.cpp index bc3980d6420..1d7e1594d05 100644 --- a/src/server/scripts/EasternKingdoms/SunkenTemple/instance_sunken_temple.cpp +++ b/src/server/scripts/EasternKingdoms/SunkenTemple/instance_sunken_temple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.cpp b/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.cpp index 327fc0cace3..3ced85f09a2 100644 --- a/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.cpp +++ b/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.h b/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.h index bfd99e2afdd..cf7924f80b0 100644 --- a/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.h +++ b/src/server/scripts/EasternKingdoms/SunkenTemple/sunken_temple.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp index 1ad113456ac..6ca768b2de7 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_brutallus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp index 9705e4305d7..175ad778278 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_eredar_twins.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp index 859a09aff78..c4598dda915 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kalecgos.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kalecgos.cpp index 3a751f1769e..dc5a0c4f1ee 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kalecgos.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kalecgos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp index 9bddbcccf49..4d544ccdeab 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_kiljaeden.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp index cf0228f5192..726a532258d 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp index f0e785bad16..9b1585ba58b 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/instance_sunwell_plateau.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.cpp index 69c48e40d88..5be8cfab555 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.h b/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.h index e6aed3eddf7..92d0dc9f6cc 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.h +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/sunwell_plateau.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp b/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp index 53602e866ad..6df7679a403 100644 --- a/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp +++ b/src/server/scripts/EasternKingdoms/TheStockade/instance_the_stockade.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/Uldaman/boss_archaedas.cpp b/src/server/scripts/EasternKingdoms/Uldaman/boss_archaedas.cpp index 6986cb8d6e9..ec2f41cc625 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/boss_archaedas.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/boss_archaedas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2007 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp b/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp index 6062f01691c..de899c04e1a 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/boss_ironaya.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp b/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp index c6c190dd962..9d33d41af62 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/instance_uldaman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2007 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp b/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp index 236cc55eee8..7cd7da771d1 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp +++ b/src/server/scripts/EasternKingdoms/Uldaman/uldaman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/Uldaman/uldaman.h b/src/server/scripts/EasternKingdoms/Uldaman/uldaman.h index 8697172fcb9..03d638ff5c2 100644 --- a/src/server/scripts/EasternKingdoms/Uldaman/uldaman.h +++ b/src/server/scripts/EasternKingdoms/Uldaman/uldaman.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_akilzon.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_akilzon.cpp index f67e8d2712e..b4ef9f34c64 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_akilzon.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_akilzon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_daakara.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_daakara.cpp index dd5fdf989fd..d1d62b373e5 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_daakara.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_daakara.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp index d10d749be81..dcef6dc6166 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp index 7219d6e5f9e..9040edf1e12 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_hexlord.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp index 61955d7ae5a..b4e20641a85 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_janalai.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp index 89ee0cfd8d4..dcc6f02473e 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_nalorakk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp b/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp index 7d5ff280533..2b33461dc4e 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/instance_zulaman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/zulaman.cpp b/src/server/scripts/EasternKingdoms/ZulAman/zulaman.cpp index ac557bcad97..5af9fd8c800 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/zulaman.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/zulaman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulAman/zulaman.h b/src/server/scripts/EasternKingdoms/ZulAman/zulaman.h index 820788c66ec..42b23016fde 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/zulaman.h +++ b/src/server/scripts/EasternKingdoms/ZulAman/zulaman.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp index fccaf768704..49123092b37 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_grilek.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp index 14d5f301241..8ffa6fac557 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_hazzarah.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo_the_godbreaker.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo_the_godbreaker.cpp index d06fdb2840e..7a92b21545b 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo_the_godbreaker.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_jindo_the_godbreaker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_kilnara.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_kilnara.cpp index b42b6d29731..61797653812 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_kilnara.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_kilnara.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp index b278916c8a3..3f44de57968 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_mandokir.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp index 66955db8163..71d96a232ee 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_renataki.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp index b334c611528..9077d807720 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_venoxis.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp index 997e4ec3077..6d78ad80596 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_wushoolay.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/boss_zanzil.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/boss_zanzil.cpp index 6d22284ef62..069921b8060 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/boss_zanzil.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/boss_zanzil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp b/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp index 914f06ee033..3894cd1481f 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp +++ b/src/server/scripts/EasternKingdoms/ZulGurub/instance_zulgurub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/ZulGurub/zulgurub.h b/src/server/scripts/EasternKingdoms/ZulGurub/zulgurub.h index bdb73a77997..d0ead72fb87 100644 --- a/src/server/scripts/EasternKingdoms/ZulGurub/zulgurub.h +++ b/src/server/scripts/EasternKingdoms/ZulGurub/zulgurub.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp b/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp index d34dc053fc5..73a8cd10168 100644 --- a/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_arathi_highlands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_blasted_lands.cpp b/src/server/scripts/EasternKingdoms/zone_blasted_lands.cpp index 293a6b90915..c0010991d31 100644 --- a/src/server/scripts/EasternKingdoms/zone_blasted_lands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_blasted_lands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp b/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp index 0c45ba98064..3d8151897e9 100644 --- a/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp +++ b/src/server/scripts/EasternKingdoms/zone_burning_steppes.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/zone_duskwood.cpp b/src/server/scripts/EasternKingdoms/zone_duskwood.cpp index b42f09b009e..9bbaf616a6c 100644 --- a/src/server/scripts/EasternKingdoms/zone_duskwood.cpp +++ b/src/server/scripts/EasternKingdoms/zone_duskwood.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp b/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp index 81b0491f48d..2f10aa858f9 100644 --- a/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_eastern_plaguelands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp b/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp index db7f027d53d..2e20ebfb479 100644 --- a/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_ghostlands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_hinterlands.cpp b/src/server/scripts/EasternKingdoms/zone_hinterlands.cpp index 8888b662ff6..a09a66fbb43 100644 --- a/src/server/scripts/EasternKingdoms/zone_hinterlands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_hinterlands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_ironforge.cpp b/src/server/scripts/EasternKingdoms/zone_ironforge.cpp index 5a0951c0b23..5e4fc94dcf9 100644 --- a/src/server/scripts/EasternKingdoms/zone_ironforge.cpp +++ b/src/server/scripts/EasternKingdoms/zone_ironforge.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp b/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp index 88b8d1e6af5..3f72b7353d6 100644 --- a/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp +++ b/src/server/scripts/EasternKingdoms/zone_isle_of_queldanas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_loch_modan.cpp b/src/server/scripts/EasternKingdoms/zone_loch_modan.cpp index 95be9c9e8b2..ab911d57060 100644 --- a/src/server/scripts/EasternKingdoms/zone_loch_modan.cpp +++ b/src/server/scripts/EasternKingdoms/zone_loch_modan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp b/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp index f71f78fb9cb..5771a379ed1 100644 --- a/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp +++ b/src/server/scripts/EasternKingdoms/zone_redridge_mountains.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp b/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp index 1d68ac01f6d..45cc1c97c4c 100644 --- a/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp +++ b/src/server/scripts/EasternKingdoms/zone_silverpine_forest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp b/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp index f48c3f7556f..108d572523f 100644 --- a/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp +++ b/src/server/scripts/EasternKingdoms/zone_stormwind_city.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/zone_stranglethorn_vale.cpp b/src/server/scripts/EasternKingdoms/zone_stranglethorn_vale.cpp index d1bb7ae3c6a..0c13aac2864 100644 --- a/src/server/scripts/EasternKingdoms/zone_stranglethorn_vale.cpp +++ b/src/server/scripts/EasternKingdoms/zone_stranglethorn_vale.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_swamp_of_sorrows.cpp b/src/server/scripts/EasternKingdoms/zone_swamp_of_sorrows.cpp index 69b9ca85a23..aed6002dad0 100644 --- a/src/server/scripts/EasternKingdoms/zone_swamp_of_sorrows.cpp +++ b/src/server/scripts/EasternKingdoms/zone_swamp_of_sorrows.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_tirisfal_glades.cpp b/src/server/scripts/EasternKingdoms/zone_tirisfal_glades.cpp index b03965ea9e3..cae3f1e5716 100644 --- a/src/server/scripts/EasternKingdoms/zone_tirisfal_glades.cpp +++ b/src/server/scripts/EasternKingdoms/zone_tirisfal_glades.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/EasternKingdoms/zone_undercity.cpp b/src/server/scripts/EasternKingdoms/zone_undercity.cpp index 48f614a73c0..9ce694fb76c 100644 --- a/src/server/scripts/EasternKingdoms/zone_undercity.cpp +++ b/src/server/scripts/EasternKingdoms/zone_undercity.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp b/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp index 952d191bd1a..9cecbc31665 100644 --- a/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/EasternKingdoms/zone_wetlands.cpp b/src/server/scripts/EasternKingdoms/zone_wetlands.cpp index 94cea417b04..d41ab5776aa 100644 --- a/src/server/scripts/EasternKingdoms/zone_wetlands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_wetlands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Events/CMakeLists.txt b/src/server/scripts/Events/CMakeLists.txt index 3bdb6e6eac2..0fad0276a81 100644 --- a/src/server/scripts/Events/CMakeLists.txt +++ b/src/server/scripts/Events/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Events/childrens_week.cpp b/src/server/scripts/Events/childrens_week.cpp index beaff689a8d..dd2f860c66c 100644 --- a/src/server/scripts/Events/childrens_week.cpp +++ b/src/server/scripts/Events/childrens_week.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.cpp b/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.cpp index 0fe3eee2805..8d9406adee1 100644 --- a/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.cpp +++ b/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.h b/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.h index 3ac99a32861..4d65ec6e297 100644 --- a/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.h +++ b/src/server/scripts/Kalimdor/BlackfathomDeeps/blackfathom_deeps.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_aku_mai.cpp b/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_aku_mai.cpp index b510a84b949..cb5c40cadc4 100644 --- a/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_aku_mai.cpp +++ b/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_aku_mai.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_gelihast.cpp b/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_gelihast.cpp index 0eba1a14fa5..a432a5714e1 100644 --- a/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_gelihast.cpp +++ b/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_gelihast.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_kelris.cpp b/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_kelris.cpp index d5860e4dbf7..202c50014ff 100644 --- a/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_kelris.cpp +++ b/src/server/scripts/Kalimdor/BlackfathomDeeps/boss_kelris.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp b/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp index 6c5f4ff3b53..f6fdd260c0f 100644 --- a/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp +++ b/src/server/scripts/Kalimdor/BlackfathomDeeps/instance_blackfathom_deeps.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CMakeLists.txt b/src/server/scripts/Kalimdor/CMakeLists.txt index d52a9aca48b..d5e445230bd 100644 --- a/src/server/scripts/Kalimdor/CMakeLists.txt +++ b/src/server/scripts/Kalimdor/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_anetheron.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_anetheron.cpp index 599e0eded39..cd3b6034878 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_anetheron.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_anetheron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp index e0416b56397..e82cadeccb5 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_archimonde.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_azgalor.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_azgalor.cpp index 0bfb4cf181e..273634b6a1b 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_azgalor.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_azgalor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_kazrogal.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_kazrogal.cpp index 22c10fcec10..12e0ae8d194 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_kazrogal.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_kazrogal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_rage_winterchill.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_rage_winterchill.cpp index cecad84e099..18b4dfcc400 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_rage_winterchill.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/boss_rage_winterchill.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp index 4a92041f921..9ad10bdb0f5 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.h b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.h index 54a763573ed..123a2bec400 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.h +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp index 1211ad1c144..7eb86f2c808 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.h b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.h index 468decbd43a..c044f55b306 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.h +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjalAI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.cpp index 0394b8535e5..4ce378159b5 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.h b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.h index 62f82ebcee1..963948a0430 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.h +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/hyjal_trash.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp index 99b8515c6e8..3c90add442f 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/BattleForMountHyjal/instance_hyjal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_chrono_lord_epoch.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_chrono_lord_epoch.cpp index fa87247f19f..0311ed61c6a 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_chrono_lord_epoch.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_chrono_lord_epoch.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_infinite_corruptor.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_infinite_corruptor.cpp index d693ec38e44..82eed1d0b94 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_infinite_corruptor.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_infinite_corruptor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_mal_ganis.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_mal_ganis.cpp index a654a37e2f5..70ecaad3d8d 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_mal_ganis.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_mal_ganis.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_meathook.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_meathook.cpp index 10ee66c86d0..29e2af1be93 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_meathook.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_meathook.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_salramm_the_fleshcrafter.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_salramm_the_fleshcrafter.cpp index 1d2ed933243..9501197fa37 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_salramm_the_fleshcrafter.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_salramm_the_fleshcrafter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.cpp index 794496382c2..f672871922a 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.h b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.h index 192654c87f1..44d8691bafa 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.h +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/culling_of_stratholme.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/instance_culling_of_stratholme.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/instance_culling_of_stratholme.cpp index cb3fa49216b..23259ea2508 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/instance_culling_of_stratholme.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/instance_culling_of_stratholme.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_captain_skarloc.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_captain_skarloc.cpp index 611ef38d626..b162f332e05 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_captain_skarloc.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_captain_skarloc.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_epoch_hunter.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_epoch_hunter.cpp index 1916e184dbb..edc19641242 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_epoch_hunter.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_epoch_hunter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp index 19b91b75dd4..8f3c5812f72 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/boss_leutenant_drake.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp index 317ab7e5ad5..295d6f7f93b 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/instance_old_hillsbrad.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.cpp index 66ce5e93720..780cf6646a3 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.h b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.h index b8a0909e99e..a6e8fc896c6 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.h +++ b/src/server/scripts/Kalimdor/CavernsOfTime/EscapeFromDurnholdeKeep/old_hillsbrad.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_aeonus.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_aeonus.cpp index 4a2b3d650d6..9418e209bba 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_aeonus.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_aeonus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_chrono_lord_deja.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_chrono_lord_deja.cpp index 4c69efa6ca7..0cc1f371695 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_chrono_lord_deja.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_chrono_lord_deja.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_temporus.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_temporus.cpp index e83c290e010..2e067604441 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_temporus.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/boss_temporus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/instance_the_black_morass.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/instance_the_black_morass.cpp index d46f0b5e9e1..b8d2cbbaa81 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/instance_the_black_morass.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/instance_the_black_morass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.cpp b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.cpp index 64d99c03dab..abccbf476e0 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.cpp +++ b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.h b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.h index b236c5eaa6c..1d85bf37f2a 100644 --- a/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.h +++ b/src/server/scripts/Kalimdor/CavernsOfTime/TheBlackMorass/the_black_morass.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp b/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp index ff4c0e7578b..4ba22f391cf 100644 --- a/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp +++ b/src/server/scripts/Kalimdor/DireMaul/instance_dire_maul.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/Firelands/boss_alysrazor.cpp b/src/server/scripts/Kalimdor/Firelands/boss_alysrazor.cpp index 386f80c0c64..b831b4ed0e7 100644 --- a/src/server/scripts/Kalimdor/Firelands/boss_alysrazor.cpp +++ b/src/server/scripts/Kalimdor/Firelands/boss_alysrazor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/Firelands/firelands.h b/src/server/scripts/Kalimdor/Firelands/firelands.h index b6387e40687..22a5e57dd56 100644 --- a/src/server/scripts/Kalimdor/Firelands/firelands.h +++ b/src/server/scripts/Kalimdor/Firelands/firelands.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/Firelands/instance_firelands.cpp b/src/server/scripts/Kalimdor/Firelands/instance_firelands.cpp index bca31964d24..36a8341765d 100644 --- a/src/server/scripts/Kalimdor/Firelands/instance_firelands.cpp +++ b/src/server/scripts/Kalimdor/Firelands/instance_firelands.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_anraphet.cpp b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_anraphet.cpp index 15fbef8a08b..898524c0c95 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_anraphet.cpp +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_anraphet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp index 81f81fda4c4..8d224790472 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_earthrager_ptah.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp index 38b587eacf7..3da33de01f7 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/boss_temple_guardian_anhuur.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h b/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h index 0359b0fe85a..5ff75d85668 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/halls_of_origination.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/HallsOfOrigination/instance_halls_of_origination.cpp b/src/server/scripts/Kalimdor/HallsOfOrigination/instance_halls_of_origination.cpp index 30a0e2441fb..87fd0e04de0 100644 --- a/src/server/scripts/Kalimdor/HallsOfOrigination/instance_halls_of_origination.cpp +++ b/src/server/scripts/Kalimdor/HallsOfOrigination/instance_halls_of_origination.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp index b8eb489461c..167f823607f 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_celebras_the_cursed.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp index 59bcdc89171..45d1d00bc70 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_landslide.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp index a7aa487db90..00a2c40fd31 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_noxxion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp b/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp index a36e8f09d21..be610b0f20b 100644 --- a/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/boss_princess_theradras.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp b/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp index be71fdebe3e..f5739901a81 100644 --- a/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp +++ b/src/server/scripts/Kalimdor/Maraudon/instance_maraudon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/OnyxiasLair/boss_onyxia.cpp b/src/server/scripts/Kalimdor/OnyxiasLair/boss_onyxia.cpp index 5c083e43d3d..76fe8819716 100644 --- a/src/server/scripts/Kalimdor/OnyxiasLair/boss_onyxia.cpp +++ b/src/server/scripts/Kalimdor/OnyxiasLair/boss_onyxia.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp b/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp index 919f8b43ce3..34c681201a0 100644 --- a/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp +++ b/src/server/scripts/Kalimdor/OnyxiasLair/instance_onyxias_lair.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/OnyxiasLair/onyxias_lair.h b/src/server/scripts/Kalimdor/OnyxiasLair/onyxias_lair.h index c31988843fe..049819f9f76 100644 --- a/src/server/scripts/Kalimdor/OnyxiasLair/onyxias_lair.h +++ b/src/server/scripts/Kalimdor/OnyxiasLair/onyxias_lair.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp b/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp index f5f63910b1a..e6974a4f2e0 100644 --- a/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp +++ b/src/server/scripts/Kalimdor/RagefireChasm/instance_ragefire_chasm.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp b/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp index ba7934e18a3..cec9a6b558e 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp +++ b/src/server/scripts/Kalimdor/RazorfenDowns/boss_amnennar_the_coldbringer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/boss_glutton.cpp b/src/server/scripts/Kalimdor/RazorfenDowns/boss_glutton.cpp index b1bce6ff38c..6fd6b115c0b 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/boss_glutton.cpp +++ b/src/server/scripts/Kalimdor/RazorfenDowns/boss_glutton.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/boss_mordresh_fire_eye.cpp b/src/server/scripts/Kalimdor/RazorfenDowns/boss_mordresh_fire_eye.cpp index c2b94b7c7ae..dfb3d1882b8 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/boss_mordresh_fire_eye.cpp +++ b/src/server/scripts/Kalimdor/RazorfenDowns/boss_mordresh_fire_eye.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/boss_tuten_kash.cpp b/src/server/scripts/Kalimdor/RazorfenDowns/boss_tuten_kash.cpp index 8370d856524..73f93fa9ae7 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/boss_tuten_kash.cpp +++ b/src/server/scripts/Kalimdor/RazorfenDowns/boss_tuten_kash.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/instance_razorfen_downs.cpp b/src/server/scripts/Kalimdor/RazorfenDowns/instance_razorfen_downs.cpp index 9f2f5edf798..6347da44991 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/instance_razorfen_downs.cpp +++ b/src/server/scripts/Kalimdor/RazorfenDowns/instance_razorfen_downs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.cpp b/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.cpp index 3e15a80fd74..d6908384a71 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.cpp +++ b/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.h b/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.h index d77c48b8af0..cb1b56c267a 100644 --- a/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.h +++ b/src/server/scripts/Kalimdor/RazorfenDowns/razorfen_downs.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp b/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp index 6c63dd97406..2b00254167d 100644 --- a/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp +++ b/src/server/scripts/Kalimdor/RazorfenKraul/instance_razorfen_kraul.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp b/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp index 8cbd611a18a..a7c17a9df3e 100644 --- a/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp +++ b/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2013 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.h b/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.h index 6d960d6146d..eb9115f19c7 100644 --- a/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.h +++ b/src/server/scripts/Kalimdor/RazorfenKraul/razorfen_kraul.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ayamiss.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ayamiss.cpp index 1a09ef27b04..beada0509c9 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ayamiss.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ayamiss.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_buru.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_buru.cpp index d6640b5a0ab..9dedd9da3ba 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_buru.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_buru.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_kurinnaxx.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_kurinnaxx.cpp index 776971b1f9f..2556530497e 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_kurinnaxx.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_kurinnaxx.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp index 65de64fe6c5..8ae1959a0d9 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_moam.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ossirian.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ossirian.cpp index 2ba755d3c4e..463d1ee7e0b 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ossirian.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_ossirian.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_rajaxx.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_rajaxx.cpp index 8369c343de4..f421033419a 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_rajaxx.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/boss_rajaxx.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp index 0e34f4a5595..f8873b06a75 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/instance_ruins_of_ahnqiraj.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/ruins_of_ahnqiraj.h b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/ruins_of_ahnqiraj.h index 34c678474ec..1d9440aadc1 100644 --- a/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/ruins_of_ahnqiraj.h +++ b/src/server/scripts/Kalimdor/RuinsOfAhnQiraj/ruins_of_ahnqiraj.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp index 861ef1227d6..e571fb0769d 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_bug_trio.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp index dfb9941c501..4eb9dd1b148 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_cthun.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp index b916f93aef7..c086489cb1a 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_fankriss.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp index b5512f29589..dd4be9ebc6d 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_huhuran.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp index 092d7ed2a3b..3bbcdfdc7ad 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_ouro.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp index b73a79506a9..2d9af5792ee 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_sartura.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp index 62de8fbd607..7238760822b 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_skeram.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp index 62123282e0b..3dd531a5989 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_twinemperors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_viscidus.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_viscidus.cpp index fe6e0a435a7..5d9c5847cbc 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_viscidus.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/boss_viscidus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp index bf37c3d04ff..46036765a73 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/instance_temple_of_ahnqiraj.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/mob_anubisath_sentinel.cpp b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/mob_anubisath_sentinel.cpp index db4d0eec7b2..abe12d7fe60 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/mob_anubisath_sentinel.cpp +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/mob_anubisath_sentinel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/temple_of_ahnqiraj.h b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/temple_of_ahnqiraj.h index 99ce6e738e8..49b817a03c9 100644 --- a/src/server/scripts/Kalimdor/TempleOfAhnQiraj/temple_of_ahnqiraj.h +++ b/src/server/scripts/Kalimdor/TempleOfAhnQiraj/temple_of_ahnqiraj.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp b/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp index 6ca4b7c9f5d..49a3b704138 100644 --- a/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp +++ b/src/server/scripts/Kalimdor/WailingCaverns/instance_wailing_caverns.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.cpp b/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.cpp index 522d6eee464..126f79b3b93 100644 --- a/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.cpp +++ b/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.h b/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.h index 87577f9abaf..99b108aac88 100644 --- a/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.h +++ b/src/server/scripts/Kalimdor/WailingCaverns/wailing_caverns.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/ZulFarrak/boss_zum_rah.cpp b/src/server/scripts/Kalimdor/ZulFarrak/boss_zum_rah.cpp index 4a2425d879f..a0aeed89747 100644 --- a/src/server/scripts/Kalimdor/ZulFarrak/boss_zum_rah.cpp +++ b/src/server/scripts/Kalimdor/ZulFarrak/boss_zum_rah.cpp @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp b/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp index 7b31850caac..244261a86c1 100644 --- a/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp +++ b/src/server/scripts/Kalimdor/ZulFarrak/instance_zulfarrak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/ZulFarrak/zulfarrak.cpp b/src/server/scripts/Kalimdor/ZulFarrak/zulfarrak.cpp index 443bd1578d7..025ba8d6bb2 100644 --- a/src/server/scripts/Kalimdor/ZulFarrak/zulfarrak.cpp +++ b/src/server/scripts/Kalimdor/ZulFarrak/zulfarrak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_ashenvale.cpp b/src/server/scripts/Kalimdor/zone_ashenvale.cpp index 500739b9404..76b43729517 100644 --- a/src/server/scripts/Kalimdor/zone_ashenvale.cpp +++ b/src/server/scripts/Kalimdor/zone_ashenvale.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_azshara.cpp b/src/server/scripts/Kalimdor/zone_azshara.cpp index b4515da25ef..258fa0a2823 100644 --- a/src/server/scripts/Kalimdor/zone_azshara.cpp +++ b/src/server/scripts/Kalimdor/zone_azshara.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp b/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp index df695727866..006c776cd11 100644 --- a/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp +++ b/src/server/scripts/Kalimdor/zone_azuremyst_isle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp b/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp index 5e2f4519b1e..390fd3e529f 100644 --- a/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp +++ b/src/server/scripts/Kalimdor/zone_bloodmyst_isle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_darkshore.cpp b/src/server/scripts/Kalimdor/zone_darkshore.cpp index 1799709c7af..211a8f16410 100644 --- a/src/server/scripts/Kalimdor/zone_darkshore.cpp +++ b/src/server/scripts/Kalimdor/zone_darkshore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/zone_desolace.cpp b/src/server/scripts/Kalimdor/zone_desolace.cpp index 371784aec42..09d0ac1ee92 100644 --- a/src/server/scripts/Kalimdor/zone_desolace.cpp +++ b/src/server/scripts/Kalimdor/zone_desolace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_durotar.cpp b/src/server/scripts/Kalimdor/zone_durotar.cpp index 52f47f3461b..c4c87fd1f26 100644 --- a/src/server/scripts/Kalimdor/zone_durotar.cpp +++ b/src/server/scripts/Kalimdor/zone_durotar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/zone_dustwallow_marsh.cpp b/src/server/scripts/Kalimdor/zone_dustwallow_marsh.cpp index 533d78a68f5..caf000fd124 100644 --- a/src/server/scripts/Kalimdor/zone_dustwallow_marsh.cpp +++ b/src/server/scripts/Kalimdor/zone_dustwallow_marsh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_felwood.cpp b/src/server/scripts/Kalimdor/zone_felwood.cpp index 9f02e14220e..71ee04bb071 100644 --- a/src/server/scripts/Kalimdor/zone_felwood.cpp +++ b/src/server/scripts/Kalimdor/zone_felwood.cpp @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/zone_feralas.cpp b/src/server/scripts/Kalimdor/zone_feralas.cpp index 2186752b135..efeb04374bd 100644 --- a/src/server/scripts/Kalimdor/zone_feralas.cpp +++ b/src/server/scripts/Kalimdor/zone_feralas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_moonglade.cpp b/src/server/scripts/Kalimdor/zone_moonglade.cpp index 901946df74b..46bb5138c88 100644 --- a/src/server/scripts/Kalimdor/zone_moonglade.cpp +++ b/src/server/scripts/Kalimdor/zone_moonglade.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/zone_mulgore.cpp b/src/server/scripts/Kalimdor/zone_mulgore.cpp index 2ee3d20e44d..b6db431d0b2 100644 --- a/src/server/scripts/Kalimdor/zone_mulgore.cpp +++ b/src/server/scripts/Kalimdor/zone_mulgore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_orgrimmar.cpp b/src/server/scripts/Kalimdor/zone_orgrimmar.cpp index 22daddff5b9..7339f4721a3 100644 --- a/src/server/scripts/Kalimdor/zone_orgrimmar.cpp +++ b/src/server/scripts/Kalimdor/zone_orgrimmar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/zone_silithus.cpp b/src/server/scripts/Kalimdor/zone_silithus.cpp index 6bb33cf2cd4..b302269d217 100644 --- a/src/server/scripts/Kalimdor/zone_silithus.cpp +++ b/src/server/scripts/Kalimdor/zone_silithus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp b/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp index 251006ff545..70a810cfb51 100644 --- a/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp +++ b/src/server/scripts/Kalimdor/zone_stonetalon_mountains.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Kalimdor/zone_tanaris.cpp b/src/server/scripts/Kalimdor/zone_tanaris.cpp index 4528409c126..7e964808349 100644 --- a/src/server/scripts/Kalimdor/zone_tanaris.cpp +++ b/src/server/scripts/Kalimdor/zone_tanaris.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_teldrassil.cpp b/src/server/scripts/Kalimdor/zone_teldrassil.cpp index e1b2144c97c..2173cd6de06 100644 --- a/src/server/scripts/Kalimdor/zone_teldrassil.cpp +++ b/src/server/scripts/Kalimdor/zone_teldrassil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_the_barrens.cpp b/src/server/scripts/Kalimdor/zone_the_barrens.cpp index c46de9d07f5..4268cafa1ea 100644 --- a/src/server/scripts/Kalimdor/zone_the_barrens.cpp +++ b/src/server/scripts/Kalimdor/zone_the_barrens.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_thousand_needles.cpp b/src/server/scripts/Kalimdor/zone_thousand_needles.cpp index 46df1cb3397..82fdd267aed 100644 --- a/src/server/scripts/Kalimdor/zone_thousand_needles.cpp +++ b/src/server/scripts/Kalimdor/zone_thousand_needles.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp b/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp index 1c04a6e32dd..fdea699810d 100644 --- a/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp +++ b/src/server/scripts/Kalimdor/zone_thunder_bluff.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp b/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp index 80354cbb1fd..fde8611f88b 100644 --- a/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp +++ b/src/server/scripts/Kalimdor/zone_ungoro_crater.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Kalimdor/zone_winterspring.cpp b/src/server/scripts/Kalimdor/zone_winterspring.cpp index b8200c59258..51292392313 100644 --- a/src/server/scripts/Kalimdor/zone_winterspring.cpp +++ b/src/server/scripts/Kalimdor/zone_winterspring.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Maelstrom/Stonecore/boss_corborus.cpp b/src/server/scripts/Maelstrom/Stonecore/boss_corborus.cpp index 36289fb1169..3c464406b73 100644 --- a/src/server/scripts/Maelstrom/Stonecore/boss_corborus.cpp +++ b/src/server/scripts/Maelstrom/Stonecore/boss_corborus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Maelstrom/Stonecore/boss_high_priestess_azil.cpp b/src/server/scripts/Maelstrom/Stonecore/boss_high_priestess_azil.cpp index c7fa900ff8b..d24e3f94afb 100644 --- a/src/server/scripts/Maelstrom/Stonecore/boss_high_priestess_azil.cpp +++ b/src/server/scripts/Maelstrom/Stonecore/boss_high_priestess_azil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Maelstrom/Stonecore/boss_ozruk.cpp b/src/server/scripts/Maelstrom/Stonecore/boss_ozruk.cpp index b5448acb556..4c3d39ed67f 100644 --- a/src/server/scripts/Maelstrom/Stonecore/boss_ozruk.cpp +++ b/src/server/scripts/Maelstrom/Stonecore/boss_ozruk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Maelstrom/Stonecore/boss_slabhide.cpp b/src/server/scripts/Maelstrom/Stonecore/boss_slabhide.cpp index 0b5b3e153be..26e74ec9c64 100644 --- a/src/server/scripts/Maelstrom/Stonecore/boss_slabhide.cpp +++ b/src/server/scripts/Maelstrom/Stonecore/boss_slabhide.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Maelstrom/Stonecore/instance_stonecore.cpp b/src/server/scripts/Maelstrom/Stonecore/instance_stonecore.cpp index 1e68c612616..95282ff69c8 100644 --- a/src/server/scripts/Maelstrom/Stonecore/instance_stonecore.cpp +++ b/src/server/scripts/Maelstrom/Stonecore/instance_stonecore.cpp @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it @@ -220,7 +220,7 @@ class instance_stonecore : public InstanceMapScript ObjectGuid corborusRockDoorGUID; GuidVector slabhideRockWallGUIDs; - EncounterState slabhideIntro; + EncounterState slabhideIntro = NOT_STARTED; }; InstanceScript* GetInstanceScript(InstanceMap* map) const override diff --git a/src/server/scripts/Maelstrom/Stonecore/stonecore.cpp b/src/server/scripts/Maelstrom/Stonecore/stonecore.cpp index 3500290c358..54ffc4fcb47 100644 --- a/src/server/scripts/Maelstrom/Stonecore/stonecore.cpp +++ b/src/server/scripts/Maelstrom/Stonecore/stonecore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Maelstrom/Stonecore/stonecore.h b/src/server/scripts/Maelstrom/Stonecore/stonecore.h index a13a0efad58..d87770db50c 100644 --- a/src/server/scripts/Maelstrom/Stonecore/stonecore.h +++ b/src/server/scripts/Maelstrom/Stonecore/stonecore.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/ahnkahet.h b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/ahnkahet.h index 0dc2d68319d..fafe363e3f2 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/ahnkahet.h +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/ahnkahet.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp index 42ceaec4def..0dc52c29ced 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_amanitar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp index fdb5a3a5fe7..61a48667c33 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_elder_nadox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_herald_volazj.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_herald_volazj.cpp index 5b88cfb332b..89d872c25e5 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_herald_volazj.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_herald_volazj.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_jedoga_shadowseeker.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_jedoga_shadowseeker.cpp index 89f61373dee..3862f4b92f3 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_jedoga_shadowseeker.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_jedoga_shadowseeker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_prince_taldaram.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_prince_taldaram.cpp index faf95ec59b3..172d1c744aa 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_prince_taldaram.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/boss_prince_taldaram.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp index 0bb2010a9d6..c482a156a91 100644 --- a/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/Ahnkahet/instance_ahnkahet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/azjol_nerub.h b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/azjol_nerub.h index c274b283c1d..f91ad2eb276 100644 --- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/azjol_nerub.h +++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/azjol_nerub.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp index 1d437fb18a5..3b6e88b7c20 100644 --- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_anubarak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_hadronox.cpp b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_hadronox.cpp index f8c5c63cf91..13c37f02adf 100644 --- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_hadronox.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_hadronox.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp index bdb060815d2..516bf186361 100644 --- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/instance_azjol_nerub.cpp b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/instance_azjol_nerub.cpp index 1f474e5ddd5..467c6c2c11d 100644 --- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/instance_azjol_nerub.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/instance_azjol_nerub.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/CMakeLists.txt b/src/server/scripts/Northrend/CMakeLists.txt index 8401ea4b9a5..e04dcf0ec96 100644 --- a/src/server/scripts/Northrend/CMakeLists.txt +++ b/src/server/scripts/Northrend/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp index 6afb56316b3..3382eec6850 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/boss_sartharion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp index aa60e5c486d..63969eac354 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/instance_obsidian_sanctum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.cpp b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.cpp index f4ef869b0b4..b4627d7f941 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.h b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.h index 341a5686e58..7cb1212f75f 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.h +++ b/src/server/scripts/Northrend/ChamberOfAspects/ObsidianSanctum/obsidian_sanctum.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp index f1d029e53e2..03c96fe4a22 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_baltharus_the_warborn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_general_zarithrian.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_general_zarithrian.cpp index f4e36b87f7d..eb6230fabfc 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_general_zarithrian.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_general_zarithrian.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp index 16cbcee562e..f1c4c22527b 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_halion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_saviana_ragefire.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_saviana_ragefire.cpp index 696d8e0f2a3..fdca8058578 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_saviana_ragefire.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/boss_saviana_ragefire.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/instance_ruby_sanctum.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/instance_ruby_sanctum.cpp index 98aed37a1d2..ec668952a68 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/instance_ruby_sanctum.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/instance_ruby_sanctum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.cpp b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.cpp index 9f088a4cdfa..07f295c6810 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.cpp +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.h b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.h index 055e04a1328..7daa2f68d87 100644 --- a/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.h +++ b/src/server/scripts/Northrend/ChamberOfAspects/RubySanctum/ruby_sanctum.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp index abf57ad68d1..6d70e56edbb 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_argent_challenge.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp index 60b25a649ca..e375a0acfd5 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_black_knight.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp index b03321642b6..e9a1efa74e2 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/boss_grand_champions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp index 7d3092be115..cacef991ea6 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/instance_trial_of_the_champion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.cpp index a66096ae615..96dc3725ea5 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.h b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.h index 4e3979dd0f9..836743626e5 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.h +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheChampion/trial_of_the_champion.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp index aa80295d83c..e25abcff728 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_anubarak_trial.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2010 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp index b79e093a3e0..6fdc654899a 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_faction_champions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp index 25dc59acc34..0a74f288ee8 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_lord_jaraxxus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2010 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp index f7bee426012..39c9fbe37a6 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_northrend_beasts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2010 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp index 07eec388ca2..f2179d4385b 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2010 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp index 91da9ebd9be..7148d0149af 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/instance_trial_of_the_crusader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/trial_of_the_crusader.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/trial_of_the_crusader.cpp index e79437b06a2..16526b694e9 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/trial_of_the_crusader.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/trial_of_the_crusader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/DraktharonKeep/boss_king_dred.cpp b/src/server/scripts/Northrend/DraktharonKeep/boss_king_dred.cpp index 9c6d9082db4..723a54e0c54 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/boss_king_dred.cpp +++ b/src/server/scripts/Northrend/DraktharonKeep/boss_king_dred.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp b/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp index 11ab22362fa..f64f4e75916 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp +++ b/src/server/scripts/Northrend/DraktharonKeep/boss_novos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp b/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp index 77f026b1d3a..a3dbc11e8ad 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp +++ b/src/server/scripts/Northrend/DraktharonKeep/boss_tharon_ja.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/DraktharonKeep/boss_trollgore.cpp b/src/server/scripts/Northrend/DraktharonKeep/boss_trollgore.cpp index f24ca7dd583..cfb24698831 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/boss_trollgore.cpp +++ b/src/server/scripts/Northrend/DraktharonKeep/boss_trollgore.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/DraktharonKeep/drak_tharon_keep.h b/src/server/scripts/Northrend/DraktharonKeep/drak_tharon_keep.h index fd260e2c5ba..98d23c024a6 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/drak_tharon_keep.h +++ b/src/server/scripts/Northrend/DraktharonKeep/drak_tharon_keep.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/DraktharonKeep/instance_drak_tharon_keep.cpp b/src/server/scripts/Northrend/DraktharonKeep/instance_drak_tharon_keep.cpp index 4e58d4dac03..e45882187eb 100644 --- a/src/server/scripts/Northrend/DraktharonKeep/instance_drak_tharon_keep.cpp +++ b/src/server/scripts/Northrend/DraktharonKeep/instance_drak_tharon_keep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_bronjahm.cpp b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_bronjahm.cpp index 77c97cc8342..97c4372f0e6 100644 --- a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_bronjahm.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_bronjahm.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp index 32590135f27..2f1d4943019 100644 --- a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/boss_devourer_of_souls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp index 7a36dfe7fae..96a0b856d50 100644 --- a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.h b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.h index 34340ae3018..054e5d5a7bd 100644 --- a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.h +++ b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/forge_of_souls.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/instance_forge_of_souls.cpp b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/instance_forge_of_souls.cpp index 97c9d407622..8b586ea7fc2 100644 --- a/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/instance_forge_of_souls.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/ForgeOfSouls/instance_forge_of_souls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp index ebad98de91a..a798bc20107 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_falric.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp index 902a917c594..d8b09bb2f3f 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/boss_marwyn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp index c99ebddae37..d15b8a53a9a 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.h b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.h index e44bf1d5aed..9594617fa9a 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.h +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/halls_of_reflection.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp index c9621bdf161..ae2023fd255 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_forgemaster_garfrost.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_forgemaster_garfrost.cpp index 3ee7c9ce650..141dc8415b4 100644 --- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_forgemaster_garfrost.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_forgemaster_garfrost.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp index 327ea2c9b7b..fd0fff44f66 100644 --- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_krickandick.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp index c8894179ca3..3384b562860 100644 --- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/boss_scourgelord_tyrannus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/instance_pit_of_saron.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/instance_pit_of_saron.cpp index 29fbc0be2b3..a8c77423ee6 100644 --- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/instance_pit_of_saron.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/instance_pit_of_saron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp index 062d6a13390..79f9a6e7c61 100644 --- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.h b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.h index 4f06c6b2a26..9781bd0d124 100644 --- a/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.h +++ b/src/server/scripts/Northrend/FrozenHalls/PitOfSaron/pit_of_saron.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Gundrak/boss_drakkari_colossus.cpp b/src/server/scripts/Northrend/Gundrak/boss_drakkari_colossus.cpp index f1fececfa7f..0ded2022e83 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_drakkari_colossus.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_drakkari_colossus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Gundrak/boss_eck.cpp b/src/server/scripts/Northrend/Gundrak/boss_eck.cpp index baf749fec51..f6463611f3a 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_eck.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_eck.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Gundrak/boss_gal_darah.cpp b/src/server/scripts/Northrend/Gundrak/boss_gal_darah.cpp index 4abcd6ead46..40c1feabf58 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_gal_darah.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_gal_darah.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Gundrak/boss_moorabi.cpp b/src/server/scripts/Northrend/Gundrak/boss_moorabi.cpp index 7d7cac5601c..d5751a55aec 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_moorabi.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_moorabi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp b/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp index 9520736cdb5..1679e989556 100644 --- a/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp +++ b/src/server/scripts/Northrend/Gundrak/boss_slad_ran.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Gundrak/gundrak.h b/src/server/scripts/Northrend/Gundrak/gundrak.h index 9963c6caee8..35535ce4b7f 100644 --- a/src/server/scripts/Northrend/Gundrak/gundrak.h +++ b/src/server/scripts/Northrend/Gundrak/gundrak.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Gundrak/instance_gundrak.cpp b/src/server/scripts/Northrend/Gundrak/instance_gundrak.cpp index 31722b06be8..f10c108c00c 100644 --- a/src/server/scripts/Northrend/Gundrak/instance_gundrak.cpp +++ b/src/server/scripts/Northrend/Gundrak/instance_gundrak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp index 01022a3c963..21214b62345 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_prince_council.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp index d289d494d62..e37d7613aa6 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_blood_queen_lana_thel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp index f3fae3b14a0..943be27943d 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp index 008a89030a7..38238072a70 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_festergut.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_icecrown_gunship_battle.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_icecrown_gunship_battle.cpp index 080880608d6..f49ed8432fb 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_icecrown_gunship_battle.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_icecrown_gunship_battle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp index 834b0aeb5e1..ebd39848247 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_lady_deathwhisper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp index 3a66d3e1363..c4bd0e7f5f2 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_lord_marrowgar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp index d0bf573ba19..5f4953e538d 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_professor_putricide.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_rotface.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_rotface.cpp index ee948789bc4..2b96e8e13a3 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_rotface.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_rotface.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp index ab19ffe7fed..26683babf43 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_sindragosa.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp index 1b6df68c5c4..89ab59de1db 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_the_lich_king.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp index eebf5a2c2ea..b8f2c9c5a4f 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_valithria_dreamwalker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp index ab7606f5e6f..27eedc25f24 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.h b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.h index 5d2aa9ca02f..8bf8e5ee6fb 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.h +++ b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel_teleport.cpp b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel_teleport.cpp index af07375e14c..a12e2d05285 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel_teleport.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/icecrown_citadel_teleport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/IcecrownCitadel/instance_icecrown_citadel.cpp b/src/server/scripts/Northrend/IcecrownCitadel/instance_icecrown_citadel.cpp index 69349241160..9fdea962de2 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/instance_icecrown_citadel.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/instance_icecrown_citadel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp b/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp index 90b252a47ce..28d181a990e 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_anubrekhan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_faerlina.cpp b/src/server/scripts/Northrend/Naxxramas/boss_faerlina.cpp index 568df379f15..a90b72b6842 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_faerlina.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_faerlina.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp b/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp index c715bd8aad7..705d15081c1 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp b/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp index e98e74634e2..fb1378f0124 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_gluth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp b/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp index a70d354b966..90efc0d484b 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_gothik.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_grobbulus.cpp b/src/server/scripts/Northrend/Naxxramas/boss_grobbulus.cpp index ba54b5150e4..9c7026fbec0 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_grobbulus.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_grobbulus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp b/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp index aac59761626..3d7c128c8dd 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_heigan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp index 8c927dcb0ac..fbdbd093513 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_kelthuzad.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp b/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp index 736941949d1..33fb43b6bbc 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp b/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp index cc7e38173c8..51c9e1b0aaf 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_maexxna.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp index be4c8583377..57ea9eaf8c8 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp b/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp index 116cee5f275..f5842181358 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_patchwerk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp b/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp index 3a29e8ac83f..1683667a02a 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_razuvious.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp index 97c7d7c4052..ee482c23d1b 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp b/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp index 650777a8815..d74fd5a03f8 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_thaddius.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/instance_naxxramas.cpp b/src/server/scripts/Northrend/Naxxramas/instance_naxxramas.cpp index 2f5a728ddf8..a5bbb71cc44 100644 --- a/src/server/scripts/Northrend/Naxxramas/instance_naxxramas.cpp +++ b/src/server/scripts/Northrend/Naxxramas/instance_naxxramas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Naxxramas/naxxramas.h b/src/server/scripts/Northrend/Naxxramas/naxxramas.h index 0f710a66bbe..459903c4c86 100644 --- a/src/server/scripts/Northrend/Naxxramas/naxxramas.h +++ b/src/server/scripts/Northrend/Naxxramas/naxxramas.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp b/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp index b4f27710e03..a70a4e163ce 100644 --- a/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp +++ b/src/server/scripts/Northrend/Nexus/EyeOfEternity/boss_malygos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h b/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h index ef7dd743515..b6a0d3f9b62 100644 --- a/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h +++ b/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/EyeOfEternity/instance_eye_of_eternity.cpp b/src/server/scripts/Northrend/Nexus/EyeOfEternity/instance_eye_of_eternity.cpp index b689df3c977..122db0512cc 100644 --- a/src/server/scripts/Northrend/Nexus/EyeOfEternity/instance_eye_of_eternity.cpp +++ b/src/server/scripts/Northrend/Nexus/EyeOfEternity/instance_eye_of_eternity.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_anomalus.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_anomalus.cpp index 627f6d33622..a14ae64c31f 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_anomalus.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_anomalus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp index 3e1996fd053..fc56f541a4b 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_kolurg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp index 03f1f504e01..3109d38b883 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_commander_stoutbeard.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_keristrasza.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_keristrasza.cpp index d2c38c47d55..36600840196 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_keristrasza.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_keristrasza.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_magus_telestra.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_magus_telestra.cpp index c12b0889f9d..d85c6cc2d81 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_magus_telestra.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_magus_telestra.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp b/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp index f065f0679fc..74be65c62c2 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/boss_ormorok.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp b/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp index b3b2cdd540f..be9c593b313 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp +++ b/src/server/scripts/Northrend/Nexus/Nexus/instance_nexus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Nexus/Nexus/nexus.h b/src/server/scripts/Northrend/Nexus/Nexus/nexus.h index 9962b0c884d..ffc63a35a7b 100644 --- a/src/server/scripts/Northrend/Nexus/Nexus/nexus.h +++ b/src/server/scripts/Northrend/Nexus/Nexus/nexus.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -21,7 +21,7 @@ #define NexusScriptName "instance_nexus" #define DataHeader "NEX" -uint32 const EncounterCount = 4; +uint32 const EncounterCount = 4; enum DataTypes { @@ -39,14 +39,14 @@ enum CreatureIds { NPC_ANOMALUS = 26763, NPC_KERISTRASZA = 26723, - + // Alliance NPC_ALLIANCE_BERSERKER = 26800, NPC_ALLIANCE_RANGER = 26802, NPC_ALLIANCE_CLERIC = 26805, NPC_ALLIANCE_COMMANDER = 27949, NPC_COMMANDER_STOUTBEARD = 26796, - + // Horde NPC_HORDE_BERSERKER = 26799, NPC_HORDE_RANGER = 26801, @@ -59,7 +59,7 @@ enum GameObjectIds { GO_ANOMALUS_CONTAINMET_SPHERE = 188527, GO_ORMOROKS_CONTAINMET_SPHERE = 188528, - GO_TELESTRAS_CONTAINMET_SPHERE = 188526 + GO_TELESTRAS_CONTAINMET_SPHERE = 188526 }; #endif diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp index ea23041da6f..512af5d61ab 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_drakos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_eregos.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_eregos.cpp index 0dc05cb450d..e67a87558f6 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/boss_eregos.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_eregos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp index 9dddf721d53..e163ad5ca61 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_urom.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp b/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp index 0119b81796e..04965bb531d 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/boss_varos.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp b/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp index ed902dba260..45b88dbcc46 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/instance_oculus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Oculus/oculus.cpp b/src/server/scripts/Northrend/Nexus/Oculus/oculus.cpp index b0c4be44ee8..34039fa7ce6 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/oculus.cpp +++ b/src/server/scripts/Northrend/Nexus/Oculus/oculus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Nexus/Oculus/oculus.h b/src/server/scripts/Northrend/Nexus/Oculus/oculus.h index d1144df9486..fd46f0a6bcc 100644 --- a/src/server/scripts/Northrend/Nexus/Oculus/oculus.h +++ b/src/server/scripts/Northrend/Nexus/Oculus/oculus.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_bjarngrim.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_bjarngrim.cpp index b5079d8cf4f..a1644b07db7 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_bjarngrim.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_bjarngrim.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_ionar.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_ionar.cpp index 274fbed0fc9..51a036eb029 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_ionar.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_ionar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_loken.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_loken.cpp index 86a19d16efb..91c29cb9bdb 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_loken.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_loken.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it @@ -197,7 +197,7 @@ public: ++_healthAmountModifier; } } - + private: uint32 _healthAmountModifier; bool _isIntroDone; diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_volkhan.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_volkhan.cpp index 3a707e7fa70..d653ec9e57d 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_volkhan.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/boss_volkhan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/halls_of_lightning.h b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/halls_of_lightning.h index 5dd2e48898b..b1b4a3c09ca 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/halls_of_lightning.h +++ b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/halls_of_lightning.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/instance_halls_of_lightning.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/instance_halls_of_lightning.cpp index 0d39a8921e8..62079d7a2f2 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfLightning/instance_halls_of_lightning.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfLightning/instance_halls_of_lightning.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_krystallus.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_krystallus.cpp index d911bf07439..d9a7e354900 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_krystallus.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_krystallus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_maiden_of_grief.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_maiden_of_grief.cpp index 796299cc952..dbd7f888f75 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_maiden_of_grief.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_maiden_of_grief.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_sjonnir.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_sjonnir.cpp index ac3df1e49aa..3bb3360433e 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_sjonnir.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfStone/boss_sjonnir.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.cpp index f98a6e40a07..1e2ca666378 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.h b/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.h index 253fbc43a5d..2ed47b42bbc 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.h +++ b/src/server/scripts/Northrend/Ulduar/HallsOfStone/halls_of_stone.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/HallsOfStone/instance_halls_of_stone.cpp b/src/server/scripts/Northrend/Ulduar/HallsOfStone/instance_halls_of_stone.cpp index 880d032265a..a70d1ff3a0d 100644 --- a/src/server/scripts/Northrend/Ulduar/HallsOfStone/instance_halls_of_stone.cpp +++ b/src/server/scripts/Northrend/Ulduar/HallsOfStone/instance_halls_of_stone.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp index 0b3be93b17d..2d27bbb0775 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_algalon_the_observer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_assembly_of_iron.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_assembly_of_iron.cpp index 41da9ec09ea..057fae8b41f 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_assembly_of_iron.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_assembly_of_iron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp index a00c715fef4..86ecbeb9afb 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_auriaya.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp index 4eeb1fac53c..9ca88f4fdfa 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_freya.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_freya.cpp index 5952c9f8501..063271b2d8e 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_freya.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_freya.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_general_vezax.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_general_vezax.cpp index 9cb5e71b471..4841950d9d3 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_general_vezax.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_general_vezax.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp index f1cfea0e58f..098e7aa34be 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp index 276e3a10513..d0b87f728c5 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_ignis.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp index 5ac0024c032..40aa05fd6a9 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_kologarn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_mimiron.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_mimiron.cpp index 6156d423b89..3c068915585 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_mimiron.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_mimiron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp index 947b1ce9b86..28f1abd92fe 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_razorscale.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp index 0364a113491..597067fd81f 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_thorim.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp index 67c68be502e..a0ef23dc10d 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_xt002.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_yogg_saron.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_yogg_saron.cpp index 3c84776edad..c37cf28ab78 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_yogg_saron.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_yogg_saron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/instance_ulduar.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/instance_ulduar.cpp index b3106839199..d1ec5793a72 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/instance_ulduar.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/instance_ulduar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/ulduar.h b/src/server/scripts/Northrend/Ulduar/Ulduar/ulduar.h index 1b4330b0faf..ddf293dd8b8 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/ulduar.h +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/ulduar.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_ingvar_the_plunderer.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_ingvar_the_plunderer.cpp index c08e1934552..571f73ea628 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_ingvar_the_plunderer.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_ingvar_the_plunderer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp index adb544cb25e..a545064f121 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_keleseth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp index edc62beb63d..3a5569278da 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/boss_skarvald_dalronn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/instance_utgarde_keep.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/instance_utgarde_keep.cpp index 360befc02af..38fee296bec 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/instance_utgarde_keep.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/instance_utgarde_keep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.cpp index ebd0b4c0bb0..c267a75fac0 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.h b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.h index 5b52072b07f..b776b1a8c6a 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.h +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardeKeep/utgarde_keep.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_palehoof.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_palehoof.cpp index 061499f2025..acccdb2f912 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_palehoof.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_palehoof.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp index 5d6a2416d73..a2b964cbe60 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_skadi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_svala.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_svala.cpp index bf9d9eaa43b..263304488b7 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_svala.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_svala.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_ymiron.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_ymiron.cpp index 9d2a61a16f4..344bac5f5b8 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_ymiron.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/boss_ymiron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp index 519cc3b7202..c9202fd7007 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/instance_utgarde_pinnacle.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/utgarde_pinnacle.h b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/utgarde_pinnacle.h index 5373446ba02..33fc08065ad 100644 --- a/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/utgarde_pinnacle.h +++ b/src/server/scripts/Northrend/UtgardeKeep/UtgardePinnacle/utgarde_pinnacle.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp index c164f8fbf60..96691a290b2 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_archavon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_emalon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_emalon.cpp index c6e4f40ef58..27345d0dc6d 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_emalon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_emalon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_koralon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_koralon.cpp index 151e199b749..9c96d7e3f49 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_koralon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_koralon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp index a7895b8d506..68be133b67b 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/boss_toravon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VaultOfArchavon/instance_vault_of_archavon.cpp b/src/server/scripts/Northrend/VaultOfArchavon/instance_vault_of_archavon.cpp index 846ecc1226a..72d5e8a0382 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/instance_vault_of_archavon.cpp +++ b/src/server/scripts/Northrend/VaultOfArchavon/instance_vault_of_archavon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VaultOfArchavon/vault_of_archavon.h b/src/server/scripts/Northrend/VaultOfArchavon/vault_of_archavon.h index d321a7b8347..581f7707c81 100644 --- a/src/server/scripts/Northrend/VaultOfArchavon/vault_of_archavon.h +++ b/src/server/scripts/Northrend/VaultOfArchavon/vault_of_archavon.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/boss_cyanigosa.cpp b/src/server/scripts/Northrend/VioletHold/boss_cyanigosa.cpp index 5857f695023..36d2c5f8ed3 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_cyanigosa.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_cyanigosa.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/boss_erekem.cpp b/src/server/scripts/Northrend/VioletHold/boss_erekem.cpp index 53435cee61c..2fd98bd48cf 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_erekem.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_erekem.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp b/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp index 50a65920876..48fe8049d19 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_ichoron.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/boss_lavanthor.cpp b/src/server/scripts/Northrend/VioletHold/boss_lavanthor.cpp index 23c498a9dc1..c3df7b71b83 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_lavanthor.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_lavanthor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/boss_moragg.cpp b/src/server/scripts/Northrend/VioletHold/boss_moragg.cpp index a9013333ef9..9a6422dec32 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_moragg.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_moragg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/boss_xevozz.cpp b/src/server/scripts/Northrend/VioletHold/boss_xevozz.cpp index d79e5525650..833b06cfbff 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_xevozz.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_xevozz.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/boss_zuramat.cpp b/src/server/scripts/Northrend/VioletHold/boss_zuramat.cpp index d9a06d7de0b..f44170870cd 100644 --- a/src/server/scripts/Northrend/VioletHold/boss_zuramat.cpp +++ b/src/server/scripts/Northrend/VioletHold/boss_zuramat.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp b/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp index 1fdc98cd765..3e3ce5cde75 100644 --- a/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp +++ b/src/server/scripts/Northrend/VioletHold/instance_violet_hold.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/violet_hold.cpp b/src/server/scripts/Northrend/VioletHold/violet_hold.cpp index a28442dc8dd..645a9da4764 100644 --- a/src/server/scripts/Northrend/VioletHold/violet_hold.cpp +++ b/src/server/scripts/Northrend/VioletHold/violet_hold.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/VioletHold/violet_hold.h b/src/server/scripts/Northrend/VioletHold/violet_hold.h index 205fbec2487..404d1f493e6 100644 --- a/src/server/scripts/Northrend/VioletHold/violet_hold.h +++ b/src/server/scripts/Northrend/VioletHold/violet_hold.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/isle_of_conquest.cpp b/src/server/scripts/Northrend/isle_of_conquest.cpp index 6e325747f2c..7b851055f17 100644 --- a/src/server/scripts/Northrend/isle_of_conquest.cpp +++ b/src/server/scripts/Northrend/isle_of_conquest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/zone_borean_tundra.cpp b/src/server/scripts/Northrend/zone_borean_tundra.cpp index f1d413c181c..f6b9f9fb6be 100644 --- a/src/server/scripts/Northrend/zone_borean_tundra.cpp +++ b/src/server/scripts/Northrend/zone_borean_tundra.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/zone_crystalsong_forest.cpp b/src/server/scripts/Northrend/zone_crystalsong_forest.cpp index 9cad60f8766..2fd5e6e56fa 100644 --- a/src/server/scripts/Northrend/zone_crystalsong_forest.cpp +++ b/src/server/scripts/Northrend/zone_crystalsong_forest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/zone_dalaran.cpp b/src/server/scripts/Northrend/zone_dalaran.cpp index ce2cef9798a..18492367898 100644 --- a/src/server/scripts/Northrend/zone_dalaran.cpp +++ b/src/server/scripts/Northrend/zone_dalaran.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/zone_dragonblight.cpp b/src/server/scripts/Northrend/zone_dragonblight.cpp index 7058f8689f0..e42bdc2b4f0 100644 --- a/src/server/scripts/Northrend/zone_dragonblight.cpp +++ b/src/server/scripts/Northrend/zone_dragonblight.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/zone_grizzly_hills.cpp b/src/server/scripts/Northrend/zone_grizzly_hills.cpp index 899d9cbe30d..95e02f7bc19 100644 --- a/src/server/scripts/Northrend/zone_grizzly_hills.cpp +++ b/src/server/scripts/Northrend/zone_grizzly_hills.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/zone_howling_fjord.cpp b/src/server/scripts/Northrend/zone_howling_fjord.cpp index adf2af50a8e..fe72a2cedf7 100644 --- a/src/server/scripts/Northrend/zone_howling_fjord.cpp +++ b/src/server/scripts/Northrend/zone_howling_fjord.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/zone_icecrown.cpp b/src/server/scripts/Northrend/zone_icecrown.cpp index 7436ac8400f..9e2cb0cf18b 100644 --- a/src/server/scripts/Northrend/zone_icecrown.cpp +++ b/src/server/scripts/Northrend/zone_icecrown.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Northrend/zone_sholazar_basin.cpp b/src/server/scripts/Northrend/zone_sholazar_basin.cpp index 21468ccce90..1e998b78c03 100644 --- a/src/server/scripts/Northrend/zone_sholazar_basin.cpp +++ b/src/server/scripts/Northrend/zone_sholazar_basin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/zone_storm_peaks.cpp b/src/server/scripts/Northrend/zone_storm_peaks.cpp index ec65aa26f17..bfdea4a1435 100644 --- a/src/server/scripts/Northrend/zone_storm_peaks.cpp +++ b/src/server/scripts/Northrend/zone_storm_peaks.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Northrend/zone_zuldrak.cpp b/src/server/scripts/Northrend/zone_zuldrak.cpp index cde2cf94e3c..f73930181f0 100644 --- a/src/server/scripts/Northrend/zone_zuldrak.cpp +++ b/src/server/scripts/Northrend/zone_zuldrak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/CMakeLists.txt b/src/server/scripts/OutdoorPvP/CMakeLists.txt index 3c22f1431d8..06466b1ce78 100644 --- a/src/server/scripts/OutdoorPvP/CMakeLists.txt +++ b/src/server/scripts/OutdoorPvP/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPHP.cpp b/src/server/scripts/OutdoorPvP/OutdoorPvPHP.cpp index 252a2cc8e85..f8a7647a1d5 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPHP.cpp +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPHP.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPHP.h b/src/server/scripts/OutdoorPvP/OutdoorPvPHP.h index 5b81960b24f..218e61b0c49 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPHP.h +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPHP.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPNA.cpp b/src/server/scripts/OutdoorPvP/OutdoorPvPNA.cpp index b16ced348ec..761e12b226c 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPNA.cpp +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPNA.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPNA.h b/src/server/scripts/OutdoorPvP/OutdoorPvPNA.h index 8d327da4b0f..80c8041bc6d 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPNA.h +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPNA.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPSI.cpp b/src/server/scripts/OutdoorPvP/OutdoorPvPSI.cpp index 4a99ced5d55..4f96f78976a 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPSI.cpp +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPSI.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPSI.h b/src/server/scripts/OutdoorPvP/OutdoorPvPSI.h index fdab0a292bd..b528dfd4daa 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPSI.h +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPSI.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPTF.cpp b/src/server/scripts/OutdoorPvP/OutdoorPvPTF.cpp index 476abe012ce..17736c7747b 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPTF.cpp +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPTF.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPTF.h b/src/server/scripts/OutdoorPvP/OutdoorPvPTF.h index ef400452e63..e6421678d41 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPTF.h +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPTF.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPZM.cpp b/src/server/scripts/OutdoorPvP/OutdoorPvPZM.cpp index 32325df7809..6ea588cec00 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPZM.cpp +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPZM.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h b/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h index 5910a88f476..a08e141294d 100644 --- a/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h +++ b/src/server/scripts/OutdoorPvP/OutdoorPvPZM.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/auchenai_crypts.h b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/auchenai_crypts.h index c07c8365c2f..eb363102223 100644 --- a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/auchenai_crypts.h +++ b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/auchenai_crypts.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp index 08d042582e5..eba6b25e8eb 100644 --- a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp +++ b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_exarch_maladaar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_shirrak_the_dead_watcher.cpp b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_shirrak_the_dead_watcher.cpp index b354df9d63a..662bad46162 100644 --- a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_shirrak_the_dead_watcher.cpp +++ b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/boss_shirrak_the_dead_watcher.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp index 33c9aab0cf9..21b5c3958d4 100644 --- a/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp +++ b/src/server/scripts/Outland/Auchindoun/AuchenaiCrypts/instance_auchenai_crypts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp b/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp index 272e3042887..a14721fcf3c 100644 --- a/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp +++ b/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_nexusprince_shaffar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_pandemonius.cpp b/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_pandemonius.cpp index 8bc0ba1722a..5a7bc2f2864 100644 --- a/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_pandemonius.cpp +++ b/src/server/scripts/Outland/Auchindoun/ManaTombs/boss_pandemonius.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp b/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp index 4629aadb2bd..c4128c0769d 100644 --- a/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp +++ b/src/server/scripts/Outland/Auchindoun/ManaTombs/instance_mana_tombs.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/ManaTombs/mana_tombs.h b/src/server/scripts/Outland/Auchindoun/ManaTombs/mana_tombs.h index 7dd9e96a75e..ff54a0527ac 100644 --- a/src/server/scripts/Outland/Auchindoun/ManaTombs/mana_tombs.h +++ b/src/server/scripts/Outland/Auchindoun/ManaTombs/mana_tombs.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_anzu.cpp b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_anzu.cpp index e2d6bee85ca..aaba6d67117 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_anzu.cpp +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_anzu.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp index 6ec69ee11af..69ec1a15c37 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp index 22914ca9094..cf6de2a7beb 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_talon_king_ikiss.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp b/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp index 1f55abf8a11..76d59da32cc 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/instance_sethekk_halls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/sethekk_halls.h b/src/server/scripts/Outland/Auchindoun/SethekkHalls/sethekk_halls.h index 8cf01fb4635..a073b71f282 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/sethekk_halls.h +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/sethekk_halls.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_ambassador_hellmaw.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_ambassador_hellmaw.cpp index 6ff92bcdb0b..2b5ad18022a 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_ambassador_hellmaw.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_ambassador_hellmaw.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp index 2b7376a527b..594441ae4fc 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_blackheart_the_inciter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_grandmaster_vorpil.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_grandmaster_vorpil.cpp index 109174f5807..d0e12c87a55 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_grandmaster_vorpil.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_grandmaster_vorpil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp index 31adf1522d4..e1371b07567 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/boss_murmur.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp index 6fea892abea..9d2737c8ba5 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/instance_shadow_labyrinth.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.h b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.h index 1fa70298d41..7325ba37e9f 100644 --- a/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.h +++ b/src/server/scripts/Outland/Auchindoun/ShadowLabyrinth/shadow_labyrinth.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/BlackTemple/black_temple.cpp b/src/server/scripts/Outland/BlackTemple/black_temple.cpp index 71136f79919..764cd9594ea 100644 --- a/src/server/scripts/Outland/BlackTemple/black_temple.cpp +++ b/src/server/scripts/Outland/BlackTemple/black_temple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/BlackTemple/black_temple.h b/src/server/scripts/Outland/BlackTemple/black_temple.h index bbad9ff7651..3c2aa183279 100644 --- a/src/server/scripts/Outland/BlackTemple/black_temple.h +++ b/src/server/scripts/Outland/BlackTemple/black_temple.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/BlackTemple/boss_gurtogg_bloodboil.cpp b/src/server/scripts/Outland/BlackTemple/boss_gurtogg_bloodboil.cpp index b48efcecea1..c32330c3a59 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_gurtogg_bloodboil.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_gurtogg_bloodboil.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp b/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp index 6b11d8715b8..ab97771374f 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_illidan.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp b/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp index 24d6eb6c831..36300545158 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_mother_shahraz.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp b/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp index 1e55eb37007..ddea2ac4edc 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_reliquary_of_souls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/BlackTemple/boss_shade_of_akama.cpp b/src/server/scripts/Outland/BlackTemple/boss_shade_of_akama.cpp index 6ff865cfcd0..728b164cc04 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_shade_of_akama.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_shade_of_akama.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp b/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp index 93061a3a57f..3f421683bc9 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_supremus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp b/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp index 6666fd58d32..f75d90e21c2 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_teron_gorefiend.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/BlackTemple/boss_warlord_najentus.cpp b/src/server/scripts/Outland/BlackTemple/boss_warlord_najentus.cpp index 0f80e541261..61b202fcfeb 100644 --- a/src/server/scripts/Outland/BlackTemple/boss_warlord_najentus.cpp +++ b/src/server/scripts/Outland/BlackTemple/boss_warlord_najentus.cpp @@ -1,5 +1,5 @@ /*
- * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/>
+ * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
diff --git a/src/server/scripts/Outland/BlackTemple/illidari_council.cpp b/src/server/scripts/Outland/BlackTemple/illidari_council.cpp index 73dc3d1904f..51a12bd0e91 100644 --- a/src/server/scripts/Outland/BlackTemple/illidari_council.cpp +++ b/src/server/scripts/Outland/BlackTemple/illidari_council.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/BlackTemple/instance_black_temple.cpp b/src/server/scripts/Outland/BlackTemple/instance_black_temple.cpp index 7067ca659d3..a14be544921 100644 --- a/src/server/scripts/Outland/BlackTemple/instance_black_temple.cpp +++ b/src/server/scripts/Outland/BlackTemple/instance_black_temple.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CMakeLists.txt b/src/server/scripts/Outland/CMakeLists.txt index ffc9b514abf..24658dbc21f 100644 --- a/src/server/scripts/Outland/CMakeLists.txt +++ b/src/server/scripts/Outland/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_fathomlord_karathress.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_fathomlord_karathress.cpp index 6fba2c3dd9d..9c361579b8d 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_fathomlord_karathress.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_fathomlord_karathress.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp index d6117c9053f..9ec7c88d8fa 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_hydross_the_unstable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lady_vashj.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lady_vashj.cpp index 89b28b8dcd8..1bc886a612d 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lady_vashj.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lady_vashj.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp index 87451a1f69c..f30417534b4 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_leotheras_the_blind.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp index 0fffdaa0554..2750476db76 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_lurker_below.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp index ccf7903ebe3..b76712fc541 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_morogrim_tidewalker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/instance_serpent_shrine.cpp b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/instance_serpent_shrine.cpp index ed353b359c9..1657b178327 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/instance_serpent_shrine.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/instance_serpent_shrine.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/serpent_shrine.h b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/serpent_shrine.h index 660ec6bfb3d..d3d449c7e8c 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/serpent_shrine.h +++ b/src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/serpent_shrine.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp index dfbc49e1e34..d76bd0db04b 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_hydromancer_thespia.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_mekgineer_steamrigger.cpp b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_mekgineer_steamrigger.cpp index 745c44eebec..e9cfc07de1f 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_mekgineer_steamrigger.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_mekgineer_steamrigger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_warlord_kalithresh.cpp b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_warlord_kalithresh.cpp index 16b84e53cfd..8974b560e2a 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_warlord_kalithresh.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/boss_warlord_kalithresh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/instance_steam_vault.cpp b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/instance_steam_vault.cpp index 794d3a490f6..4cc522c7523 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/instance_steam_vault.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/instance_steam_vault.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -43,7 +43,7 @@ class go_main_chambers_access_panel : public GameObjectScript } }; -ObjectData const gameObjectData[] = +ObjectData const gameObjectData[] = { { GO_ACCESS_PANEL_HYDRO, DATA_ACCESS_PANEL_HYDRO }, { GO_ACCESS_PANEL_MEK, DATA_ACCESS_PANEL_MEK }, diff --git a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/steam_vault.h b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/steam_vault.h index d18d0406dea..d3a74fc661a 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/SteamVault/steam_vault.h +++ b/src/server/scripts/Outland/CoilfangReservoir/SteamVault/steam_vault.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_mennu_the_betrayer.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_mennu_the_betrayer.cpp index 1037f92cc42..46c2ef22c50 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_mennu_the_betrayer.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_mennu_the_betrayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_quagmirran.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_quagmirran.cpp index a71c9660623..ee35ade3552 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_quagmirran.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_quagmirran.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_rokmar_the_crackler.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_rokmar_the_crackler.cpp index 546ed38082f..0d19ffdc49f 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_rokmar_the_crackler.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/boss_rokmar_the_crackler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp index b6860d3e74c..03feba69ad3 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/instance_the_slave_pens.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/the_slave_pens.h b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/the_slave_pens.h index 3130737eed5..916ba56182c 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/the_slave_pens.h +++ b/src/server/scripts/Outland/CoilfangReservoir/TheSlavePens/the_slave_pens.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp index f097b2c1551..adefcc041fd 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_hungarfen.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_the_black_stalker.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_the_black_stalker.cpp index d730c26c4f4..4053cd762a2 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_the_black_stalker.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/boss_the_black_stalker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp index f950a61133e..b2c76b5b227 100644 --- a/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp +++ b/src/server/scripts/Outland/CoilfangReservoir/TheUnderbog/instance_the_underbog.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/GruulsLair/boss_gruul.cpp b/src/server/scripts/Outland/GruulsLair/boss_gruul.cpp index a3404e048ce..8f2a3d39c05 100644 --- a/src/server/scripts/Outland/GruulsLair/boss_gruul.cpp +++ b/src/server/scripts/Outland/GruulsLair/boss_gruul.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp index 4dcfe2be4cb..374ce3cd957 100644 --- a/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp +++ b/src/server/scripts/Outland/GruulsLair/boss_high_king_maulgar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/GruulsLair/gruuls_lair.h b/src/server/scripts/Outland/GruulsLair/gruuls_lair.h index 288601c4584..40ed13ad886 100644 --- a/src/server/scripts/Outland/GruulsLair/gruuls_lair.h +++ b/src/server/scripts/Outland/GruulsLair/gruuls_lair.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/GruulsLair/instance_gruuls_lair.cpp b/src/server/scripts/Outland/GruulsLair/instance_gruuls_lair.cpp index 5f8bafc736b..e97b004df06 100644 --- a/src/server/scripts/Outland/GruulsLair/instance_gruuls_lair.cpp +++ b/src/server/scripts/Outland/GruulsLair/instance_gruuls_lair.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/blood_furnace.h b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/blood_furnace.h index 8bcfdf5558f..a44854a3c7b 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/blood_furnace.h +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/blood_furnace.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp index c0a7f85cb63..a1cee2af3ab 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_broggok.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp index e632b2aff3d..1ed81f77414 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_kelidan_the_breaker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_the_maker.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_the_maker.cpp index 67e09ba4ac9..454da983642 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_the_maker.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/boss_the_maker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp index 8e9018a99c9..212471002b4 100644 --- a/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/BloodFurnace/instance_blood_furnace.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_omor_the_unscarred.cpp b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_omor_the_unscarred.cpp index f53b4bea70c..177b811afcd 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_omor_the_unscarred.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_omor_the_unscarred.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp index 566c6439893..f3e655b45b5 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_vazruden_the_herald.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_watchkeeper_gargolmar.cpp b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_watchkeeper_gargolmar.cpp index 2fbef051313..774c5fcc874 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_watchkeeper_gargolmar.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/boss_watchkeeper_gargolmar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/hellfire_ramparts.h b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/hellfire_ramparts.h index df34ab5fafb..100a10fadcd 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/hellfire_ramparts.h +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/hellfire_ramparts.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp index d2ef0857b23..1e8f1b5e9ac 100644 --- a/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/HellfireRamparts/instance_hellfire_ramparts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp index 7dbccf5908a..5898b70f38e 100644 --- a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/boss_magtheridon.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/instance_magtheridons_lair.cpp b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/instance_magtheridons_lair.cpp index a8d840b778a..a1bac019e7d 100644 --- a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/instance_magtheridons_lair.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/instance_magtheridons_lair.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/magtheridons_lair.h b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/magtheridons_lair.h index 159962475ca..e4d9f121242 100644 --- a/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/magtheridons_lair.h +++ b/src/server/scripts/Outland/HellfireCitadel/MagtheridonsLair/magtheridons_lair.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp index 59fb8b48e30..fb44a403d86 100644 --- a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_nethekurse.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warbringer_omrogg.cpp b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warbringer_omrogg.cpp index 2d33bee4091..0d7fe11956b 100644 --- a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warbringer_omrogg.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warbringer_omrogg.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warchief_kargath_bladefist.cpp b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warchief_kargath_bladefist.cpp index ff8bb84c397..b44ae46c78c 100644 --- a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warchief_kargath_bladefist.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/boss_warchief_kargath_bladefist.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/instance_shattered_halls.cpp b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/instance_shattered_halls.cpp index 208b7c36a5f..c6b08bdada1 100644 --- a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/instance_shattered_halls.cpp +++ b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/instance_shattered_halls.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.h b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.h index d0490676bdd..90cbbe2a438 100644 --- a/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.h +++ b/src/server/scripts/Outland/HellfireCitadel/ShatteredHalls/shattered_halls.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp index 0f9547a2b37..cc825afd3a0 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp index 7e30ae1a931..57048340e1d 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_astromancer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp index 961f07bd823..9aa1981eabb 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_kaelthas.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp index dd97d10cfbe..9186b491fa4 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_void_reaver.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp b/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp index ebe9ac9865a..38c9cdd487c 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/instance_the_eye.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp index 22526465283..d97ef766dd7 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.h b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.h index 6b1cd89abf6..718f37861d9 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/the_eye.h +++ b/src/server/scripts/Outland/TempestKeep/Eye/the_eye.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp index a60609e0656..ccc8cf110ae 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_gyrokill.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp index 151244f86c9..49de90e200d 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_gatewatcher_ironhand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_mechano_lord_capacitus.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_mechano_lord_capacitus.cpp index f8861d1fa7f..ec2985b7053 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_mechano_lord_capacitus.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_mechano_lord_capacitus.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp index 276b291e236..cca11f2a270 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_nethermancer_sepethrea.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp index 8f416d3aa8c..6bb73d6d264 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/boss_pathaleon_the_calculator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/instance_mechanar.cpp b/src/server/scripts/Outland/TempestKeep/Mechanar/instance_mechanar.cpp index c620a17f7b6..4955a2201e5 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/instance_mechanar.cpp +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/instance_mechanar.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/Mechanar/mechanar.h b/src/server/scripts/Outland/TempestKeep/Mechanar/mechanar.h index 0d823dac325..6984d16af4c 100644 --- a/src/server/scripts/Outland/TempestKeep/Mechanar/mechanar.h +++ b/src/server/scripts/Outland/TempestKeep/Mechanar/mechanar.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp index cb875e26c42..2407f3980de 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.h b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.h index 5b1695f4cfb..8fb286855fa 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.h +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/arcatraz.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_dalliah_the_doomsayer.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_dalliah_the_doomsayer.cpp index 71e23a65d66..6eb386f8f45 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_dalliah_the_doomsayer.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_dalliah_the_doomsayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp index 2d549e590c5..50b77aac410 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_harbinger_skyriss.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_wrath_scryer_soccothrates.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_wrath_scryer_soccothrates.cpp index 27de2786243..a8025198baf 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_wrath_scryer_soccothrates.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_wrath_scryer_soccothrates.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_zereketh_the_unbound.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_zereketh_the_unbound.cpp index 4b43edef2e0..f4fc51a7efc 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/boss_zereketh_the_unbound.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/boss_zereketh_the_unbound.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp b/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp index 984af86e645..515ede7ea60 100644 --- a/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp +++ b/src/server/scripts/Outland/TempestKeep/arcatraz/instance_arcatraz.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_commander_sarannis.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_commander_sarannis.cpp index e254d92bac8..e8b9c5cc1ce 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_commander_sarannis.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_commander_sarannis.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp index ff336216954..4377067e56b 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_high_botanist_freywinn.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp index 0e25a6e0758..1be87c9fb14 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_laj.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_thorngrin_the_tender.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_thorngrin_the_tender.cpp index 906c6e187ce..8ed1166fbba 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_thorngrin_the_tender.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_thorngrin_the_tender.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp b/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp index c4acdf2ded3..1d02c5f931d 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/boss_warp_splinter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/TempestKeep/botanica/instance_the_botanica.cpp b/src/server/scripts/Outland/TempestKeep/botanica/instance_the_botanica.cpp index 19453bd3925..2ee65c890cb 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/instance_the_botanica.cpp +++ b/src/server/scripts/Outland/TempestKeep/botanica/instance_the_botanica.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Outland/TempestKeep/botanica/the_botanica.h b/src/server/scripts/Outland/TempestKeep/botanica/the_botanica.h index 68d869520ce..efa27b8c662 100644 --- a/src/server/scripts/Outland/TempestKeep/botanica/the_botanica.h +++ b/src/server/scripts/Outland/TempestKeep/botanica/the_botanica.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/boss_doomlord_kazzak.cpp b/src/server/scripts/Outland/boss_doomlord_kazzak.cpp index eea03aae343..cbef6d217c5 100644 --- a/src/server/scripts/Outland/boss_doomlord_kazzak.cpp +++ b/src/server/scripts/Outland/boss_doomlord_kazzak.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/boss_doomwalker.cpp b/src/server/scripts/Outland/boss_doomwalker.cpp index 05113520566..e6835c8865c 100644 --- a/src/server/scripts/Outland/boss_doomwalker.cpp +++ b/src/server/scripts/Outland/boss_doomwalker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp index 27bd6904abd..0fa5b44e09b 100644 --- a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp +++ b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_hellfire_peninsula.cpp b/src/server/scripts/Outland/zone_hellfire_peninsula.cpp index 58f77f22f97..97777cd5f6e 100644 --- a/src/server/scripts/Outland/zone_hellfire_peninsula.cpp +++ b/src/server/scripts/Outland/zone_hellfire_peninsula.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_nagrand.cpp b/src/server/scripts/Outland/zone_nagrand.cpp index c08f891d13f..81a31693521 100644 --- a/src/server/scripts/Outland/zone_nagrand.cpp +++ b/src/server/scripts/Outland/zone_nagrand.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_netherstorm.cpp b/src/server/scripts/Outland/zone_netherstorm.cpp index 8bc94663f30..8266e80e7bb 100644 --- a/src/server/scripts/Outland/zone_netherstorm.cpp +++ b/src/server/scripts/Outland/zone_netherstorm.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_shadowmoon_valley.cpp b/src/server/scripts/Outland/zone_shadowmoon_valley.cpp index 2dd5c81a2ee..96244ee5aae 100644 --- a/src/server/scripts/Outland/zone_shadowmoon_valley.cpp +++ b/src/server/scripts/Outland/zone_shadowmoon_valley.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_shattrath_city.cpp b/src/server/scripts/Outland/zone_shattrath_city.cpp index a1ae917cbba..fa3ef9e863e 100644 --- a/src/server/scripts/Outland/zone_shattrath_city.cpp +++ b/src/server/scripts/Outland/zone_shattrath_city.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_terokkar_forest.cpp b/src/server/scripts/Outland/zone_terokkar_forest.cpp index a019555d3c9..d948862431f 100644 --- a/src/server/scripts/Outland/zone_terokkar_forest.cpp +++ b/src/server/scripts/Outland/zone_terokkar_forest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Outland/zone_zangarmarsh.cpp b/src/server/scripts/Outland/zone_zangarmarsh.cpp index c7627d1aa04..0dc12c8f4c4 100644 --- a/src/server/scripts/Outland/zone_zangarmarsh.cpp +++ b/src/server/scripts/Outland/zone_zangarmarsh.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/Pet/CMakeLists.txt b/src/server/scripts/Pet/CMakeLists.txt index fce34098f41..a0d165f5afa 100644 --- a/src/server/scripts/Pet/CMakeLists.txt +++ b/src/server/scripts/Pet/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Pet/pet_dk.cpp b/src/server/scripts/Pet/pet_dk.cpp index edbec51f4b1..95364c5ae08 100644 --- a/src/server/scripts/Pet/pet_dk.cpp +++ b/src/server/scripts/Pet/pet_dk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Pet/pet_generic.cpp b/src/server/scripts/Pet/pet_generic.cpp index 3772376e764..5a8bc187379 100644 --- a/src/server/scripts/Pet/pet_generic.cpp +++ b/src/server/scripts/Pet/pet_generic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Pet/pet_hunter.cpp b/src/server/scripts/Pet/pet_hunter.cpp index 20412415fbe..1904d7ce184 100644 --- a/src/server/scripts/Pet/pet_hunter.cpp +++ b/src/server/scripts/Pet/pet_hunter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Pet/pet_mage.cpp b/src/server/scripts/Pet/pet_mage.cpp index 260784fd26a..0d6353cfb86 100644 --- a/src/server/scripts/Pet/pet_mage.cpp +++ b/src/server/scripts/Pet/pet_mage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Pet/pet_priest.cpp b/src/server/scripts/Pet/pet_priest.cpp index 4a6d147615e..a4e780349e6 100644 --- a/src/server/scripts/Pet/pet_priest.cpp +++ b/src/server/scripts/Pet/pet_priest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Pet/pet_shaman.cpp b/src/server/scripts/Pet/pet_shaman.cpp index b9b89d92784..e80957f1aa3 100644 --- a/src/server/scripts/Pet/pet_shaman.cpp +++ b/src/server/scripts/Pet/pet_shaman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/CMakeLists.txt b/src/server/scripts/Spells/CMakeLists.txt index 4e1d41b7261..b434c6b76cb 100644 --- a/src/server/scripts/Spells/CMakeLists.txt +++ b/src/server/scripts/Spells/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/Spells/spell_dk.cpp b/src/server/scripts/Spells/spell_dk.cpp index 338fb3a00e7..5a54243679f 100644 --- a/src/server/scripts/Spells/spell_dk.cpp +++ b/src/server/scripts/Spells/spell_dk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_druid.cpp b/src/server/scripts/Spells/spell_druid.cpp index 01501c04c2e..669fb8838fb 100644 --- a/src/server/scripts/Spells/spell_druid.cpp +++ b/src/server/scripts/Spells/spell_druid.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_generic.cpp b/src/server/scripts/Spells/spell_generic.cpp index 8800903b095..8efa16c7155 100644 --- a/src/server/scripts/Spells/spell_generic.cpp +++ b/src/server/scripts/Spells/spell_generic.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_holiday.cpp b/src/server/scripts/Spells/spell_holiday.cpp index a5eec35d95b..44dd17e5624 100644 --- a/src/server/scripts/Spells/spell_holiday.cpp +++ b/src/server/scripts/Spells/spell_holiday.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_hunter.cpp b/src/server/scripts/Spells/spell_hunter.cpp index 9f7f0dc4a5b..205965910c1 100644 --- a/src/server/scripts/Spells/spell_hunter.cpp +++ b/src/server/scripts/Spells/spell_hunter.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_item.cpp b/src/server/scripts/Spells/spell_item.cpp index ed888b2d33d..c9bf358607b 100644 --- a/src/server/scripts/Spells/spell_item.cpp +++ b/src/server/scripts/Spells/spell_item.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_mage.cpp b/src/server/scripts/Spells/spell_mage.cpp index 782a4ca6190..d316c5a5c4a 100644 --- a/src/server/scripts/Spells/spell_mage.cpp +++ b/src/server/scripts/Spells/spell_mage.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_paladin.cpp b/src/server/scripts/Spells/spell_paladin.cpp index f4afee89d6f..305f1cce9e3 100644 --- a/src/server/scripts/Spells/spell_paladin.cpp +++ b/src/server/scripts/Spells/spell_paladin.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_pet.cpp b/src/server/scripts/Spells/spell_pet.cpp index 042f1c321ee..c0564f9fbc1 100644 --- a/src/server/scripts/Spells/spell_pet.cpp +++ b/src/server/scripts/Spells/spell_pet.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_priest.cpp b/src/server/scripts/Spells/spell_priest.cpp index 77386808136..3f9755486ae 100644 --- a/src/server/scripts/Spells/spell_priest.cpp +++ b/src/server/scripts/Spells/spell_priest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_quest.cpp b/src/server/scripts/Spells/spell_quest.cpp index 434a8f75693..287e3591f5d 100644 --- a/src/server/scripts/Spells/spell_quest.cpp +++ b/src/server/scripts/Spells/spell_quest.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_rogue.cpp b/src/server/scripts/Spells/spell_rogue.cpp index f7ab4775c82..b73903a01b0 100644 --- a/src/server/scripts/Spells/spell_rogue.cpp +++ b/src/server/scripts/Spells/spell_rogue.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_shaman.cpp b/src/server/scripts/Spells/spell_shaman.cpp index 8e363c6f125..b5c9c23fa5c 100644 --- a/src/server/scripts/Spells/spell_shaman.cpp +++ b/src/server/scripts/Spells/spell_shaman.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_warlock.cpp b/src/server/scripts/Spells/spell_warlock.cpp index 727748c2f3f..b32178f74f8 100644 --- a/src/server/scripts/Spells/spell_warlock.cpp +++ b/src/server/scripts/Spells/spell_warlock.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/Spells/spell_warrior.cpp b/src/server/scripts/Spells/spell_warrior.cpp index 3279a5181a7..f696fffb2ea 100644 --- a/src/server/scripts/Spells/spell_warrior.cpp +++ b/src/server/scripts/Spells/spell_warrior.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/World/CMakeLists.txt b/src/server/scripts/World/CMakeLists.txt index 56a0a1eb4c7..56b8a3209ae 100644 --- a/src/server/scripts/World/CMakeLists.txt +++ b/src/server/scripts/World/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/scripts/World/achievement_scripts.cpp b/src/server/scripts/World/achievement_scripts.cpp index 52d99ba0746..310284a0461 100644 --- a/src/server/scripts/World/achievement_scripts.cpp +++ b/src/server/scripts/World/achievement_scripts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/World/action_ip_logger.cpp b/src/server/scripts/World/action_ip_logger.cpp index c82459d0599..eba7c0e3d84 100644 --- a/src/server/scripts/World/action_ip_logger.cpp +++ b/src/server/scripts/World/action_ip_logger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/World/areatrigger_scripts.cpp b/src/server/scripts/World/areatrigger_scripts.cpp index 535d1f3e1d1..110a7bbbc91 100644 --- a/src/server/scripts/World/areatrigger_scripts.cpp +++ b/src/server/scripts/World/areatrigger_scripts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/boss_emerald_dragons.cpp b/src/server/scripts/World/boss_emerald_dragons.cpp index 01d36783d20..40aa759caf6 100644 --- a/src/server/scripts/World/boss_emerald_dragons.cpp +++ b/src/server/scripts/World/boss_emerald_dragons.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/chat_log.cpp b/src/server/scripts/World/chat_log.cpp index ac0f4478571..87dba586678 100644 --- a/src/server/scripts/World/chat_log.cpp +++ b/src/server/scripts/World/chat_log.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/World/go_scripts.cpp b/src/server/scripts/World/go_scripts.cpp index 625a8fb05bf..ceaa7533d93 100644 --- a/src/server/scripts/World/go_scripts.cpp +++ b/src/server/scripts/World/go_scripts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/guards.cpp b/src/server/scripts/World/guards.cpp index ac0c50aa7dd..efe885843f0 100644 --- a/src/server/scripts/World/guards.cpp +++ b/src/server/scripts/World/guards.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/item_scripts.cpp b/src/server/scripts/World/item_scripts.cpp index f9cd44ca88c..a44d1cd1cb6 100644 --- a/src/server/scripts/World/item_scripts.cpp +++ b/src/server/scripts/World/item_scripts.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/mob_generic_creature.cpp b/src/server/scripts/World/mob_generic_creature.cpp index eb6fbea170e..dfb7d62bc71 100644 --- a/src/server/scripts/World/mob_generic_creature.cpp +++ b/src/server/scripts/World/mob_generic_creature.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/npc_innkeeper.cpp b/src/server/scripts/World/npc_innkeeper.cpp index be56e57cc9d..09f9acf5740 100644 --- a/src/server/scripts/World/npc_innkeeper.cpp +++ b/src/server/scripts/World/npc_innkeeper.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/scripts/World/npc_professions.cpp b/src/server/scripts/World/npc_professions.cpp index 32607236f9e..e2ab2860796 100644 --- a/src/server/scripts/World/npc_professions.cpp +++ b/src/server/scripts/World/npc_professions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/npc_taxi.cpp b/src/server/scripts/World/npc_taxi.cpp index 5abc021e283..7095c0e0b8d 100644 --- a/src/server/scripts/World/npc_taxi.cpp +++ b/src/server/scripts/World/npc_taxi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/scripts/World/npcs_special.cpp b/src/server/scripts/World/npcs_special.cpp index 34699c19648..d4a73ab161f 100644 --- a/src/server/scripts/World/npcs_special.cpp +++ b/src/server/scripts/World/npcs_special.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2006-2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/CMakeLists.txt b/src/server/shared/CMakeLists.txt index ddc10ca4673..0c310c249fe 100644 --- a/src/server/shared/CMakeLists.txt +++ b/src/server/shared/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/shared/Common.cpp b/src/server/shared/Common.cpp index e45813b9d50..56e3c4faaf5 100644 --- a/src/server/shared/Common.cpp +++ b/src/server/shared/Common.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Common.h b/src/server/shared/Common.h index 578bc7aa61f..4c5773d5eb5 100644 --- a/src/server/shared/Common.h +++ b/src/server/shared/Common.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/CompilerDefs.h b/src/server/shared/CompilerDefs.h index 2c2d7ea861d..c7867be517b 100644 --- a/src/server/shared/CompilerDefs.h +++ b/src/server/shared/CompilerDefs.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Configuration/Config.cpp b/src/server/shared/Configuration/Config.cpp index 21bbd063b53..1e1f8c7c3c6 100644 --- a/src/server/shared/Configuration/Config.cpp +++ b/src/server/shared/Configuration/Config.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Configuration/Config.h b/src/server/shared/Configuration/Config.h index c2e073c9c05..ee5834fb55a 100644 --- a/src/server/shared/Configuration/Config.h +++ b/src/server/shared/Configuration/Config.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Containers.h b/src/server/shared/Containers.h index 9121fbe2a97..58379e1fefa 100644 --- a/src/server/shared/Containers.h +++ b/src/server/shared/Containers.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Cryptography/ARC4.cpp b/src/server/shared/Cryptography/ARC4.cpp index 90f38d98d51..28c3da8d228 100644 --- a/src/server/shared/Cryptography/ARC4.cpp +++ b/src/server/shared/Cryptography/ARC4.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/ARC4.h b/src/server/shared/Cryptography/ARC4.h index 11d3d4ba87b..16a0cb92eb9 100644 --- a/src/server/shared/Cryptography/ARC4.h +++ b/src/server/shared/Cryptography/ARC4.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/Authentication/PacketCrypt.cpp b/src/server/shared/Cryptography/Authentication/PacketCrypt.cpp index 7fac311b8a2..c38bd844327 100644 --- a/src/server/shared/Cryptography/Authentication/PacketCrypt.cpp +++ b/src/server/shared/Cryptography/Authentication/PacketCrypt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Cryptography/Authentication/PacketCrypt.h b/src/server/shared/Cryptography/Authentication/PacketCrypt.h index 36f3b81fb53..d43cac77e66 100644 --- a/src/server/shared/Cryptography/Authentication/PacketCrypt.h +++ b/src/server/shared/Cryptography/Authentication/PacketCrypt.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.cpp b/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.cpp index b84de24741c..55c9f01908d 100644 --- a/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.cpp +++ b/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.h b/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.h index 58c4003418e..dfa54182059 100644 --- a/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.h +++ b/src/server/shared/Cryptography/Authentication/WorldPacketCrypt.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/BigNumber.cpp b/src/server/shared/Cryptography/BigNumber.cpp index eae92a58ee3..0097f4722e1 100644 --- a/src/server/shared/Cryptography/BigNumber.cpp +++ b/src/server/shared/Cryptography/BigNumber.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/BigNumber.h b/src/server/shared/Cryptography/BigNumber.h index aebe16021d6..f0feebeafb2 100644 --- a/src/server/shared/Cryptography/BigNumber.h +++ b/src/server/shared/Cryptography/BigNumber.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/HmacHash.cpp b/src/server/shared/Cryptography/HmacHash.cpp index a870fab4aa9..3c16ec3a72a 100644 --- a/src/server/shared/Cryptography/HmacHash.cpp +++ b/src/server/shared/Cryptography/HmacHash.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/HmacHash.h b/src/server/shared/Cryptography/HmacHash.h index c8a63fe742f..7ff1de9ba05 100644 --- a/src/server/shared/Cryptography/HmacHash.h +++ b/src/server/shared/Cryptography/HmacHash.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/OpenSSLCrypto.cpp b/src/server/shared/Cryptography/OpenSSLCrypto.cpp index 6d8d6584e6c..f122888292f 100644 --- a/src/server/shared/Cryptography/OpenSSLCrypto.cpp +++ b/src/server/shared/Cryptography/OpenSSLCrypto.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Cryptography/OpenSSLCrypto.h b/src/server/shared/Cryptography/OpenSSLCrypto.h index 26bd1357d39..0daa20c4780 100644 --- a/src/server/shared/Cryptography/OpenSSLCrypto.h +++ b/src/server/shared/Cryptography/OpenSSLCrypto.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Cryptography/SHA1.cpp b/src/server/shared/Cryptography/SHA1.cpp index d47b13067cd..bd7101075de 100644 --- a/src/server/shared/Cryptography/SHA1.cpp +++ b/src/server/shared/Cryptography/SHA1.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/SHA1.h b/src/server/shared/Cryptography/SHA1.h index 2738d48931e..ebd9f721d4a 100644 --- a/src/server/shared/Cryptography/SHA1.h +++ b/src/server/shared/Cryptography/SHA1.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Cryptography/SHA256.cpp b/src/server/shared/Cryptography/SHA256.cpp index c562e90f29f..2a93aeeab72 100644 --- a/src/server/shared/Cryptography/SHA256.cpp +++ b/src/server/shared/Cryptography/SHA256.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Cryptography/SHA256.h b/src/server/shared/Cryptography/SHA256.h index 78b3666dca8..659236f9495 100644 --- a/src/server/shared/Cryptography/SHA256.h +++ b/src/server/shared/Cryptography/SHA256.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Cryptography/WardenKeyGeneration.h b/src/server/shared/Cryptography/WardenKeyGeneration.h index 9832d5a9c72..0e8a8be7e03 100644 --- a/src/server/shared/Cryptography/WardenKeyGeneration.h +++ b/src/server/shared/Cryptography/WardenKeyGeneration.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/DataStores/DBCFileLoader.cpp b/src/server/shared/DataStores/DBCFileLoader.cpp index ea9bf23d383..bd1c6908e6b 100644 --- a/src/server/shared/DataStores/DBCFileLoader.cpp +++ b/src/server/shared/DataStores/DBCFileLoader.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/DataStores/DBCFileLoader.h b/src/server/shared/DataStores/DBCFileLoader.h index a4a2a3dd1c1..8a5d0b5de71 100644 --- a/src/server/shared/DataStores/DBCFileLoader.h +++ b/src/server/shared/DataStores/DBCFileLoader.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/DataStores/DBCStore.h b/src/server/shared/DataStores/DBCStore.h index f2907535da2..abc64c17220 100644 --- a/src/server/shared/DataStores/DBCStore.h +++ b/src/server/shared/DataStores/DBCStore.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Database/AdhocStatement.cpp b/src/server/shared/Database/AdhocStatement.cpp index 7fae9173d20..547ff967efe 100644 --- a/src/server/shared/Database/AdhocStatement.cpp +++ b/src/server/shared/Database/AdhocStatement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/AdhocStatement.h b/src/server/shared/Database/AdhocStatement.h index 40c1dbb7098..8d9365900d9 100644 --- a/src/server/shared/Database/AdhocStatement.h +++ b/src/server/shared/Database/AdhocStatement.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/DatabaseEnv.h b/src/server/shared/Database/DatabaseEnv.h index fb629d2d9b4..5567966b7e0 100644 --- a/src/server/shared/Database/DatabaseEnv.h +++ b/src/server/shared/Database/DatabaseEnv.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Database/DatabaseWorker.cpp b/src/server/shared/Database/DatabaseWorker.cpp index e130429c8d0..1fe638552a0 100644 --- a/src/server/shared/Database/DatabaseWorker.cpp +++ b/src/server/shared/Database/DatabaseWorker.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/DatabaseWorker.h b/src/server/shared/Database/DatabaseWorker.h index 6f452c767f6..0ca476b1e66 100644 --- a/src/server/shared/Database/DatabaseWorker.h +++ b/src/server/shared/Database/DatabaseWorker.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/DatabaseWorkerPool.h b/src/server/shared/Database/DatabaseWorkerPool.h index 61385d92437..5a06ad69a1d 100644 --- a/src/server/shared/Database/DatabaseWorkerPool.h +++ b/src/server/shared/Database/DatabaseWorkerPool.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Field.cpp b/src/server/shared/Database/Field.cpp index da547d3a151..f7e8d73395e 100644 --- a/src/server/shared/Database/Field.cpp +++ b/src/server/shared/Database/Field.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Field.h b/src/server/shared/Database/Field.h index 352db10c539..c25e987808e 100644 --- a/src/server/shared/Database/Field.h +++ b/src/server/shared/Database/Field.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/CharacterDatabase.cpp b/src/server/shared/Database/Implementation/CharacterDatabase.cpp index 03219291c87..1ca0e586200 100644 --- a/src/server/shared/Database/Implementation/CharacterDatabase.cpp +++ b/src/server/shared/Database/Implementation/CharacterDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/CharacterDatabase.h b/src/server/shared/Database/Implementation/CharacterDatabase.h index a2808163ab4..a1a93ab1119 100644 --- a/src/server/shared/Database/Implementation/CharacterDatabase.h +++ b/src/server/shared/Database/Implementation/CharacterDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/HotfixDatabase.cpp b/src/server/shared/Database/Implementation/HotfixDatabase.cpp index aa35580676e..a41c037e848 100644 --- a/src/server/shared/Database/Implementation/HotfixDatabase.cpp +++ b/src/server/shared/Database/Implementation/HotfixDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/HotfixDatabase.h b/src/server/shared/Database/Implementation/HotfixDatabase.h index 56ab6b8c48a..4e434a1dad6 100644 --- a/src/server/shared/Database/Implementation/HotfixDatabase.h +++ b/src/server/shared/Database/Implementation/HotfixDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/LoginDatabase.cpp b/src/server/shared/Database/Implementation/LoginDatabase.cpp index d509939b2b5..ad3eb2c577f 100644 --- a/src/server/shared/Database/Implementation/LoginDatabase.cpp +++ b/src/server/shared/Database/Implementation/LoginDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/LoginDatabase.h b/src/server/shared/Database/Implementation/LoginDatabase.h index 7da24b57781..727482ff533 100644 --- a/src/server/shared/Database/Implementation/LoginDatabase.h +++ b/src/server/shared/Database/Implementation/LoginDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/WorldDatabase.cpp b/src/server/shared/Database/Implementation/WorldDatabase.cpp index 00efee8059b..c370f347b93 100644 --- a/src/server/shared/Database/Implementation/WorldDatabase.cpp +++ b/src/server/shared/Database/Implementation/WorldDatabase.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Implementation/WorldDatabase.h b/src/server/shared/Database/Implementation/WorldDatabase.h index a398b412c50..36fd6fbb186 100644 --- a/src/server/shared/Database/Implementation/WorldDatabase.h +++ b/src/server/shared/Database/Implementation/WorldDatabase.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp index 24290009625..bea229df184 100644 --- a/src/server/shared/Database/MySQLConnection.cpp +++ b/src/server/shared/Database/MySQLConnection.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/MySQLConnection.h b/src/server/shared/Database/MySQLConnection.h index 61b3b37cbc2..33f17d02228 100644 --- a/src/server/shared/Database/MySQLConnection.h +++ b/src/server/shared/Database/MySQLConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/MySQLThreading.h b/src/server/shared/Database/MySQLThreading.h index da234138879..441f30cb6ec 100644 --- a/src/server/shared/Database/MySQLThreading.h +++ b/src/server/shared/Database/MySQLThreading.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/PreparedStatement.cpp b/src/server/shared/Database/PreparedStatement.cpp index 3ea3c969a4c..2c9ce136e6e 100644 --- a/src/server/shared/Database/PreparedStatement.cpp +++ b/src/server/shared/Database/PreparedStatement.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/PreparedStatement.h b/src/server/shared/Database/PreparedStatement.h index 3ab27902246..71d5f1aead5 100644 --- a/src/server/shared/Database/PreparedStatement.h +++ b/src/server/shared/Database/PreparedStatement.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/QueryHolder.cpp b/src/server/shared/Database/QueryHolder.cpp index f0dc3c96e4e..75b96e1996c 100644 --- a/src/server/shared/Database/QueryHolder.cpp +++ b/src/server/shared/Database/QueryHolder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/QueryHolder.h b/src/server/shared/Database/QueryHolder.h index 39e51b591c5..9022b97de3b 100644 --- a/src/server/shared/Database/QueryHolder.h +++ b/src/server/shared/Database/QueryHolder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -28,7 +28,7 @@ class SQLQueryHolder std::vector<SQLResultPair> m_queries; public: SQLQueryHolder() { } - ~SQLQueryHolder(); + virtual ~SQLQueryHolder(); bool SetQuery(size_t index, const char *sql); bool SetPQuery(size_t index, const char *format, ...) ATTR_PRINTF(3, 4); bool SetPreparedQuery(size_t index, PreparedStatement* stmt); diff --git a/src/server/shared/Database/QueryResult.cpp b/src/server/shared/Database/QueryResult.cpp index 154cf5cda41..61a1a682705 100644 --- a/src/server/shared/Database/QueryResult.cpp +++ b/src/server/shared/Database/QueryResult.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Database/QueryResult.h b/src/server/shared/Database/QueryResult.h index e8c277c03cf..a61fb6331c1 100644 --- a/src/server/shared/Database/QueryResult.h +++ b/src/server/shared/Database/QueryResult.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Database/SQLOperation.h b/src/server/shared/Database/SQLOperation.h index 4d6e349449d..c5667288ec0 100644 --- a/src/server/shared/Database/SQLOperation.h +++ b/src/server/shared/Database/SQLOperation.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Transaction.cpp b/src/server/shared/Database/Transaction.cpp index 2aadafa8f5d..3dee865267b 100644 --- a/src/server/shared/Database/Transaction.cpp +++ b/src/server/shared/Database/Transaction.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Database/Transaction.h b/src/server/shared/Database/Transaction.h index 3822c2c82c1..cf6aa98b386 100644 --- a/src/server/shared/Database/Transaction.h +++ b/src/server/shared/Database/Transaction.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Debugging/Errors.cpp b/src/server/shared/Debugging/Errors.cpp index 8b1b9454850..cebd9d4cf2f 100644 --- a/src/server/shared/Debugging/Errors.cpp +++ b/src/server/shared/Debugging/Errors.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Debugging/Errors.h b/src/server/shared/Debugging/Errors.h index e6da19eb00d..df770c2aa47 100644 --- a/src/server/shared/Debugging/Errors.h +++ b/src/server/shared/Debugging/Errors.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Define.h b/src/server/shared/Define.h index 2723d287c53..8b85a08fa80 100644 --- a/src/server/shared/Define.h +++ b/src/server/shared/Define.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/FactoryHolder.h b/src/server/shared/Dynamic/FactoryHolder.h index a009fd37a7e..c218af9e947 100644 --- a/src/server/shared/Dynamic/FactoryHolder.h +++ b/src/server/shared/Dynamic/FactoryHolder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/LinkedList.h b/src/server/shared/Dynamic/LinkedList.h index 87bbeaac380..1971af91419 100644 --- a/src/server/shared/Dynamic/LinkedList.h +++ b/src/server/shared/Dynamic/LinkedList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/LinkedReference/RefManager.h b/src/server/shared/Dynamic/LinkedReference/RefManager.h index 584066dde5c..81b67c6f050 100644 --- a/src/server/shared/Dynamic/LinkedReference/RefManager.h +++ b/src/server/shared/Dynamic/LinkedReference/RefManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/LinkedReference/Reference.h b/src/server/shared/Dynamic/LinkedReference/Reference.h index 83a1dd155b1..8e3a0854a1d 100644 --- a/src/server/shared/Dynamic/LinkedReference/Reference.h +++ b/src/server/shared/Dynamic/LinkedReference/Reference.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/ObjectRegistry.h b/src/server/shared/Dynamic/ObjectRegistry.h index fe55982f15f..be253f947a7 100644 --- a/src/server/shared/Dynamic/ObjectRegistry.h +++ b/src/server/shared/Dynamic/ObjectRegistry.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/TypeContainer.h b/src/server/shared/Dynamic/TypeContainer.h index 5fe5c947dfe..2165945d119 100644 --- a/src/server/shared/Dynamic/TypeContainer.h +++ b/src/server/shared/Dynamic/TypeContainer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/TypeContainerFunctions.h b/src/server/shared/Dynamic/TypeContainerFunctions.h index 16701e1ab5a..a89f5bd10d4 100644 --- a/src/server/shared/Dynamic/TypeContainerFunctions.h +++ b/src/server/shared/Dynamic/TypeContainerFunctions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/TypeContainerVisitor.h b/src/server/shared/Dynamic/TypeContainerVisitor.h index 120d9880f03..514b52d3dfe 100644 --- a/src/server/shared/Dynamic/TypeContainerVisitor.h +++ b/src/server/shared/Dynamic/TypeContainerVisitor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Dynamic/TypeList.h b/src/server/shared/Dynamic/TypeList.h index c5dc1ee21a4..f1ccca9b043 100644 --- a/src/server/shared/Dynamic/TypeList.h +++ b/src/server/shared/Dynamic/TypeList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Logging/Appender.cpp b/src/server/shared/Logging/Appender.cpp index 2b38f9886c3..dff931e3da8 100644 --- a/src/server/shared/Logging/Appender.cpp +++ b/src/server/shared/Logging/Appender.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/Appender.h b/src/server/shared/Logging/Appender.h index 67213d0ddd0..6f38eb6aaf7 100644 --- a/src/server/shared/Logging/Appender.h +++ b/src/server/shared/Logging/Appender.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/AppenderConsole.cpp b/src/server/shared/Logging/AppenderConsole.cpp index 20923162906..ae27337fb9a 100644 --- a/src/server/shared/Logging/AppenderConsole.cpp +++ b/src/server/shared/Logging/AppenderConsole.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/AppenderConsole.h b/src/server/shared/Logging/AppenderConsole.h index 5b66f86650d..0f9536b3111 100644 --- a/src/server/shared/Logging/AppenderConsole.h +++ b/src/server/shared/Logging/AppenderConsole.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/AppenderDB.cpp b/src/server/shared/Logging/AppenderDB.cpp index d18a5ad8a50..d297d6d08d3 100644 --- a/src/server/shared/Logging/AppenderDB.cpp +++ b/src/server/shared/Logging/AppenderDB.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/AppenderDB.h b/src/server/shared/Logging/AppenderDB.h index b86252d0d67..e20ceaf77b4 100644 --- a/src/server/shared/Logging/AppenderDB.h +++ b/src/server/shared/Logging/AppenderDB.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/AppenderFile.cpp b/src/server/shared/Logging/AppenderFile.cpp index 3e79ac40c6f..07a88a367ae 100644 --- a/src/server/shared/Logging/AppenderFile.cpp +++ b/src/server/shared/Logging/AppenderFile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/AppenderFile.h b/src/server/shared/Logging/AppenderFile.h index 37ba2769e19..23651fc1129 100644 --- a/src/server/shared/Logging/AppenderFile.h +++ b/src/server/shared/Logging/AppenderFile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/Log.cpp b/src/server/shared/Logging/Log.cpp index 3305b364f0f..4bf4dacb302 100644 --- a/src/server/shared/Logging/Log.cpp +++ b/src/server/shared/Logging/Log.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2008 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Logging/Log.h b/src/server/shared/Logging/Log.h index e2d4baa5f0e..1d67ff87f76 100644 --- a/src/server/shared/Logging/Log.h +++ b/src/server/shared/Logging/Log.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Logging/LogOperation.cpp b/src/server/shared/Logging/LogOperation.cpp index 5f241d89712..9afb28a49c2 100644 --- a/src/server/shared/Logging/LogOperation.cpp +++ b/src/server/shared/Logging/LogOperation.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/LogOperation.h b/src/server/shared/Logging/LogOperation.h index bd90da254a6..b8655413273 100644 --- a/src/server/shared/Logging/LogOperation.h +++ b/src/server/shared/Logging/LogOperation.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/Logger.cpp b/src/server/shared/Logging/Logger.cpp index dae8edc6ca9..615732deb30 100644 --- a/src/server/shared/Logging/Logger.cpp +++ b/src/server/shared/Logging/Logger.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Logging/Logger.h b/src/server/shared/Logging/Logger.h index c7826f0615c..a81ee8d7bd2 100644 --- a/src/server/shared/Logging/Logger.h +++ b/src/server/shared/Logging/Logger.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Networking/AsyncAcceptor.h b/src/server/shared/Networking/AsyncAcceptor.h index c8f8e2dbd90..832e408db34 100644 --- a/src/server/shared/Networking/AsyncAcceptor.h +++ b/src/server/shared/Networking/AsyncAcceptor.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Networking/MessageBuffer.h b/src/server/shared/Networking/MessageBuffer.h index a214af9d127..90afaf35796 100644 --- a/src/server/shared/Networking/MessageBuffer.h +++ b/src/server/shared/Networking/MessageBuffer.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Networking/NetworkThread.h b/src/server/shared/Networking/NetworkThread.h index 043aee56504..05ca99ea6a6 100644 --- a/src/server/shared/Networking/NetworkThread.h +++ b/src/server/shared/Networking/NetworkThread.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Networking/Socket.h b/src/server/shared/Networking/Socket.h index 6c367e5649d..f7a1b954cb0 100644 --- a/src/server/shared/Networking/Socket.h +++ b/src/server/shared/Networking/Socket.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Networking/SocketMgr.h b/src/server/shared/Networking/SocketMgr.h index c004295bc1a..0c1940b0e33 100644 --- a/src/server/shared/Networking/SocketMgr.h +++ b/src/server/shared/Networking/SocketMgr.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Packets/ByteBuffer.cpp b/src/server/shared/Packets/ByteBuffer.cpp index ba78a19f31a..31adff5f986 100644 --- a/src/server/shared/Packets/ByteBuffer.cpp +++ b/src/server/shared/Packets/ByteBuffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Packets/ByteBuffer.h b/src/server/shared/Packets/ByteBuffer.h index 42bd66c3c1d..1063883d217 100644 --- a/src/server/shared/Packets/ByteBuffer.h +++ b/src/server/shared/Packets/ByteBuffer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Realm/Realm.cpp b/src/server/shared/Realm/Realm.cpp index 79b10843773..156a0739d02 100644 --- a/src/server/shared/Realm/Realm.cpp +++ b/src/server/shared/Realm/Realm.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Realm/Realm.h b/src/server/shared/Realm/Realm.h index 9476f137947..8e3b3c41576 100644 --- a/src/server/shared/Realm/Realm.h +++ b/src/server/shared/Realm/Realm.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/SystemConfig.h b/src/server/shared/SystemConfig.h index dd5e9a2f90d..7c519c7de57 100644 --- a/src/server/shared/SystemConfig.h +++ b/src/server/shared/SystemConfig.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Threading/Callback.h b/src/server/shared/Threading/Callback.h index 03073d4a792..16ebc5dbc06 100644 --- a/src/server/shared/Threading/Callback.h +++ b/src/server/shared/Threading/Callback.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Threading/LockedQueue.h b/src/server/shared/Threading/LockedQueue.h index bbd60cb7760..3abb0f4b8bc 100644 --- a/src/server/shared/Threading/LockedQueue.h +++ b/src/server/shared/Threading/LockedQueue.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2008 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Threading/ProcessPriority.h b/src/server/shared/Threading/ProcessPriority.h index 6446820e32d..2a8501a0249 100644 --- a/src/server/shared/Threading/ProcessPriority.h +++ b/src/server/shared/Threading/ProcessPriority.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Threading/ProducerConsumerQueue.h b/src/server/shared/Threading/ProducerConsumerQueue.h index d0b3631a9dd..ab01568309b 100644 --- a/src/server/shared/Threading/ProducerConsumerQueue.h +++ b/src/server/shared/Threading/ProducerConsumerQueue.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/shared/Utilities/ByteConverter.h b/src/server/shared/Utilities/ByteConverter.h index 8eebb05bb13..a077de3eb0b 100644 --- a/src/server/shared/Utilities/ByteConverter.h +++ b/src/server/shared/Utilities/ByteConverter.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Utilities/EventProcessor.cpp b/src/server/shared/Utilities/EventProcessor.cpp index fcae42cf27d..34695665443 100644 --- a/src/server/shared/Utilities/EventProcessor.cpp +++ b/src/server/shared/Utilities/EventProcessor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Utilities/EventProcessor.h b/src/server/shared/Utilities/EventProcessor.h index 10ae6aa954c..3d54bd6f9f2 100644 --- a/src/server/shared/Utilities/EventProcessor.h +++ b/src/server/shared/Utilities/EventProcessor.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Utilities/ServiceWin32.cpp b/src/server/shared/Utilities/ServiceWin32.cpp index 6e5309d70d7..c73949fc6a3 100644 --- a/src/server/shared/Utilities/ServiceWin32.cpp +++ b/src/server/shared/Utilities/ServiceWin32.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Utilities/ServiceWin32.h b/src/server/shared/Utilities/ServiceWin32.h index 52223ccc7f6..9d9c732cd20 100644 --- a/src/server/shared/Utilities/ServiceWin32.h +++ b/src/server/shared/Utilities/ServiceWin32.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Utilities/Timer.h b/src/server/shared/Utilities/Timer.h index 0e2d6ddbff5..b7d2fa1b5ad 100644 --- a/src/server/shared/Utilities/Timer.h +++ b/src/server/shared/Utilities/Timer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Utilities/Util.cpp b/src/server/shared/Utilities/Util.cpp index acc18c0a066..ff54237d10a 100644 --- a/src/server/shared/Utilities/Util.cpp +++ b/src/server/shared/Utilities/Util.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/shared/Utilities/Util.h b/src/server/shared/Utilities/Util.h index 5aaedfb8ffe..4e613ecd170 100644 --- a/src/server/shared/Utilities/Util.h +++ b/src/server/shared/Utilities/Util.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/worldserver/CMakeLists.txt b/src/server/worldserver/CMakeLists.txt index d1283cc8cca..d94b5f250aa 100644 --- a/src/server/worldserver/CMakeLists.txt +++ b/src/server/worldserver/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/server/worldserver/CommandLine/CliRunnable.cpp b/src/server/worldserver/CommandLine/CliRunnable.cpp index 295e63c696b..6e961922b0e 100644 --- a/src/server/worldserver/CommandLine/CliRunnable.cpp +++ b/src/server/worldserver/CommandLine/CliRunnable.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/worldserver/CommandLine/CliRunnable.h b/src/server/worldserver/CommandLine/CliRunnable.h index 7ed3a44995f..66617c515a1 100644 --- a/src/server/worldserver/CommandLine/CliRunnable.h +++ b/src/server/worldserver/CommandLine/CliRunnable.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/worldserver/Main.cpp b/src/server/worldserver/Main.cpp index cabfa03c165..15d08a903b9 100644 --- a/src/server/worldserver/Main.cpp +++ b/src/server/worldserver/Main.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/worldserver/RemoteAccess/RASession.cpp b/src/server/worldserver/RemoteAccess/RASession.cpp index 65ba3d4cbd9..34359c3cf03 100644 --- a/src/server/worldserver/RemoteAccess/RASession.cpp +++ b/src/server/worldserver/RemoteAccess/RASession.cpp @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/worldserver/RemoteAccess/RASession.h b/src/server/worldserver/RemoteAccess/RASession.h index 61156a0fa53..d272f323c6a 100644 --- a/src/server/worldserver/RemoteAccess/RASession.h +++ b/src/server/worldserver/RemoteAccess/RASession.h @@ -1,5 +1,5 @@ /* -* Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +* Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/server/worldserver/TCSoap/TCSoap.cpp b/src/server/worldserver/TCSoap/TCSoap.cpp index 5122752f3a4..18b9d07a8fd 100644 --- a/src/server/worldserver/TCSoap/TCSoap.cpp +++ b/src/server/worldserver/TCSoap/TCSoap.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/worldserver/TCSoap/TCSoap.h b/src/server/worldserver/TCSoap/TCSoap.h index 3536d1160bc..70d319b0670 100644 --- a/src/server/worldserver/TCSoap/TCSoap.h +++ b/src/server/worldserver/TCSoap/TCSoap.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/server/worldserver/worldserver.rc b/src/server/worldserver/worldserver.rc index 104d9b162df..cc5545741d3 100644 --- a/src/server/worldserver/worldserver.rc +++ b/src/server/worldserver/worldserver.rc @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index 29dba016e87..812497ed179 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/tools/connection_patcher/CMakeLists.txt b/src/tools/connection_patcher/CMakeLists.txt index fca159ff978..f10a89ad3e5 100644 --- a/src/tools/connection_patcher/CMakeLists.txt +++ b/src/tools/connection_patcher/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/tools/connection_patcher/Constants/BinaryTypes.hpp b/src/tools/connection_patcher/Constants/BinaryTypes.hpp index fc7b34339fa..de54713e14b 100644 --- a/src/tools/connection_patcher/Constants/BinaryTypes.hpp +++ b/src/tools/connection_patcher/Constants/BinaryTypes.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Helper.cpp b/src/tools/connection_patcher/Helper.cpp index 75de2452d26..62af649aba2 100644 --- a/src/tools/connection_patcher/Helper.cpp +++ b/src/tools/connection_patcher/Helper.cpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Helper.hpp b/src/tools/connection_patcher/Helper.hpp index ed6f91363e6..7ea693eca6f 100644 --- a/src/tools/connection_patcher/Helper.hpp +++ b/src/tools/connection_patcher/Helper.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Patcher.cpp b/src/tools/connection_patcher/Patcher.cpp index 92d9dacedf3..49a9011985e 100644 --- a/src/tools/connection_patcher/Patcher.cpp +++ b/src/tools/connection_patcher/Patcher.cpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,9 +35,15 @@ namespace if (!ifs) throw std::runtime_error("could not open " + path.string()); + std::vector<unsigned char> binary; ifs >> std::noskipws; + ifs.seekg(0, std::ios_base::end); + binary.reserve(ifs.tellg()); + ifs.seekg(0, std::ios_base::beg); - return {std::istream_iterator<unsigned char>(ifs), std::istream_iterator<unsigned char>()}; + std::copy(std::istream_iterator<unsigned char>(ifs), std::istream_iterator<unsigned char>(), std::back_inserter(binary)); + + return binary; } void write_file(boost::filesystem::path const& path, std::vector<unsigned char> const& data) @@ -51,7 +57,7 @@ namespace std::copy(data.begin(), data.end(), std::ostream_iterator<unsigned char>(ofs)); } - std::set<size_t> SearchOffset (std::vector<unsigned char> const& binary, std::vector<unsigned char> const& pattern) + std::set<size_t> SearchOffset(std::vector<unsigned char> const& binary, std::vector<unsigned char> const& pattern) { std::set<size_t> offsets; for (size_t i = 0; (i + pattern.size()) < binary.size(); i++) diff --git a/src/tools/connection_patcher/Patcher.hpp b/src/tools/connection_patcher/Patcher.hpp index ecdf21815d1..23b4503e74c 100644 --- a/src/tools/connection_patcher/Patcher.hpp +++ b/src/tools/connection_patcher/Patcher.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Patches/Common.hpp b/src/tools/connection_patcher/Patches/Common.hpp index 9741e61f5a9..58169bc300e 100644 --- a/src/tools/connection_patcher/Patches/Common.hpp +++ b/src/tools/connection_patcher/Patches/Common.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ namespace Connection_Patcher struct Common { static const std::vector<unsigned char> Portal() { return { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; } - static const std::vector<unsigned char> Modulus() + static const std::vector<unsigned char> Modulus() { return { diff --git a/src/tools/connection_patcher/Patches/Mac.hpp b/src/tools/connection_patcher/Patches/Mac.hpp index 9fad02e3ec6..09eebd31c58 100644 --- a/src/tools/connection_patcher/Patches/Mac.hpp +++ b/src/tools/connection_patcher/Patches/Mac.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Patches/Windows.hpp b/src/tools/connection_patcher/Patches/Windows.hpp index 0f4ffb93dac..b65c69d6614 100644 --- a/src/tools/connection_patcher/Patches/Windows.hpp +++ b/src/tools/connection_patcher/Patches/Windows.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Patterns/Common.hpp b/src/tools/connection_patcher/Patterns/Common.hpp index 94c4a220a57..98a35a6f46b 100644 --- a/src/tools/connection_patcher/Patterns/Common.hpp +++ b/src/tools/connection_patcher/Patterns/Common.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Patterns/Mac.hpp b/src/tools/connection_patcher/Patterns/Mac.hpp index 6f13cdda5c7..be4f6b5b20a 100644 --- a/src/tools/connection_patcher/Patterns/Mac.hpp +++ b/src/tools/connection_patcher/Patterns/Mac.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Patterns/Windows.hpp b/src/tools/connection_patcher/Patterns/Windows.hpp index 2cad97541e3..b293c0eb6d1 100644 --- a/src/tools/connection_patcher/Patterns/Windows.hpp +++ b/src/tools/connection_patcher/Patterns/Windows.hpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/connection_patcher/Program.cpp b/src/tools/connection_patcher/Program.cpp index 0df2678e09c..386dd7991c0 100644 --- a/src/tools/connection_patcher/Program.cpp +++ b/src/tools/connection_patcher/Program.cpp @@ -1,6 +1,6 @@ /* * Copyright (C) 2012-2014 Arctium Emulation <http://arctium.org> - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/tools/map_extractor/CMakeLists.txt b/src/tools/map_extractor/CMakeLists.txt index 9cf8c0688b1..d2e88ab97a9 100644 --- a/src/tools/map_extractor/CMakeLists.txt +++ b/src/tools/map_extractor/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2005-2009 MaNGOS project <http://getmangos.com/> -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp index 5c5ff5f9a9f..34362417da9 100644 --- a/src/tools/map_extractor/System.cpp +++ b/src/tools/map_extractor/System.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/map_extractor/adt.h b/src/tools/map_extractor/adt.h index 99e74d9809b..71af5a52f05 100644 --- a/src/tools/map_extractor/adt.h +++ b/src/tools/map_extractor/adt.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/map_extractor/dbcfile.cpp b/src/tools/map_extractor/dbcfile.cpp index 069dcd5e78a..893756321dd 100644 --- a/src/tools/map_extractor/dbcfile.cpp +++ b/src/tools/map_extractor/dbcfile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/map_extractor/dbcfile.h b/src/tools/map_extractor/dbcfile.h index 17c773fcc42..86cb9d92a7c 100644 --- a/src/tools/map_extractor/dbcfile.h +++ b/src/tools/map_extractor/dbcfile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/map_extractor/loadlib.cpp b/src/tools/map_extractor/loadlib.cpp index f4829a3eb7c..975aef04773 100644 --- a/src/tools/map_extractor/loadlib.cpp +++ b/src/tools/map_extractor/loadlib.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/map_extractor/loadlib/DBFilesClientList.h b/src/tools/map_extractor/loadlib/DBFilesClientList.h index 0520e63912b..2a04f2935f9 100644 --- a/src/tools/map_extractor/loadlib/DBFilesClientList.h +++ b/src/tools/map_extractor/loadlib/DBFilesClientList.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/map_extractor/loadlib/loadlib.h b/src/tools/map_extractor/loadlib/loadlib.h index 3110ad569ea..abea14893df 100644 --- a/src/tools/map_extractor/loadlib/loadlib.h +++ b/src/tools/map_extractor/loadlib/loadlib.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -101,7 +101,7 @@ public: std::multimap<std::string, FileChunk*> chunks; FileChunk* GetChunk(std::string const& name); }; - + #pragma pack(pop) #endif diff --git a/src/tools/map_extractor/wdt.h b/src/tools/map_extractor/wdt.h index ac26e7daade..f0efccd8bb2 100644 --- a/src/tools/map_extractor/wdt.h +++ b/src/tools/map_extractor/wdt.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mesh_extractor/ADT.cpp b/src/tools/mesh_extractor/ADT.cpp index a55bdd5e4bb..0165a9000f1 100644 --- a/src/tools/mesh_extractor/ADT.cpp +++ b/src/tools/mesh_extractor/ADT.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/ADT.h b/src/tools/mesh_extractor/ADT.h index ac16b7278ed..55bd8623351 100644 --- a/src/tools/mesh_extractor/ADT.h +++ b/src/tools/mesh_extractor/ADT.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/CMakeLists.txt b/src/tools/mesh_extractor/CMakeLists.txt index 99fa136fccb..eb3c63504d4 100644 --- a/src/tools/mesh_extractor/CMakeLists.txt +++ b/src/tools/mesh_extractor/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2005-2009 MaNGOS project <http://getmangos.com/> -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/tools/mesh_extractor/Cache.h b/src/tools/mesh_extractor/Cache.h index 5d8c02252c9..9cdec6bed2b 100644 --- a/src/tools/mesh_extractor/Cache.h +++ b/src/tools/mesh_extractor/Cache.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Chunk.cpp b/src/tools/mesh_extractor/Chunk.cpp index e4b2f60ff99..62dd885e167 100644 --- a/src/tools/mesh_extractor/Chunk.cpp +++ b/src/tools/mesh_extractor/Chunk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Chunk.h b/src/tools/mesh_extractor/Chunk.h index 87201928435..8c8125ce24b 100644 --- a/src/tools/mesh_extractor/Chunk.h +++ b/src/tools/mesh_extractor/Chunk.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/ChunkedData.cpp b/src/tools/mesh_extractor/ChunkedData.cpp index ae7827d98ea..32a6864e040 100644 --- a/src/tools/mesh_extractor/ChunkedData.cpp +++ b/src/tools/mesh_extractor/ChunkedData.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/ChunkedData.h b/src/tools/mesh_extractor/ChunkedData.h index 48bb61f6959..c674a2fa87e 100644 --- a/src/tools/mesh_extractor/ChunkedData.h +++ b/src/tools/mesh_extractor/ChunkedData.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Constants.h b/src/tools/mesh_extractor/Constants.h index 75e08bcf6fd..daa8eef2a7a 100644 --- a/src/tools/mesh_extractor/Constants.h +++ b/src/tools/mesh_extractor/Constants.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/ContinentBuilder.cpp b/src/tools/mesh_extractor/ContinentBuilder.cpp index 8f509e6e8bb..a60a4b4ce3e 100644 --- a/src/tools/mesh_extractor/ContinentBuilder.cpp +++ b/src/tools/mesh_extractor/ContinentBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/ContinentBuilder.h b/src/tools/mesh_extractor/ContinentBuilder.h index 075265f2627..b8a7dee0528 100644 --- a/src/tools/mesh_extractor/ContinentBuilder.h +++ b/src/tools/mesh_extractor/ContinentBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/DBC.cpp b/src/tools/mesh_extractor/DBC.cpp index e38b9560533..7e03e165efe 100644 --- a/src/tools/mesh_extractor/DBC.cpp +++ b/src/tools/mesh_extractor/DBC.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/DBC.h b/src/tools/mesh_extractor/DBC.h index d0951e36737..df72800c54c 100644 --- a/src/tools/mesh_extractor/DBC.h +++ b/src/tools/mesh_extractor/DBC.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/DoodadHandler.cpp b/src/tools/mesh_extractor/DoodadHandler.cpp index a7d0c77b50c..72b5ce2fcc6 100644 --- a/src/tools/mesh_extractor/DoodadHandler.cpp +++ b/src/tools/mesh_extractor/DoodadHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/DoodadHandler.h b/src/tools/mesh_extractor/DoodadHandler.h index 3e179f63539..f37d5d0f707 100644 --- a/src/tools/mesh_extractor/DoodadHandler.h +++ b/src/tools/mesh_extractor/DoodadHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Geometry.cpp b/src/tools/mesh_extractor/Geometry.cpp index e81dd8a7660..b037c44e630 100644 --- a/src/tools/mesh_extractor/Geometry.cpp +++ b/src/tools/mesh_extractor/Geometry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Geometry.h b/src/tools/mesh_extractor/Geometry.h index d54cdbde5dd..0bef60e16fd 100644 --- a/src/tools/mesh_extractor/Geometry.h +++ b/src/tools/mesh_extractor/Geometry.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/LiquidHandler.cpp b/src/tools/mesh_extractor/LiquidHandler.cpp index 0a76dbfb54c..1025c10da55 100644 --- a/src/tools/mesh_extractor/LiquidHandler.cpp +++ b/src/tools/mesh_extractor/LiquidHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/LiquidHandler.h b/src/tools/mesh_extractor/LiquidHandler.h index 424dbde7e63..61fdd213c6b 100644 --- a/src/tools/mesh_extractor/LiquidHandler.h +++ b/src/tools/mesh_extractor/LiquidHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/MPQ.cpp b/src/tools/mesh_extractor/MPQ.cpp index b75a5bbdd85..7bb882ac703 100644 --- a/src/tools/mesh_extractor/MPQ.cpp +++ b/src/tools/mesh_extractor/MPQ.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/MPQ.h b/src/tools/mesh_extractor/MPQ.h index 7eb048480b9..a5a9c7a77d8 100644 --- a/src/tools/mesh_extractor/MPQ.h +++ b/src/tools/mesh_extractor/MPQ.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/MPQManager.cpp b/src/tools/mesh_extractor/MPQManager.cpp index 5f6e4a331ac..cef6feb6427 100644 --- a/src/tools/mesh_extractor/MPQManager.cpp +++ b/src/tools/mesh_extractor/MPQManager.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/MPQManager.h b/src/tools/mesh_extractor/MPQManager.h index 588052bb844..43419269226 100644 --- a/src/tools/mesh_extractor/MPQManager.h +++ b/src/tools/mesh_extractor/MPQManager.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/MapChunk.cpp b/src/tools/mesh_extractor/MapChunk.cpp index 76280dcc973..d21815ebd8a 100644 --- a/src/tools/mesh_extractor/MapChunk.cpp +++ b/src/tools/mesh_extractor/MapChunk.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/MapChunk.h b/src/tools/mesh_extractor/MapChunk.h index 97adc790e94..47873178730 100644 --- a/src/tools/mesh_extractor/MapChunk.h +++ b/src/tools/mesh_extractor/MapChunk.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/MeshExtractor.cpp b/src/tools/mesh_extractor/MeshExtractor.cpp index 9af8b0bcc75..08afb93194b 100644 --- a/src/tools/mesh_extractor/MeshExtractor.cpp +++ b/src/tools/mesh_extractor/MeshExtractor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Model.cpp b/src/tools/mesh_extractor/Model.cpp index 48c60d9d644..ce9132bd4a3 100644 --- a/src/tools/mesh_extractor/Model.cpp +++ b/src/tools/mesh_extractor/Model.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Model.h b/src/tools/mesh_extractor/Model.h index 8f43b2963ea..31899ff2191 100644 --- a/src/tools/mesh_extractor/Model.h +++ b/src/tools/mesh_extractor/Model.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/ObjectDataHandler.cpp b/src/tools/mesh_extractor/ObjectDataHandler.cpp index d8308fc25d0..1f7c15fd872 100644 --- a/src/tools/mesh_extractor/ObjectDataHandler.cpp +++ b/src/tools/mesh_extractor/ObjectDataHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/ObjectDataHandler.h b/src/tools/mesh_extractor/ObjectDataHandler.h index dc57301563a..5f6674be488 100644 --- a/src/tools/mesh_extractor/ObjectDataHandler.h +++ b/src/tools/mesh_extractor/ObjectDataHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/TileBuilder.cpp b/src/tools/mesh_extractor/TileBuilder.cpp index 70d6c1b6c55..d9807603d53 100644 --- a/src/tools/mesh_extractor/TileBuilder.cpp +++ b/src/tools/mesh_extractor/TileBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/TileBuilder.h b/src/tools/mesh_extractor/TileBuilder.h index b88966190b0..815f9597d46 100644 --- a/src/tools/mesh_extractor/TileBuilder.h +++ b/src/tools/mesh_extractor/TileBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Utils.cpp b/src/tools/mesh_extractor/Utils.cpp index 1684ba0274d..3dcdd6598e5 100644 --- a/src/tools/mesh_extractor/Utils.cpp +++ b/src/tools/mesh_extractor/Utils.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/Utils.h b/src/tools/mesh_extractor/Utils.h index 267a32c27cd..fcdffe0f8f3 100644 --- a/src/tools/mesh_extractor/Utils.h +++ b/src/tools/mesh_extractor/Utils.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WDT.cpp b/src/tools/mesh_extractor/WDT.cpp index 593127e0d34..707a44611af 100644 --- a/src/tools/mesh_extractor/WDT.cpp +++ b/src/tools/mesh_extractor/WDT.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WDT.h b/src/tools/mesh_extractor/WDT.h index 55a1a9861ff..b0961c03ed5 100644 --- a/src/tools/mesh_extractor/WDT.h +++ b/src/tools/mesh_extractor/WDT.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WorldModelGroup.cpp b/src/tools/mesh_extractor/WorldModelGroup.cpp index 9d32a096592..71ca604a57f 100644 --- a/src/tools/mesh_extractor/WorldModelGroup.cpp +++ b/src/tools/mesh_extractor/WorldModelGroup.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WorldModelGroup.h b/src/tools/mesh_extractor/WorldModelGroup.h index cf98dc8768a..9ce5a11e07c 100644 --- a/src/tools/mesh_extractor/WorldModelGroup.h +++ b/src/tools/mesh_extractor/WorldModelGroup.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WorldModelHandler.cpp b/src/tools/mesh_extractor/WorldModelHandler.cpp index e3d8e81eeb9..b62f7f3435b 100644 --- a/src/tools/mesh_extractor/WorldModelHandler.cpp +++ b/src/tools/mesh_extractor/WorldModelHandler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WorldModelHandler.h b/src/tools/mesh_extractor/WorldModelHandler.h index 972dda0f5d8..fdb31a35c48 100644 --- a/src/tools/mesh_extractor/WorldModelHandler.h +++ b/src/tools/mesh_extractor/WorldModelHandler.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WorldModelRoot.cpp b/src/tools/mesh_extractor/WorldModelRoot.cpp index d9bc4e550b3..f75b2eead3e 100644 --- a/src/tools/mesh_extractor/WorldModelRoot.cpp +++ b/src/tools/mesh_extractor/WorldModelRoot.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mesh_extractor/WorldModelRoot.h b/src/tools/mesh_extractor/WorldModelRoot.h index 7fbc04d2b6d..1be2086b466 100644 --- a/src/tools/mesh_extractor/WorldModelRoot.h +++ b/src/tools/mesh_extractor/WorldModelRoot.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the diff --git a/src/tools/mmaps_generator/CMakeLists.txt b/src/tools/mmaps_generator/CMakeLists.txt index 8661c035c8e..48e30b1c3cf 100644 --- a/src/tools/mmaps_generator/CMakeLists.txt +++ b/src/tools/mmaps_generator/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/tools/mmaps_generator/IntermediateValues.cpp b/src/tools/mmaps_generator/IntermediateValues.cpp index 6c9abf719bb..3a7326ec34f 100644 --- a/src/tools/mmaps_generator/IntermediateValues.cpp +++ b/src/tools/mmaps_generator/IntermediateValues.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/IntermediateValues.h b/src/tools/mmaps_generator/IntermediateValues.h index 5933c0137f1..95a651a2df8 100644 --- a/src/tools/mmaps_generator/IntermediateValues.h +++ b/src/tools/mmaps_generator/IntermediateValues.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/MapBuilder.cpp b/src/tools/mmaps_generator/MapBuilder.cpp index 509321444ef..412ba7a0055 100644 --- a/src/tools/mmaps_generator/MapBuilder.cpp +++ b/src/tools/mmaps_generator/MapBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/MapBuilder.h b/src/tools/mmaps_generator/MapBuilder.h index 1d688ccfa77..ced03d1dde8 100644 --- a/src/tools/mmaps_generator/MapBuilder.h +++ b/src/tools/mmaps_generator/MapBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/PathCommon.h b/src/tools/mmaps_generator/PathCommon.h index 694e40dacde..9451e9d03ba 100644 --- a/src/tools/mmaps_generator/PathCommon.h +++ b/src/tools/mmaps_generator/PathCommon.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/PathGenerator.cpp b/src/tools/mmaps_generator/PathGenerator.cpp index c2ca184905e..992dee7d403 100644 --- a/src/tools/mmaps_generator/PathGenerator.cpp +++ b/src/tools/mmaps_generator/PathGenerator.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/TerrainBuilder.cpp b/src/tools/mmaps_generator/TerrainBuilder.cpp index 88b8555b488..8f85cfdbe83 100644 --- a/src/tools/mmaps_generator/TerrainBuilder.cpp +++ b/src/tools/mmaps_generator/TerrainBuilder.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/TerrainBuilder.h b/src/tools/mmaps_generator/TerrainBuilder.h index 6b692d6f3bf..e40b87a1781 100644 --- a/src/tools/mmaps_generator/TerrainBuilder.h +++ b/src/tools/mmaps_generator/TerrainBuilder.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/mmaps_generator/VMapExtensions.cpp b/src/tools/mmaps_generator/VMapExtensions.cpp index d9437f8bdee..63c8e524542 100644 --- a/src/tools/mmaps_generator/VMapExtensions.cpp +++ b/src/tools/mmaps_generator/VMapExtensions.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_assembler/CMakeLists.txt b/src/tools/vmap4_assembler/CMakeLists.txt index 14d5c5e61ba..29a83b8b7d3 100644 --- a/src/tools/vmap4_assembler/CMakeLists.txt +++ b/src/tools/vmap4_assembler/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2005-2009 MaNGOS project <http://getmangos.com/> -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/tools/vmap4_assembler/VMapAssembler.cpp b/src/tools/vmap4_assembler/VMapAssembler.cpp index 445d5b791d1..20fd101c4b4 100644 --- a/src/tools/vmap4_assembler/VMapAssembler.cpp +++ b/src/tools/vmap4_assembler/VMapAssembler.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/CMakeLists.txt b/src/tools/vmap4_extractor/CMakeLists.txt index 8b4164e6c8c..863b27ecbb6 100644 --- a/src/tools/vmap4_extractor/CMakeLists.txt +++ b/src/tools/vmap4_extractor/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2005-2009 MaNGOS project <http://getmangos.com/> -# Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> +# Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without diff --git a/src/tools/vmap4_extractor/adtfile.cpp b/src/tools/vmap4_extractor/adtfile.cpp index c1dee6c7339..e0c2f701f54 100644 --- a/src/tools/vmap4_extractor/adtfile.cpp +++ b/src/tools/vmap4_extractor/adtfile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/adtfile.h b/src/tools/vmap4_extractor/adtfile.h index 2877603f1ad..381a80144d2 100644 --- a/src/tools/vmap4_extractor/adtfile.h +++ b/src/tools/vmap4_extractor/adtfile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/dbcfile.cpp b/src/tools/vmap4_extractor/dbcfile.cpp index 5f0504ddcf8..dca549c398f 100644 --- a/src/tools/vmap4_extractor/dbcfile.cpp +++ b/src/tools/vmap4_extractor/dbcfile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/dbcfile.h b/src/tools/vmap4_extractor/dbcfile.h index 8ccfd979811..b4876904e3d 100644 --- a/src/tools/vmap4_extractor/dbcfile.h +++ b/src/tools/vmap4_extractor/dbcfile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/gameobject_extract.cpp b/src/tools/vmap4_extractor/gameobject_extract.cpp index e9603e8b3d1..637321d8ef4 100644 --- a/src/tools/vmap4_extractor/gameobject_extract.cpp +++ b/src/tools/vmap4_extractor/gameobject_extract.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/model.cpp b/src/tools/vmap4_extractor/model.cpp index 8cbc41d6c1b..3087809ddc5 100644 --- a/src/tools/vmap4_extractor/model.cpp +++ b/src/tools/vmap4_extractor/model.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/model.h b/src/tools/vmap4_extractor/model.h index 74df92efb3b..02d414c0743 100644 --- a/src/tools/vmap4_extractor/model.h +++ b/src/tools/vmap4_extractor/model.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/modelheaders.h b/src/tools/vmap4_extractor/modelheaders.h index ce951d75f78..3ee41a71d98 100644 --- a/src/tools/vmap4_extractor/modelheaders.h +++ b/src/tools/vmap4_extractor/modelheaders.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/vec3d.h b/src/tools/vmap4_extractor/vec3d.h index b53b1003483..a0c22729052 100644 --- a/src/tools/vmap4_extractor/vec3d.h +++ b/src/tools/vmap4_extractor/vec3d.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/vmapexport.cpp b/src/tools/vmap4_extractor/vmapexport.cpp index 7664e12375a..acdb9cb42e7 100644 --- a/src/tools/vmap4_extractor/vmapexport.cpp +++ b/src/tools/vmap4_extractor/vmapexport.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it @@ -148,7 +148,7 @@ bool ExtractWmo() std::getline(wmoList, str); if (str.empty()) break; - + wmos.insert(std::move(str)); } diff --git a/src/tools/vmap4_extractor/vmapexport.h b/src/tools/vmap4_extractor/vmapexport.h index e51938ea923..f105b3dd9d4 100644 --- a/src/tools/vmap4_extractor/vmapexport.h +++ b/src/tools/vmap4_extractor/vmapexport.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/wdtfile.cpp b/src/tools/vmap4_extractor/wdtfile.cpp index be83fc6008f..bfc7bd7e689 100644 --- a/src/tools/vmap4_extractor/wdtfile.cpp +++ b/src/tools/vmap4_extractor/wdtfile.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/wdtfile.h b/src/tools/vmap4_extractor/wdtfile.h index 3b3656b58eb..900af080914 100644 --- a/src/tools/vmap4_extractor/wdtfile.h +++ b/src/tools/vmap4_extractor/wdtfile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/wmo.cpp b/src/tools/vmap4_extractor/wmo.cpp index ff4522adacb..748c3ba6703 100644 --- a/src/tools/vmap4_extractor/wmo.cpp +++ b/src/tools/vmap4_extractor/wmo.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it diff --git a/src/tools/vmap4_extractor/wmo.h b/src/tools/vmap4_extractor/wmo.h index c027c356ef5..9028ad364b3 100644 --- a/src/tools/vmap4_extractor/wmo.h +++ b/src/tools/vmap4_extractor/wmo.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2011 MaNGOS <http://getmangos.com/> * * This program is free software; you can redistribute it and/or modify it |