Quote:
Originally Posted by BlueNinjaGo
Did you check out all the suggestions made so far? Perhaps a compiled list would be easier... But several of my users requested a countdown clock that shows the next cycle
|
My solution for the countdown clock only works for if you're cycles are under an hour. It went wrong on my forum because for some reason it says you're getting it in an hour, and sometimes the whole clock isn't correct either.... Anyways, here's the simple solution:
add this somewhere in the conquest.php file. Search for :
PHP Code:
if ($_REQUEST['do'] == 'homebase')
under the { add:
PHP Code:
$time = $vbulletin->db->query_first("SELECT * FROM ".TABLE_PREFIX."conquest_gameset");
$next = ($time[gLastCycle] + (60 * $time[gCycleMinutes])) - time();
$player[nextTurn] = date('i:s', $next);
Then anywhere in your homebase template add something like "Next turn: $player[nextTurn]"