This commit is contained in:
Yehonal
2016-08-30 15:28:01 +02:00
26 changed files with 140 additions and 248 deletions

View File

@@ -1,44 +1,36 @@
# Copyright (C) sudo: required
# dist: trusty
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
language: cpp language: cpp
compiler:
- clang
git: git:
depth: 1 depth: 1
branches:
only:
- master
compiler:
- clang
- gcc ## Uncomment when we are up to full c++11 standards.
before_install: before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y - sudo apt-get -qq install build-essential libtool make cmake cmake-data openssl
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get -qq install libssl-dev libmysqlclient-dev libmysql++-dev libreadline6-dev zlib1g-dev libbz2-dev libace-dev
- sudo add-apt-repository 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.7 main' - sudo apt-get -qq install mysql-server
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - - git config user.email "travis@build.bot" && git config user.name "Travis CI"
- sudo apt-get update -qq - git tag -a -m "Travis build" init
- sudo apt-get install clang-3.7
- sudo apt-get install libace-dev install:
- sudo apt-get install libncurses5-dev - mysql -uroot -e 'create database test_mysql;'
- sudo apt-get install build-essential autoconf libtool make cmake git-core patch wget links zip unzip unrar - cd bin
- sudo apt-get install openssl libssl-dev mysql-server mysql-client libmysqlclient15-dev libmysql++-dev libreadline6-dev zlib1g-dev libbz2-dev - cmake ../ -DWITH_WARNINGS=1 -DWITH_COREDEBUG=0 -DUSE_COREPCH=1 -DUSE_SCRIPTPCH=1 -DTOOLS=0 -DSCRIPTS=1 -DSERVERS=1 -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=check_install
- if [ "$CXX" = "clang++" ]; then sudo apt-get install -qq libstdc++-4.8-dev; fi - cd ..
- if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.7" CC="clang-3.7"; fi
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
script: script:
- mkdir build - $CXX --version
- cd build - mysql -uroot < data/sql/create/create_mysql.sql
- cmake ../ -DSCRIPTS=1 -DTOOLS=1 - cat data/sql/base/db_auth/*.sql | mysql -uacore -pacore auth
- make -j8 - cat data/sql/base/db_characters/*.sql | mysql -uacore -pacore characters
- cat data/sql/base/db_world/*.sql | mysql -uacore -pacore world
- cat data/sql/updates/db_auth/*.sql | mysql -uacore -pacore auth
- cat data/sql/updates/db_characters/*.sql | mysql -uacore -pacore characters
- cat data/sql/updates/db_world/*.sql | mysql -uacore -pacore world
- mysql -uroot < data/sql/create/drop_mysql.sql
- cd bin
- make -j 8 -k && make install
- cd check_install/bin

View File

@@ -1,6 +1,7 @@
# ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore # ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore
[![Gitter](https://badges.gitter.im/azerothcore/azerothcore.svg)](https://gitter.im/azerothcore/azerothcore?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Bountysource](https://www.bountysource.com/badge/tracker?tracker_id=40032087)](https://www.bountysource.com/teams/azerothcore/bounties) [![Issue Stats](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk/badge/issue)](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk) [![Issue Stats](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk/badge/pr)](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk) [![Gitter](https://badges.gitter.im/azerothcore/azerothcore.svg)](https://gitter.im/azerothcore/azerothcore?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Bountysource](https://www.bountysource.com/badge/tracker?tracker_id=40032087)](https://www.bountysource.com/teams/azerothcore/bounties) [![Issue Stats](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk/badge/issue)](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk) [![Issue Stats](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk/badge/pr)](http://www.issuestats.com/github/AzerothCore/azerothcore-wotlk)
[![Master Build Status](https://travis-ci.org/azerothcore/azerothcore-wotlk.svg)](https://travis-ci.org/azerothcore/azerothcore)
## Introduction ## Introduction

View File

@@ -27,22 +27,25 @@ fi
function assemble() { function assemble() {
# to lowercase # to lowercase
database=$1 database=${1,,}
start_sql=$2 start_sql=$2
with_base=$3 with_base=$3
with_updates=$4 with_updates=$4
with_custom=$5 with_custom=$5
var_base="DB_"$database"_PATHS" uc=${database^^}
base=${!var_base}
var_updates="DB_"$database"_UPDATE_PATHS" name="DB_"$uc"_PATHS"
updates=${!var_updates} v="$name[@]"
base=("${!v}")
var_custom="DB_"$database"_CUSTOM_PATHS" name="DB_"$uc"_UPDATE_PATHS"
custom=${!var_custom} v="$name[@]"
updates=("${!v}")
echo $updates name='DB_'$uc'_CUSTOM_PATHS'
v="$name[@]"
custom=("${!v}")
suffix_base="_base" suffix_base="_base"
@@ -95,11 +98,12 @@ function assemble() {
n="registry__$hash" n="registry__$hash"
if [[ -z ${!n} ]]; then if [[ -z ${!n} ]]; then
if [ ! -e $updFile ]; then if [ ! -e $updFile ]; then
echo "" > $updFile echo "-- assembled updates" > $updFile
fi fi
printf -v "registry__${hash}" %s "$file" printf -v "registry__${hash}" %s "$file"
echo "-- New update sql: "$file echo "-- New update sql: "$file
echo "-- $file"
cat "$entry" >> $updFile cat "$entry" >> $updFile
fi fi
done done
@@ -109,7 +113,7 @@ function assemble() {
fi fi
if [ $with_custom = true ]; then if [ $with_custom = true ]; then
custFile=$OUTPUT_FOLDER$database$suffix_custom"_"$curTime".sql" custFile=$OUTPUT_FOLDER$database$suffix_custom".sql"
if [ ! ${#custom[@]} -eq 0 ]; then if [ ! ${#custom[@]} -eq 0 ]; then
echo "Generating $OUTPUT_FOLDER$database$suffix_custom ..." echo "Generating $OUTPUT_FOLDER$database$suffix_custom ..."
@@ -124,19 +128,12 @@ function assemble() {
continue continue
fi fi
file=$(basename "$entry") if [[ ! -e $custFile ]]; then
hash=$($MD5_CMD "$entry") echo "-- assembled custom" > "$custFile"
hash="${hash%% *}" #remove file path
n="registry__$hash"
if [[ -z ${!n} ]]; then
if [ ! -e $custFile ]; then
echo "" > $custFile
fi
printf -v "registry__${hash}" %s "$file"
echo "-- New custom sql: "$file
cat "$entry" >> $custFile
fi fi
echo "-- $file" >> $custFile
cat "$entry" >> $custFile
done done
fi fi
done done
@@ -145,24 +142,24 @@ function assemble() {
} }
function run() { function run() {
echo "===== STARTING PROCESS =====" echo "===== STARTING PROCESS ====="
mkdir -p $OUTPUT_FOLDER mkdir -p $OUTPUT_FOLDER
for db in ${DATABASES[@]} for db in ${DATABASES[@]}
do do
assemble "$db" $version".sql" $1 $2 $3 assemble "$db" $version".sql" $1 $2 $3
done done
echo "" > $reg_file echo "" > $reg_file
for k in ${!registry__*} for k in ${!registry__*}
do do
n=$k n=$k
echo "$k='${!n}';" >> "$reg_file" echo "$k='${!n}';" >> "$reg_file"
done done
echo "===== DONE =====" echo "===== DONE ====="
} }
PS3='Please enter your choice: ' PS3='Please enter your choice: '
@@ -182,11 +179,11 @@ do
run false true false run false true false
break #avoid loop break #avoid loop
;; ;;
"Create only customs") "Create only customs")
run false false true run false false true
break #avoid loop break #avoid loop
;; ;;
"Clean registry") "Clean registry")
rm "$reg_file" rm "$reg_file"
break #avoid loop break #avoid loop
;; ;;

View File

@@ -89,7 +89,7 @@ function import() {
echo "DROP PROCEDURE IF EXISTS \`updateDb\`;" >> "$newFile"; echo "DROP PROCEDURE IF EXISTS \`updateDb\`;" >> "$newFile";
fi; fi;
#rm $entry; rm $entry;
oldDate=$dateToday oldDate=$dateToday
oldCnt=$cnt oldCnt=$cnt

0
bin/runners/run-engine Executable file → Normal file
View File

View File

@@ -0,0 +1,13 @@
GRANT USAGE ON * . * TO 'acore'@'localhost' IDENTIFIED BY 'acore' WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 ;
CREATE DATABASE `world` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE DATABASE `characters` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE DATABASE `auth` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
GRANT ALL PRIVILEGES ON `world` . * TO 'acore'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `characters` . * TO 'acore'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON `auth` . * TO 'acore'@'localhost' WITH GRANT OPTION;

View File

@@ -0,0 +1,21 @@
REVOKE ALL PRIVILEGES ON * . * FROM 'acore'@'localhost';
REVOKE ALL PRIVILEGES ON `world` . * FROM 'acore'@'localhost';
REVOKE GRANT OPTION ON `world` . * FROM 'acore'@'localhost';
REVOKE ALL PRIVILEGES ON `characters` . * FROM 'acore'@'localhost';
REVOKE GRANT OPTION ON `characters` . * FROM 'acore'@'localhost';
REVOKE ALL PRIVILEGES ON `auth` . * FROM 'acore'@'localhost';
REVOKE GRANT OPTION ON `auth` . * FROM 'acore'@'localhost';
DROP USER 'acore'@'localhost';
DROP DATABASE IF EXISTS `world`;
DROP DATABASE IF EXISTS `characters`;
DROP DATABASE IF EXISTS `auth`;

View File

@@ -1,3 +1,3 @@
ALTER TABLE version_db_database CHANGE COLUMN 2016_08_25_00 2016_08_26_00 bit; ALTER TABLE version_db_world CHANGE COLUMN 2016_08_25_00 2016_08_26_00 bit;
DELETE FROM command WHERE name IN ('npc evade', 'debug send chatmessage'); DELETE FROM command WHERE name IN ('npc evade', 'debug send chatmessage');

0
data/sql/updates/pending_db_auth/create_sql.sh Normal file → Executable file
View File

0
data/sql/updates/pending_db_characters/create_sql.sh Normal file → Executable file
View File

View File

@@ -0,0 +1,11 @@
/*
Issue: Not work quest id 10990 10991 10992 #114
NPCs spawns are inside the Gobjs
*/
UPDATE gameobject_template SET AIName="SmartGameObjectAI", ScriptName = "" /*go_shrine_of_the_birds*/ WHERE entry IN (185551,185547,185553);
DELETE FROM smart_scripts WHERE entryorguid IN (185551,185547,185553) AND source_type=1;
INSERT INTO smart_scripts VALUES
(185551,1,0,0,70,0,100,0,2,0,0,0,12,22992,7,60000,0,0,0,7,0,0,0,0,0,0,0,"Hawk Shrine - On Activate - Summon Creature 22992"),
(185547,1,0,0,70,0,100,0,2,0,0,0,12,22993,7,60000,0,0,0,7,0,0,0,0,0,0,0,"Eagle Shrine - On Gossip Hello - Summon Creature 22993"),
(185553,1,0,0,70,0,100,0,2,0,0,0,12,22994,7,60000,0,0,0,7,0,0,0,0,0,0,0,"Hawk Shrine - On Gossip Hello - Summon Creature 22994");

