
10-06-2006, 02:09 AM
|
|
|
Join Date: Feb 2006
Location: Washington State
Posts: 264
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by SirAdrian
Not tested...
PHP Code:
<?php
if (!is_object($vbulletin->db))
{
exit;
}
$removePoints = 10;
$daysInactive = 1;
$cutOff = TIMENOW - (86400 * $daysInactive);
$result = $vbulletin->db->query_read("
SELECT userid
FROM " . TABLE_PREFIX . "user
WHERE lastactivity < $cutOff
");
while ($user = $vbulletin->db->fetch_array($result))
{
$vbulletin->db->query_write("
UPDATE " . TABLE_PREFIX . "user
SET reputation = reputation - $removePoints
WHERE userid = $user[userid]
");
}
?>
You'll have to update their reputationlevelid as well... don't have time to look into that though.
|
CHEERS!!
Works a treat.
|