Quote:
Originally Posted by rinkrat
They are asking what they get for being MOTD. How can I rig it to give the member of the day 5000 reputation points?
|
Isn't that a lot? Oh anyway.
In the memberoftheday.php
Look for this:
Quote:
$memberOfTheDay['forumname'] = $favoriteForum['title'];
|
replace it with:
Quote:
$DB_site->query("UPDATE ".TABLE_PREFIX."user SET reputation=reputation+5000 WHERE userid=".$memberOfTheDay[userid]."");
$memberOfTheDay['forumname'] = $favoriteForum['title'];
|