Welcome Guest, Not a member yet? Register   Sign In
How to setup an automatic function?
#1

[eluser]Corey Freeman[/eluser]
For my game, the player's stamina needs to replenish itself automatically once every 6 hours. I thought setting up a cron job would work, but it won't run the controller that way. So I'm not sure how to go about doing this.

Here's the code I have for the stamina update:

Code:
<?php

class Stamina extends Controller {

    function Stamina()
    {
        parent::Controller();    
    }
    
    function index()
    {
         $query = $this->db->get('players');
         foreach($query->result() as $row):
         $max = $row->max_stamina;
         $data = array('stamina' => $max);
         $this->db->where('id', $row->id);
         $this->db->update('players', $data);
         endforeach;
    }
}

This is really important so any help is majorly appreciated!


Messages In This Thread
How to setup an automatic function? - by El Forum - 07-18-2010, 02:31 PM
How to setup an automatic function? - by El Forum - 07-18-2010, 02:41 PM
How to setup an automatic function? - by El Forum - 07-18-2010, 02:44 PM
How to setup an automatic function? - by El Forum - 07-18-2010, 03:12 PM
How to setup an automatic function? - by El Forum - 07-18-2010, 03:27 PM
How to setup an automatic function? - by El Forum - 07-18-2010, 03:36 PM
How to setup an automatic function? - by El Forum - 07-18-2010, 03:44 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 03:03 AM
How to setup an automatic function? - by El Forum - 07-19-2010, 07:39 AM
How to setup an automatic function? - by El Forum - 07-19-2010, 10:03 AM
How to setup an automatic function? - by El Forum - 07-19-2010, 10:19 AM
How to setup an automatic function? - by El Forum - 07-19-2010, 02:12 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 02:17 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 02:30 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 03:06 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 04:27 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 07:06 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 07:31 PM
How to setup an automatic function? - by El Forum - 07-19-2010, 08:13 PM



Theme © iAndrew 2016 - Forum software by © MyBB