Log in

View Full Version : Post Count++ For Message of certain size


telc
03-07-2002, 11:52 PM
Is there any easy way to make it so a users post count only gets increased if the topic or reply is over a certain length.

I get lots users that just reply to every post with a "smile" just to get thier count up.

Neo
03-08-2002, 06:17 PM
Ummm..... that may be kind of hard... since the post count is increased when you post... but I guess you could have the text in the post counted first then if it is over XX amount the post count is raised.

Admin
03-08-2002, 06:20 PM
Originally posted by neo
Ummm..... that may be kind of hard... since the post count is increased when you post... but I guess you could have the text in the post counted first then if it is over XX amount the post count is raised.
That's actually very simple...

In newreply.php, replace this:
".iif ($foruminfo[countposts],"posts=posts+1,","")."
with this:
".iif ($foruminfo['countposts'] and strlen($message)>10,"posts=posts+1,","")."
Change 10 to the number of characters.

telc
03-10-2002, 11:28 PM
Thanks alot firefly!