far out
My Mod ALP PRO
HTML Code:
<script type="text/javascript">
<!--
function alp_change()
{
countDownTime = $vboptions[alp_time];
countlocation=1;
ajax_alp = new vB_AJAX_Handler(true);
ajax_alp.onreadystatechange(alp_update);
ajax_alp.send('ajax.php', 'do=alp');
}
DZMOD
HTML Code:
<script type="text/javascript">
<!--
function dzm_change()
{
countDownTime = $vboptions[dzm_time];
countlocation=1;
ajax_dzm = new vB_AJAX_Handler(true);
ajax_dzm.onreadystatechange(dzm_update);
ajax_dzm.send('ajax.php', 'do=dzm');
}
My Mod ALP PRO
PHP Code:
if (($_POST['do'] == 'alp2') and $vbulletin->options['alp_enable'])
{
$alpuser = split(',', $vbulletin->options['alp_user']);
if (is_member_of($vbulletin->userinfo, $alpuser))
{
$alpmax = intval($vbulletin->options['alp_max']);
if ($alpmax <= 0) {
$alpmax = '5';
}
$alpttl = intval($vbulletin->options['alp_ttl']);
if ($alpttl <= 0) {
$alpttl = 20;
}
DZMOD
PHP Code:
if (($_POST['do'] == 'dzm2') and $vbulletin->options['dzm_enable'])
{
$dzmuser = split(',', $vbulletin->options['dzm_user']);
if (is_member_of($vbulletin->userinfo, $dzmuser))
{
$dzmmax = intval($vbulletin->options['dzm_max']);
if ($dzmmax <= 0) {
$dzmmax = '5';
}
$dzmttl = intval($vbulletin->options['dzm_ttl']);
if ($dzmttl <= 0) {
$dzmttl = 20;
}