X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fcommand%2Fgetreplies.qh;h=0e419fdea3ca94a327d90843bbfeb7cdfa8380e6;hp=77da27219241db4d587b9304d9fc605aece1ca8e;hb=4dd3c23aa51dd6fe855d8c5d97126a12a372eb3b;hpb=387861a0bee1121b0869bfaf8cff5b703ffc1ad2 diff --git a/qcsrc/server/command/getreplies.qh b/qcsrc/server/command/getreplies.qh index 77da272192..0e419fdea3 100644 --- a/qcsrc/server/command/getreplies.qh +++ b/qcsrc/server/command/getreplies.qh @@ -1,12 +1,15 @@ +#ifndef GETREPLIES_H +#define GETREPLIES_H + // ====================================================== // Declarations for reply messages, re-worked by Samual // Last updated: December 30th, 2011 // ====================================================== // ladder bullshit todo -#define LADDER_FIRSTPOINT 100 +const int LADDER_FIRSTPOINT = 100; #define LADDER_CNT 10 // position X still gives LADDER_FIRSTPOINT/X points -#define LADDER_SIZE 30 // ladder shows the top X players +const int LADDER_SIZE = 30; // ladder shows the top X players string top_uids[LADDER_SIZE]; float top_scores[LADDER_SIZE]; @@ -17,3 +20,5 @@ string getrankings(void); string getladder(void); string getmaplist(void); string getlsmaps(void); +string getmonsterlist(void); +#endif