PDA

View Full Version : Stop Specific Users Post Counts Increasing


Intex
06-02-2004, 11:28 AM
I've got an RSS bot that automatically posts threads into various forums. Is there a way you stop it's submissions from increasing the thread / post count?

JulianD
06-14-2004, 02:21 AM
Note: This is untested, but I think it should work...

For vBulletin 3:


Open includes/functions_newpost.php

Find:


if ($foruminfo['countposts'])


And replace for


if ($foruminfo['countposts'] and $bbuserinfo['userid'] != XX)


Change XX to the userid of the user you don't want the post count to increase....

Intex
06-14-2004, 06:35 PM
Thx. JulianD - I'll give it a try and let you know :).