Skip to content

Commit

Permalink
Release: OTX Server 3.2 - "PHANTOM" - (8.6 - 8.70/72 - 10.90)
Browse files Browse the repository at this point in the history
Update all files from old protocols from 10.90
  • Loading branch information
mattyx14 committed Jan 19, 2016
1 parent 2885dbd commit 73b5e14
Show file tree
Hide file tree
Showing 547 changed files with 8,037 additions and 3,633 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
The Forgotten Server Version: 1.2

Codenamed
BOOM
PHANTOM

Forum and website
http://www.blacktibia.org/f19-otx-server-3
Expand Down Expand Up @@ -59,7 +59,7 @@
- Look Display
]

[ OTX Server 3.2 Version - " "
[ OTX Server 3.2 Version - "PHANTOM"
- Added Monster Spawn event
- Added DDoS protection (no complete)
- Added Advance Save
Expand Down
4 changes: 0 additions & 4 deletions path_10_9/data/logs/DarkKonia commands.log

This file was deleted.

10 changes: 0 additions & 10 deletions path_10_9/data/npc/Nimral.xml

This file was deleted.

9 changes: 0 additions & 9 deletions path_10_9/data/npc/Timral.xml

This file was deleted.

4 changes: 2 additions & 2 deletions path_10_9/data/talkactions/talkactions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@
<talkaction words="/gotopos" separator=" " script="teleport_to_pos.lua" />

<!-- player talkactions -->
<talkaction words="!buypremium" script="buyprem.lua" />
<talkaction words="!buyhouse" script="buyhouse.lua" />
<talkaction words="!leavehouse" script="leavehouse.lua" />
<talkaction words="!changesex" script="changesex.lua" />
<talkaction words="!uptime" script="uptime.lua" />
<talkaction words="!deathlist" script="deathlist.lua" />
<talkaction words="!kills" script="kills.lua" />
<talkaction words="!online" script="online.lua" />
<talkaction words="!serverinfo" script="serverinfo.lua" />

<!-- No workd
<talkaction words="!buypremium" script="buyprem.lua" />
<talkaction words="!changesex" script="changesex.lua" />
<talkaction words="!addon" script="addon.lua" />
<talkaction words="!z" separator=" " script="magiceffect.lua" />
Expand Down
4 changes: 2 additions & 2 deletions path_10_9/src/definitions.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
#define STATUS_SERVER_NAME "OTX Server"
#define STATUS_SERVER_VERSION "3"
#define MINOR_VERSION "2"
#define REVISION_VERSION "-"
#define SOFTWARE_CODENAME "The Second"
#define REVISION_VERSION "408"
#define SOFTWARE_CODENAME "PHANTOM"
#define STATUS_SERVER_DEVELOPERS "Mattyx14 and TFS Developers"
#define GIT_REPO "https://github.com/mattyx14/otxserver/"

Expand Down
1 change: 1 addition & 0 deletions path_8_6/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ ipch/
*.aps
*.ncb
*.opensdf
*.opendb
*.sdf
*.cachefile

Expand Down
30 changes: 20 additions & 10 deletions path_8_6/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
sudo: required
dist: trusty
language: cpp
compiler: gcc
compiler:
- clang
- gcc
env:
- LUAJIT=OFF
- LUAJIT=ON
cache: apt
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo add-apt-repository ppa:apokluda/boost1.53 -y
- sudo apt-get update -qq
- 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
install: sudo apt-get install libboost1.53-dev libboost-system1.53-dev liblua5.2-dev libgmp3-dev libmysqlclient-dev
before_script: mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release ..
script: make
addons:
apt:
packages:
- libboost-dev
- libboost-system-dev
- liblua5.2-dev
- libluajit-5.1-dev
- libmysqlclient-dev
before_script:
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=Release -DUSE_LUAJIT=${LUAJIT} ..
script: make -j2
8 changes: 5 additions & 3 deletions path_8_6/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@ include(FindCXX11)

# Find packages.
find_package(GMP REQUIRED)
find_package(MySQL)
find_package(LuaJIT)
find_package(MySQL)
find_package(Threads)

if (LUAJIT_FOUND)
add_definitions(-D__LUAJIT__)
option(USE_LUAJIT "Use LuaJIT" ${LUAJIT_FOUND})

if(USE_LUAJIT)
find_package(LuaJIT REQUIRED)
if(APPLE)
set(CMAKE_EXE_LINKER_FLAGS "-pagezero_size 10000 -image_base 100000000")
endif()
Expand Down
Loading

0 comments on commit 73b5e14

Please sign in to comment.