Log in

View Full Version : Promote Users based on thread count on a certain section


PinoyRepublic
06-13-2009, 03:50 AM
Hi,

Anyone have an idea on how can I automatically set to promote users when his/her thread count on a certain section has been reached? vBulletin only allows promotion based on post count.

Thanks

DragonBlade
06-13-2009, 04:51 AM
Create a PHP function that will basically

SELECT user.userid AS userid, count(thread.*) AS numthreads FROM user, thread WHERE user.userid=thread.postuserid AND NOT FIND_IN_SET($usergroupid, user.membergroupids) AND user.usergroupid!=$usergroupid AND numthreads>=$numthreads

Then with the result set, do your promotion stuff.

This probably is not the EXACT MySQL you'd use, but it should get you started.

When all is said and done, save it into your cron folder, and set a cron job. :)