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:
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.
