Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
php
its not that big
http://www.nukewar.mobstop.com/pet1/index.php that it is supose to lower the amount to like 34 and so on… then i was j/w if u could make it every half hour it adds 1 level to it
Not sure if its the best way. But this will do execute certain code every half hour.
<?php
$day = file_get_contents("day");
$hour = file_get_contents("hour");
$now = date("g") /2 ;
$nowd = date("j");
if ($day > $nowd){
print "It has been 30 min.";
}else{
if ($now > $hour){
print "It has been 30 min.";
file_put_contents("hour", "$now");
}else{
print "Hasn't been 30 min.";
}
}
?>
It should be pretty self explanatory. I haven't really tested it to make sure it works, so lemme know if you have any problems. Edit: Just be sure to create the two files first.