X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fmain.qh;h=e189601a7c467cf9f757616fbc9ada286c9d62ae;hb=5dc828e3b59c65f75c870d4a57e34c023cdbdb86;hp=2fde70481f6839c5199a9ba53565025b56e786b6;hpb=b508390bc38d446e441ec990a1d34851251bd2cb;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/main.qh b/qcsrc/server/main.qh index 2fde70481..e189601a7 100644 --- a/qcsrc/server/main.qh +++ b/qcsrc/server/main.qh @@ -1,5 +1,23 @@ #pragma once +float autocvar_g_balance_contents_damagerate; +float autocvar_g_balance_contents_drowndelay; +int autocvar_g_balance_contents_playerdamage_drowning; +int autocvar_g_balance_contents_playerdamage_lava; +int autocvar_g_balance_contents_playerdamage_lava_burn; // 10 is a nice value +float autocvar_g_balance_contents_playerdamage_lava_burn_time = 2.5; // note: damage is total across this time (not by dps) +int autocvar_g_balance_contents_playerdamage_slime; +int autocvar_g_balance_contents_projectiledamage; +float autocvar_g_balance_falldamage_deadminspeed; +float autocvar_g_balance_falldamage_factor; +int autocvar_g_balance_falldamage_maxdamage; +float autocvar_g_balance_falldamage_minspeed; +bool autocvar_g_balance_falldamage_onlyvertical; +#define autocvar_slowmo cvar("slowmo") +float autocvar_sys_ticrate; + +bool dropclient_schedule(entity this); + /** print(), but only print if the server is not local */ void dedicated_print(string input);