Log in

View Full Version : Post count incrementer/decrementer?


trilOByte
07-25-2002, 06:05 PM
I know there are tons of ways to penalise spammers, but to some extent they are all a little severe. I was looking at Kiers post count decrementer, which reduces a persons post count when they are placed into a certain user group - this still seems a little severe to me, but it has possibilities.

It only takes one or two members in a post whoring contest to start annoying a lot of people.

What I would like to request, is something similar to kiers post cound decrementer here (https://vborg.vbsupport.ru/showthread.php?s=&threadid=41112&highlight=post+count), but worked into a time limiter. We currently have our posting time limit set at 60 seconds, and are considering increasing it to 90 seconds in an attempt to combat the spammers. I would love a feature that allows posts to increment as normal if the posts are made more than 90 seconds apart, but the post count decrements if the posts are made less than 90 seconds apart. That way, the postser gets to think about how important his post is over his post count and gets to choose. Neat huh?

Xenon
07-25-2002, 08:17 PM
not tested but i think it should do what ya want:

in newreply.php find: $DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");


replace it with:if((time()-$bbuserinfo[lastpost])<=90) {
$DB_site->query("UPDATE user SET
posts=posts-1, lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
} else { $DB_site->query("UPDATE user SET
".iif ($foruminfo[countposts],"posts=posts+1,","")."
$dotitle"."lastpost='".time()."' WHERE userid='$bbuserinfo[userid]'");
}

trilOByte
07-25-2002, 09:19 PM
Thanks, but got a parse error....

Parse error: parse error, unexpected $ in **********/forum/newreply.php on line 527

Maybe it's because I only did the newreply part - what do I have to do with the mod exemption code?

Thanks ;)

Xenon
07-25-2002, 11:19 PM
ups what have i posted *gg*

have edited it, try again no it should work ;)

if not you should tell me which line was the error producing line ;)

trilOByte
07-25-2002, 11:25 PM
Failed again, here's the error...

Parse error: parse error, unexpected ':' in /home/thegenom/public_html/forum/newreply.php on line 340

trilOByte
07-25-2002, 11:26 PM
hang on, ignore that, I goofed with the last upload, trying again.....

trilOByte
07-25-2002, 11:30 PM
Woot! It works ;) Thankyou very much indeed. Do you know how to exempt admins/mods, or better yet, make it specific to a particular user group?

Man this is superb, you should release this as a hack.

Thank you very much again, my users are going to love this and I do already.

Xenon
07-25-2002, 11:39 PM
you're welcome ;)

replace
if((time()-$bbuserinfo[lastpost])<=90) {

with
if((time()-$bbuserinfo[lastpost])<=90 and $bbuserinfo[usergroupid]==xx) {
change the xx to usergroupid you want to have this decrementer ;)

trilOByte
07-25-2002, 11:43 PM
Hmmm, OK this is strange, it seems to take 2 posts to come into effect. The first rapid reply leaves the post count the same, the second starts to reduce it. The next slow reply leaves the post count the same, the next increments as normal - any idea why?

Basically, it seems to take 2 posts to change the direction of the count. Once the direction has changed, then the cont proceeds in single increments (or decrements).

Xenon
07-25-2002, 11:46 PM
it's a built in feature in vb if you post a post very fast after your last and title/message are the same, then it just updates the old one ...

trilOByte
07-25-2002, 11:46 PM
Originally posted by Xenon

change the xx to usergroupid you want to have this decrementer ;)

Thank you very, very much indeed. :) :) :)

trilOByte
07-25-2002, 11:51 PM
Originally posted by Xenon
it's a built in feature in vb if you post a post very fast after your last and title/message are the same, then it just updates the old one ...

Ahhh, man you are an oracle. I was just posting "test" over and over and just watching the post count.

Thanks again :bows:

Xenon
07-25-2002, 11:56 PM
that's my job *gg*

you're welcome

/me goes to bed now