82399103eb0521a9a57baf699606e09778f85b37
[mirrors/Kyberia-bloodline.git] / cron / k.php
1 #!/usr/bin/php
2 <?php
3 /*
4 * Script that restores number of K for all users.
5 * Called once a day.
6 */
7
8
9 // Use relative address of config file
10 // Change this, if you move you cron directory.
11 $dir=substr(__FILE__, 0, strrpos(__FILE__, '/'));
12 require($dir.'/../wwwroot/config/config.inc');
13
14 require(INCLUDE_DIR.'/database.inc');
15 require(INCLUDE_DIR.'/senate.inc');
16 require(INCLUDE_DIR.'/log.inc');
17
18 $db = new CLASS_DATABASE();
19 $db->query('update users set user_k = '. DAILY_K);
20 ?>
This page took 0.234494 seconds and 3 git commands to generate.