// frags f: take from cvar * f
// frags 0: no frags
+.float float_score;
void kh_Scores_Event(entity player, entity key, string what, float frags_player, float frags_owner) // update the score when a key is captured
{
string s;
return;
if(frags_player)
- GameRules_scoring_add_team(player, SCORE, frags_player);
+ GameRules_scoring_add_team_float2int(player, SCORE, frags_player, float_score, 1);
if(key && key.owner && frags_owner)
- GameRules_scoring_add_team(key.owner, SCORE, frags_owner);
+ GameRules_scoring_add_team_float2int(key.owner, SCORE, frags_owner, float_score, 1);
if(!autocvar_sv_eventlog) //output extra info to the console or text file
return;
void DistributeEvenly_Init(float amount, float totalweight)
{
if (DistributeEvenly_amount)
- {
- LOG_TRACE("DistributeEvenly_Init: UNFINISHED DISTRIBUTION (", ftos(DistributeEvenly_amount), " for ", ftos(DistributeEvenly_totalweight), " left!)");
- }
- if (totalweight == 0) DistributeEvenly_amount = 0;
- else DistributeEvenly_amount = amount;
+ LOG_TRACE("DistributeEvenly_Init: UNFINISHED DISTRIBUTION (", ftos(DistributeEvenly_amount),
+ " for ", ftos(DistributeEvenly_totalweight), " left!)");
+ DistributeEvenly_amount = (totalweight) ? amount : 0;
DistributeEvenly_totalweight = totalweight;
}
ERASEABLE
float DistributeEvenly_Get(float weight)
{
- float f;
- if (weight <= 0) return 0;
- f = floor(0.5 + DistributeEvenly_amount * weight / DistributeEvenly_totalweight);
+ if (weight <= 0)
+ return 0;
+ float f = DistributeEvenly_amount * weight / DistributeEvenly_totalweight;
+ DistributeEvenly_totalweight -= weight;
+ DistributeEvenly_amount -= f;
+ return f;
+}
+
+ERASEABLE
+float DistributeEvenly_GetRounded(float weight)
+{
+ if (weight <= 0)
+ return 0;
+ float f = floor(0.5 + DistributeEvenly_amount * weight / DistributeEvenly_totalweight);
DistributeEvenly_totalweight -= weight;
DistributeEvenly_amount -= f;
return f;
ERASEABLE
float DistributeEvenly_GetRandomized(float weight)
{
- float f;
- if (weight <= 0) return 0;
- f = floor(random() + DistributeEvenly_amount * weight / DistributeEvenly_totalweight);
+ if (weight <= 0)
+ return 0;
+ float f = floor(random() + DistributeEvenly_amount * weight / DistributeEvenly_totalweight);
DistributeEvenly_totalweight -= weight;
DistributeEvenly_amount -= f;
return f;