From the "MFC Assistant v.1" thread, here is the ACF Score !
First thanks to Kradek for implementing my idea !
More tokens @ MFC is good, so more postings @ ACF is also good !!! Your base ACF Score is your average postings a day * 1000. Then 2 corrections are applied:
Correction 1 - What is the quality of your postings !
- If you get more thanks then you do posting, your score goes up.
- if you get less thanks than you do postings, your score goes down.
Correction 2 - Are you social ?
- If you give more thanks then you receive thanks, your score goes up.
- If you give less thanks then you receive thanks, your score goes down.
Here are some of the current results
@Kradek, can you generate a list like above? So that everybody is included, I have now picked The Usual Suspects and sorted it manually.
First thanks to Kradek for implementing my idea !
More tokens @ MFC is good, so more postings @ ACF is also good !!! Your base ACF Score is your average postings a day * 1000. Then 2 corrections are applied:
Correction 1 - What is the quality of your postings !
- If you get more thanks then you do posting, your score goes up.
- if you get less thanks than you do postings, your score goes down.
Correction 2 - Are you social ?
- If you give more thanks then you receive thanks, your score goes up.
- If you give less thanks then you receive thanks, your score goes down.
Here are some of the current results
Code:
score base quality social
----- ---- ------- ------
JoleleJolene 8206 4708 1.88 0.93
SophiaLocke 4916 1345 1.37 2.65
blackxrose 5553 7881 0.51 1.38
sxycherrypie 4382 8750 0.24 2.08
Jupiter551 3962 11688 0.52 0.65
AedanRayne 3167 1791 1.58 1.12
AmberCutie 3057 9079 1.12 0.30
LadyLuna 2660 3936 0.74 0.92
PokerBabe 2613 1784 0.98 1.50
Nording 2587 2781 0.56 1.66
ohmystarz 2290 1678 1.12 1.22
LilyMarie 1979 3384 0.69 0.85
schlmoe 1766 2283 0.82 0.94
Jessi 1741 3822 0.92 0.50
LacieLaPlante 1497 1810 1.50 0.55
Bocefish 1236 5044 0.53 0.47
Miss_Loliepop 1123 2145 1.44 0.36
Frankie 1066 3623 0.70 0.42
AlexLady 768 5978 0.47 0.27
Kradek 393 1032 1.00 0.38
SoTxBob 392 1069 0.78 2.85
RedHerby 386 961 0.60 0.67
bawksy 27 2019 0.97 0.01
Code:
var acfScore = (avgPostsPerDay * 1000) * (avgThanksPerDay / avgPostsPerDay) * (thanksSent / thanksReceived);
details.innerHTML = details.innerHTML + "<dd><strong>ACF Score: </strong>" +
Math.round(acfScore) + " " +
Math.round(avgPostsPerDay * 1000) + " " +
roundNumber(avgThanksPerDay / avgPostsPerDay, 2) + " " +
roundNumber(thanksSent / thanksReceived, 2) +
"</dd>;"