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
9const int LADDER_FIRSTPOINT = 100;
10#define LADDER_CNT 10       // position X still gives LADDER_FIRSTPOINT/X points
11const int LADDER_SIZE = 30; // ladder shows the top X players
12
13string top_uids[LADDER_SIZE];
14float top_scores[LADDER_SIZE];
15
16// allow functions to be used in other code like g_world.qc and race.qc
17string getrecords(float page);
18string getrankings();
19string getladder();
20string getmaplist();
21string getlsmaps();
22string getmonsterlist();
23