0
data/sql/updates/pending_db_world/create_sql.sh Normal file → Executable file
View File

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "MoveSpline.h" #include "MoveSpline.h"

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef TRINITYSERVER_MOVEPLINE_H #ifndef TRINITYSERVER_MOVEPLINE_H

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef TRINITYSERVER_MOVESPLINEFLAG_H #ifndef TRINITYSERVER_MOVESPLINEFLAG_H

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "MoveSplineInit.h" #include "MoveSplineInit.h"

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef TRINITYSERVER_MOVESPLINEINIT_H #ifndef TRINITYSERVER_MOVESPLINEINIT_H

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef TRINITYSERVER_MOVESPLINEINIT_ARGS_H #ifndef TRINITYSERVER_MOVESPLINEINIT_ARGS_H

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "MovementPacketBuilder.h" #include "MovementPacketBuilder.h"

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef TRINITYSERVER_PACKET_BUILDER_H #ifndef TRINITYSERVER_PACKET_BUILDER_H

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef TRINITYSERVER_TYPEDEFS_H #ifndef TRINITYSERVER_TYPEDEFS_H

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "MoveSplineFlag.h" #include "MoveSplineFlag.h"

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#include "Spline.h" #include "Spline.h"

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef TRINITYSERVER_SPLINE_H #ifndef TRINITYSERVER_SPLINE_H

View File

@@ -1,18 +1,7 @@
/* /*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2 * Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-GPL2
* This program is free software; you can redistribute it and/or modify * Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
* it under the terms of the GNU General Public License as published by * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
namespace Movement namespace Movement

View File

@@ -448,7 +448,7 @@ public:
/*###### /*######
## go_shrine_of_the_birds ## go_shrine_of_the_birds
######*/ ######*/
/*
enum ShrineOfTheBirds enum ShrineOfTheBirds
{ {
NPC_HAWK_GUARD = 22992, NPC_HAWK_GUARD = 22992,
@@ -490,7 +490,7 @@ public:
return false; return false;
} }
}; };
*/
/*###### /*######
## go_southfury_moonstone ## go_southfury_moonstone
######*/ ######*/
@@ -1182,7 +1182,7 @@ void AddSC_go_scripts()
// Theirs // Theirs
new go_cat_figurine(); new go_cat_figurine();
new go_gilded_brazier(); new go_gilded_brazier();
new go_shrine_of_the_birds(); //new go_shrine_of_the_birds();
new go_southfury_moonstone(); new go_southfury_moonstone();
new go_tablet_of_madness(); new go_tablet_of_madness();
new go_tablet_of_the_seven(); new go_tablet_of_the_seven();