_Nisa_ wrote: ↑Mon Feb 26, 2018 15:31
I am interested in the stats algorithm in
https://unfreeze.fpsclasico.de
It seems to favor players with a lot of playing hours (like me) over players with higher efficiency. Can you open up the algorithm? One should naively expect someone with a high kill/death ratio be much higher in the ranking than someone who cluelessly roams around day after day and never hits anything (like me).
To be honest, based on my experience and success (and the lack thereof) in the servers, I would expect myself to be in the 100th place, not in the top 30 LOL
ok, finally yesterday while I was fixing a bunch of links at the stats site and noting that lately the rank was basically broken altogether (there was
way too many people on top positions that shouldn't be there, people avoiding games/teams/enemies just for the rank, many people largely over/under rated, embarrassing +3000 elo ratings and probably much more) I came across this issue and dug that stats algorithm people always wondered about and tweaked it in such a way that just by looking at the rank now, I believe that now everything actually makes sense all of the sudden.
so coming to your question the
original verified stats algorithm is as follows:
Code: Select all
KillerSkill += weaponFactor * victim_based_skill_no
VictimSkill -= victim_based_skill_no
where:
victim_based_skill_no = victimSkill * skillset_fraction
with:
skillset_fraction = 1/1000.0
and weaponFactor:
GAUNTLET = 1.5
MACHINEGUN = 1.0
SHOTGUN = 1.0
GRENADE = 1.5
GRENADE_SPLASH = 1.0
ROCKET = 1.25
ROCKET_SPLASH = 1.0
LIGHTNING = 1.25
PLASMA = 1.25
PLASMA_SPLASH = 1.0
RAILGUN = 1.5
------------------------------------------------------------------------------
ex: player with skill 1400 kill player with skill 1600 with a direct rocket
killer player new skill is 1402 (1400+1600/1000*1.25)
victim player new skill is 1598.4 (1600-1600/1000)
by looking at the code it really surprised me that there was different skill factors depending on the method of death, for the most part I agree with that (it actually makes sense to reward more a direct hit with a rocket than a indirect one and it's also one of the factors that largely explains why you was so overrated as now that there's awards report it turns out you're number 1 plasma killer which has a skill factor of 1.25) except for one, the railgun factor. I believe that for regular Quake III Arena that could apply (as the railgun resources are very limited and furthermore there's
no lag compensation) but for this particular mode where railgun resources are virtually unlimited (to some extend) and there's actually lag compensation is clearly
way too much overrated, therefore I reduced the railgun factor to even out a bit the game.
you're going to excuse me here but I won't particularly disclose the exact modifications I made to the rank algorithm for the very same reasons I didn't provide you with the server files, this is, in order to avoid that toxic brain death people (
not you) just come here and "copy" (
steal) the whole thing but I can at least tell you that in addition I made the victim skill influence on the algorithm square instead of linear (in normal words I increased the influence of this factor in the algorithm) in order to yield more realistic results (just as a example
Magnus Carlsen dedicated elo is in the 2800 range, have people with +3000 elos at a public skirmish like this is plain non sense) and reduce (to some extend) that people
intentionally exploit the algorithm by inflating their rank playing lower skill opponents/easier rooms as it was frequently the case lately. now most of the skill points will be distributed at peak times when the most skilled players play and it will be harder to inflate it by over/exploiting play it.
so that's it, I hope that this time at least I fully answered your question (as well as many other people, this has always been frequently asked) and sorry for the delay hehe as you could see I've had plenty of other stuff to deal with here before I could come to this so now that's it. looking at it now I feel like it turned out great in my opinion

now for example your rank just lowered from your initial top 30 in the 50's range which is much more meaningful and it's even around the range I had foreseen for you at my second second post
here
also as mentioned on this post I patched yesterday the awards report at the rank site that was broken from the start and that I'm still working around it but well that's a story for the usual stats and rank thread not here, so see you for now and have fun
