a very basic cron:
PHP Code:
<?php
/*===================================================*\
|| ################################################# ||
|| # CRON_NAME Created By AUTHOR ||
|| ################################################# ||
\*===================================================*/
// Look through the ./includes PHP files for functions
// ---------------------------------------------------
// Start Set PHP Environment
// ---------------------------------------------------
error_reporting(E_ALL & ~E_NOTICE);
if (!is_object($vbulletin->db)) { exit; }
// ---------------------------------------------------
// Start Cronjob
// ---------------------------------------------------
$results = $vbulletin->db->query_read(YOUR_QUERY);
while ($rec = $vbulletin->db->fetch_array($results))
{
//do somegthing with the record
}
//log something (errors, success, etc)
log_cron_action('LOG_MESSAGE', $nextitem);
// ---------------------------------------------------
// End Cronjob
// ---------------------------------------------------
?>
If you do not know any PHP/MySQL then creating your own cron out of the question.
--RayJ