|
@@ -0,0 +1,31 @@
|
|
1
|
+{% extends "base_generic.html" %}
|
|
2
|
+
|
|
3
|
+{% block content %}
|
|
4
|
+<h2 class="tibia-headline">Getting Started</h2>
|
|
5
|
+
|
|
6
|
+{% if user.is_authenticated %}
|
|
7
|
+ <p>
|
|
8
|
+ Beside this account you need a client to connect to the server.
|
|
9
|
+ Get the client source from here:
|
|
10
|
+ <a href="https://git.someserver.de/gesche/tibia-client">https://git.someserver.de/gesche/tibia-client</a>
|
|
11
|
+ </p>
|
|
12
|
+ <p>Follow the instructions there to compile, in general for linux systems with apt you need to install the requirements:</p>
|
|
13
|
+
|
|
14
|
+ sudo apt-get install -y build-essential cmake git-core <br>
|
|
15
|
+ sudo apt-get install -y libboost-all-dev libphysfs-dev libssl1.0-dev liblua5.1-0-dev <br>
|
|
16
|
+ sudo apt-get install -y libglew-dev libvorbis-dev libopenal-dev zlib1g-dev <br>
|
|
17
|
+ <br>
|
|
18
|
+ <p>And build with:</p>
|
|
19
|
+
|
|
20
|
+ git clone https://git.someserver.de/gesche/tibia-client.git <br>
|
|
21
|
+ cd otclient && mkdir build && cd build && cmake -DUSE_STATIC_LIBS=OFF .. && make <br>
|
|
22
|
+ ./otclient <br>
|
|
23
|
+
|
|
24
|
+ <br>
|
|
25
|
+ <p>Finally, the client needs some files that contain the graphics and other static stuff for the server.
|
|
26
|
+ Ask Gesche how to obtain them.</p>
|
|
27
|
+{% else %}
|
|
28
|
+ Please log in to view this information.
|
|
29
|
+{% endif %}
|
|
30
|
+
|
|
31
|
+{% endblock %}
|