lol thanks man, i will try it now
Quote:
Originally Posted by hate
I would just open includes/cron/birthday.php due to it is ran once a day and find
Code:
$today = date('m-d', TIMENOW);
and above that add
Code:
$DB_site->query("UPDATE " . TABLE_PREFIX . "user SET uttpoints = uttpoints + 50 WHERE userid = 1");
Remeber to change the userid
There you have it , fast  , you can toss it in the mud if ya need it dirty.
|
Ok it works perfectly. If I wanted to make it add say 50 to each member of a usergroup i guess this would do it:
Code:
$DB_site->query("UPDATE " . TABLE_PREFIX . "user SET uttpoints = uttpoints + 50 WHERE usergroupid = #");