X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fcommand%2Fgetreplies.qh;h=7b436079227f47c1d1621cb891b5bd87400122c0;hb=9215008d87f1170da32befded6baeb55f3a2cf13;hp=4a804309118d1bb5dd084647a9c38444d8950749;hpb=971eb36c4ccfde80cd46767b0c20e2d97350821e;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/command/getreplies.qh b/qcsrc/server/command/getreplies.qh index 4a8043091..7b4360792 100644 --- a/qcsrc/server/command/getreplies.qh +++ b/qcsrc/server/command/getreplies.qh @@ -1,20 +1,22 @@ +#pragma once + // ====================================================== // Declarations for reply messages, re-worked by Samual // Last updated: December 30th, 2011 // ====================================================== // ladder bullshit todo -const float LADDER_FIRSTPOINT = 100; -const float LADDER_CNT = 10; // position X still gives LADDER_FIRSTPOINT/X points -const float LADDER_SIZE = 30; // ladder shows the top X players +const int LADDER_FIRSTPOINT = 100; +#define LADDER_CNT 10 // position X still gives LADDER_FIRSTPOINT/X points +const int LADDER_SIZE = 30; // ladder shows the top X players string top_uids[LADDER_SIZE]; float top_scores[LADDER_SIZE]; // allow functions to be used in other code like g_world.qc and race.qc string getrecords(float page); -string getrankings(void); -string getladder(void); -string getmaplist(void); -string getlsmaps(void); -string getmonsterlist(void); +string getrankings(); +string getladder(); +string getmaplist(); +string getlsmaps(); +string getmonsterlist();