X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fdefs.qh;h=d4aace83b73be41a7c854f23818a4e6040cdb423;hb=2300937585fd409c578a516ed5e051ba389646d4;hp=29374036cf4c4d5e7007b1d261ef1e2166e73563;hpb=35528e99ccad9a20fbd6eed640a5bc1bda884acd;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/defs.qh b/qcsrc/server/defs.qh index 29374036c..d4aace83b 100644 --- a/qcsrc/server/defs.qh +++ b/qcsrc/server/defs.qh @@ -55,7 +55,7 @@ float server_is_dedicated; .float inactive; // Clientwall disappears when inactive .float alpha_max, alpha_min; .float fade_start, fade_end, fade_vertical_offset; -.float default_solid; // Variable to store default self.solid for clientwalls +.float default_solid; // Variable to store default .solid for clientwalls .float pain_finished; //Added by Supajoe .float pain_frame; //" @@ -77,7 +77,7 @@ float server_is_dedicated; .float fade_time; .float fade_rate; -void() player_setupanimsformodel; +void player_setupanimsformodel(entity this); .string mdl; @@ -130,7 +130,7 @@ const float MAX_DAMAGEEXTRARADIUS = 16; // WEAPONTODO .float autoswitch; -bool client_hasweapon(entity cl, Weapon wpn, float andammo, bool complain); +bool client_hasweapon(entity this, Weapon wpn, float andammo, bool complain); void w_clear(Weapon thiswep, entity actor, .entity weaponentity, int fire); void w_ready(Weapon thiswep, entity actor, .entity weaponentity, int fire); // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies) @@ -155,7 +155,7 @@ float alreadychangedlevel; float blockSpectators; //if set, new or existing spectators or observers will be removed unless they become a player within g_maxplayers_spectator_blocktime seconds .float spectatortime; //point in time since the client is spectating or observing -void checkSpectatorBlock(); +void checkSpectatorBlock(entity this); float game_completion_ratio; // 0 at start, 1 near end .float winning; @@ -179,7 +179,6 @@ bool nJoinAllowed(entity this, entity ignore); float default_player_alpha; float default_weapon_alpha; -.float() customizeentityforclient; .float cvar_cl_handicap; .float cvar_cl_clippedspectating; .float cvar_cl_autoscreenshot; @@ -254,6 +253,8 @@ float lockteams; .float parm_idlesince; float sv_maxidle; float sv_maxidle_spectatorsareidle; +int sv_maxidle_slots; +bool sv_maxidle_slots_countbots; float tracebox_hits_trigger_hurt(vector start, vector mi, vector ma, vector end); @@ -303,7 +304,7 @@ void SUB_DontUseTargets(entity this, entity actor, entity trigger); void SUB_UseTargets(entity this, entity actor, entity trigger); .void(entity this) reset; // if set, an entity is reset using this -.void() reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities) +.void(entity this) reset2; // if set, an entity is reset using this (after calling ALL the reset functions for other entities) void ClientData_Touch(entity e); @@ -406,9 +407,9 @@ const float ACTIVE_TOGGLE = 3; .float stat_respawn_time = _STAT(RESPAWN_TIME); // shows respawn time, and is negative when awaiting respawn -void PlayerUseKey(); +void PlayerUseKey(entity this); -USING(spawn_evalfunc_t, vector(entity player, entity spot, vector current)); +USING(spawn_evalfunc_t, vector(entity this, entity player, entity spot, vector current)); .spawn_evalfunc_t spawn_evalfunc; string modname; @@ -441,5 +442,5 @@ const int MIF_GUIDED_CONFUSABLE = MIF_GUIDED_HEAT | MIF_GUIDED_AI; .string cvar_cl_physics; -.float init_for_player_needed; -.void(entity) init_for_player; +.bool init_for_player_needed; +.void(entity this, entity player) init_for_player;