{% extends "base_generic.html" %} {% block content %}

Getting Started

{% if user.is_authenticated %}

Beside this account you need a client to connect to the server. Get the client source from here: https://git.someserver.de/gesche/tibia-client

Follow the instructions there to compile, in general for linux systems with apt you need to install the requirements:

sudo apt-get install -y build-essential cmake git-core
sudo apt-get install -y libboost-all-dev libphysfs-dev libssl1.0-dev liblua5.1-0-dev
sudo apt-get install -y libglew-dev libvorbis-dev libopenal-dev zlib1g-dev

And build with:

git clone https://git.someserver.de/gesche/tibia-client.git
cd otclient && mkdir build && cd build && cmake -DUSE_STATIC_LIBS=OFF .. && make
./otclient

Finally, the client needs some files that contain the graphics and other static stuff for the server. Ask Gesche how to obtain them.

{% else %} Please log in to view this information. {% endif %} {% endblock %}