The nice thing about invision boards, is that almost every 3-4 days, a new mod comes out. I don't use them all, but some are interesting.
Heres some new features that'll be soon added:
- Minimum post length.
It'll prevent extreme short posts like "Cool" or "Okay". I think it'll be like 10-20 letters minimum.
- Member Partication level
My solution to post count. Post count will still remain, but this will calculate how much you participate by looking at your join date and how many posts you've done since then.
FINALLY! A spam-free solution!! Your sooooo great TD

I completly agree with both of the ideas, GJ.
Yeah, that minimum post length will help a lot. No more:
"Spam"
"Spam 2"
They've both been added. The Minimum limit is 15 characters, and partipation level has been added (I'm 100% rofl)
Won't spamming still increase participation though?

You can't really spam now that there is a minimum post limit.
well cant you still write spam with 15 characters?
You'll still have to put more thought into your posts
Besides, longer spam is more noticible.
Yeah, it will stop things (that I hate) like: "lol it's funny", "I'm in" or "I hate school".
Well, I dont like the partisapation meter, because I know I will never be over 50%. I partisapate when it's needed.
It doesn't really matter. It doesn't mean anything.
Its kool, I dont really mind if i never past 50% We here to have fun no matter how many tiem you post or log in.
This is my solution to the requirement of 15-20 characters per page, I can still spam smileys all I want!Spammer!
Do you really think people will start using colors just to spam? I doupt it, actually... Your just trying to prove TD wrong and your failing miserable ^.^
Aww. c'mon Shadow. You can do better than that. I read it easily.
N00b. :_P
Put THAT in your teeth! Telling me the format was your last error! My HTML knowledge has now reached a higher level!!!

how did they put small things like that when the minimum thing was enabled? do spaces count?
rofl Junkie xD
Once you will read that, you will laught =)
(last spam, TD, promised)
Don't ask junkie.
Oh yes. For now on, no more spamming like that!
wow.... i got more participation than Chu.... that should make me a mod.. jk. Well... theres not gonna be no spam nemore.
I am unsure onto the purpose of this topic, but i think i am about 14%?
so how does the particiwhatever thing calculate?
CODE
$hoje[0] = date("Y");
$hoje[1] = date("m");
$hoje[2] = date("d");
$registrado[0] = date("Y", $row['joined']);
$registrado[1] = date("m", $row['joined']);
$registrado[2] = date("d", $row['joined']);
for($x = 0; $x <= 2; $x++) {
$intercessao[$x] = $hoje[$x]-$registrado[$x];
}
$numdias = ($intercessao[0]*365)+($intercessao[1]*30)+$intercessao[2];
if($row['posts'] == 0) {
$participacao = 0;
} elseif($numdias == 0) {
$participacao = 100;
} else {
$participacao = floor($row['posts']/$numdias*20);
}
if($participacao > 100) { $participacao = 100; }
$row['participacao'] = $participacao;