X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fcommand%2Fgetreplies.qh;h=0e419fdea3ca94a327d90843bbfeb7cdfa8380e6;hb=f260e137aa3c5096e704f5e0a969ad69c079d884;hp=77da27219241db4d587b9304d9fc605aece1ca8e;hpb=265b681e0fb49239df1bfc431a903f66244a3172;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/command/getreplies.qh b/qcsrc/server/command/getreplies.qh index 77da27219..0e419fdea 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