PDA

View Full Version : Deduct/Don't count posts


hockyfan
11-03-2004, 12:31 AM
Can someone make a hack which allows the admin to specify a specificathread that when a user posts in it, it'll either deduct from his post count, or just not count the post? Perhaps it can be made as an addon to this (https://vborg.vbsupport.ru/showthread.php?p=564118) hack? Thanks!


h

Xenon
11-03-2004, 03:59 PM
that's just a oneliner :)

open functions_newpost.php

find:
if ($foruminfo['countposts'])
{
$bbuserinfo['posts'] += 1;


and change into:

if ($foruminfo['countposts'] AND $threadinfo['threadid'] != xxx)
{
$bbuserinfo['posts'] += 1;


and just replace the xxx with the threadid you want posts not counted

hockyfan
11-03-2004, 09:22 PM
Great, thanks!

h

Xenon
11-03-2004, 09:28 PM
you're welcome