Well I can see that people are busy around here. Here is my question.
Code:
if($lastupdate['value']<(time()-24*60*60))
{
$data->set(as_data);
$data->update(value,time());
$data->where(id,'time');
$data->execute(update);
$data->set(as_user);
$data->select('*');
$playerlist=$data->execute(select);
while($value=$vbulletin->db->fetch_array($playerlist)){
$value['turns']=$value['turns']+15;
$data->set(as_user);
$data->update(turns,$value['turns']);
$data->where(id,$value['id']);
$data->execute(update);
}
In the above code if($lastupdate['value']<(time()-24*60*60)) would the -24 represent the 24 hours wait time to get more turns.
In the above code $value['turns']=$value['turns']+15; would the +15 represent the turns received after 24 hours.
My question is could I change the -24 to -12, and than increase the +15 to +25. This would make 25 new turns every 12 hours. This could is in the main armysystem php script that goes in forum root.
I like this mod, and I know until an improved version comes out I will simply add gold to the database. I just hope this mod does not get put on the shelf, and someone makes this work. I will wait patiently for a answer to this question. Thank you for your time.