it's not needed to post the hack instructions, everyone know them from the file
and actually it's not hard to do.
first of all you have to enable debug mode of your vb.
then got to acp options and you see you can add new settings to the settinggroups
add one to the message posting options yesno as option code
for example:
varname: preventdoubleposts
title Preventing Doubleposting
optioncode yesno
default 1
vbulletin default no
then just change that line:
PHP Code:
if ($type != 'thread' AND $threadinfo['lastpost'] > TIMENOW - $dp_settings['timespan'] AND $threadinfo['lastposter'] == $post['postusername'])
into
PHP Code:
if ($vboptions['preventdoubleposts'] AND $type != 'thread' AND $threadinfo['lastpost'] > TIMENOW - $dp_settings['timespan'] AND $threadinfo['lastposter'] == $post['postusername'])
that's all you need