]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/command/getreplies.qh
Merge branch 'martin-t/misc' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / command / getreplies.qh
1 #pragma once
2
3 // ======================================================
4 //  Declarations for reply messages, re-worked by Samual
5 //  Last updated: December 30th, 2011
6 // ======================================================
7
8 // ladder bullshit todo
9 const int LADDER_FIRSTPOINT = 100;
10 #define LADDER_CNT 10       // position X still gives LADDER_FIRSTPOINT/X points
11 const int LADDER_SIZE = 30; // ladder shows the top X players
12
13 string top_uids[LADDER_SIZE];
14 float top_scores[LADDER_SIZE];
15
16 // allow functions to be used in other code like g_world.qc and race.qc
17 string getrecords(float page);
18 string getrankings();
19 string getladder();
20 string getmaplist();
21 string getlsmaps();
22 string getmonsterlist();