https://github.com/denniseffing/titanium-server
Private Tibia server of Titanium World
https://github.com/denniseffing/titanium-server
Last synced: 6 months ago
JSON representation
Private Tibia server of Titanium World
- Host: GitHub
- URL: https://github.com/denniseffing/titanium-server
- Owner: denniseffing
- License: gpl-2.0
- Created: 2018-09-28T19:27:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-29T18:18:37.000Z (over 6 years ago)
- Last Synced: 2025-01-23T07:46:06.955Z (about 1 year ago)
- Language: C++
- Homepage:
- Size: 23.2 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Titanium World [](https://travis-ci.com/denniseffing/titanium-server)
Titanium world is a private Tibia server.
The server is based on an earlier version of [opentibia/server](https://github.com/opentibia/server) which targets Tibia 7.6.
Credits go to the developers of the opentibia project.
This repo contains changes to compile and run the server on Linux and introduces a small CI pipeline and docker containerization.
If you are here to report a bug, head over to the issue tracker and create an issue.
## Developer guide
Pull requests are welcome at any time.
So if you want to contribute, please read the following instructions.
#### Prerequisites
- Use Linux
- Install the dependencies.
```bash
apt-get install libgmp3-dev libboost-thread-dev libboost-regex-dev libboost-system-dev \
libboost-filesystem-dev liblua5.1-dev libxml2-dev liblzma-dev zlib1g-dev libticonv-dev
```
#### Compile
Run the following commands to compile the source code.
```bash
cmake -DCMAKE_BUILD_TYPE=Performance -DUSE_MYSQL=Off
make
```