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