Post
Topic
Board Meta
Merits 6 from 2 users
Re: Interested in the old trust system?
by
o_e_l_e_o
on 14/06/2019, 22:52:32 UTC
⭐ Merited by TMAN (5) ,Vod (1)
Not sure how useful the old score will be going forward. In lieu of obvious scammer accounts being red tagged multiple times by multiple users, they are now likely to simply have multiple users supporting a flag on them, and end up with much less overall red trust, which will obviously massively impact their score.

Having said that, here is what you are looking for:

I also completely changed the trust score algorithm to this:
Code:
if there are no negative ratings
score = 0
for each rating, oldest to newest
if this rater has already been counted
continue
score += min(10, round_up(months since rating))
else
score = unique_positive - 2^(unique_negative)
if score >= 0
start_time = time of first negative
score = unique_positive since start_time - unique_negative since start_time
if(score < 0)
return ??? (orange)

move score to range [-9999,9999]
return score

Edit: Suchie beat me while I was typing. Cheesy