Darn you are right!
Heheh, this program has more features than I know of!
In any case, if you want the Alerts to create a thread in a specific forum, edit your functions_warning and find:
PHP Code:
if ($alert=='No')
{
eval('$messageb .= "' . fetch_template('warn_pm') . '";');
$title="You have been warned";
$messagecopy=$messageb;
}
else
{
eval('$messageb .= "' . fetch_template('warn_pm_alert') . '";');
$title="You have been alerted";
}
Replace that with:
PHP Code:
if ($alert=='No')
{
eval('$messageb .= "' . fetch_template('warn_pm') . '";');
$title="You have been warned";
}
else
{
eval('$messageb .= "' . fetch_template('warn_pm_alert') . '";');
$title="You have been alerted";
}
$messagecopy=$messageb;
Also, find:
PHP Code:
if ($alert=='No')
{
eval('$messageb .= "' . fetch_template('warn_em') . '";');
eval('$messagecopy .= "' . fetch_template('warn_pm') . '";');
$title="{$vboptions['messagetag']} - You have been warned";
}
else
{
eval('$messageb .= "' . fetch_template('warn_em_alert') . '";');
$title="{$vboptions['messagetag']} - You have been alerted";
}
And replace that with:
PHP Code:
if ($alert=='No')
{
eval('$messageb .= "' . fetch_template('warn_em') . '";');
eval('$messagecopy .= "' . fetch_template('warn_pm') . '";');
$title="{$vboptions['messagetag']} - You have been warned";
}
else
{
eval('$messageb .= "' . fetch_template('warn_em_alert') . '";');
eval('$messagecopy .= "' . fetch_template('warn_pm_alert') . '";');
$title="{$vboptions['messagetag']} - You have been alerted";
}
If you do not want Alerts to be created as threads, then in functions_warning.php find:
PHP Code:
if ($vboptions['warn_savecopy']=='1' AND $vboptions['warn_savecopyforum']!='')
Replace that with:
PHP Code:
if ($vboptions['warn_savecopy']=='1' AND $vboptions['warn_savecopyforum']!='' AND $alert=='No')
Next version, I'll have an option for that.
Rgds