Jump to content

Cool downs with PHP?


Xyphon

Recommended Posts

Record the total number of moves made

 

Then when a move is made that you wish to have locked out for a certain number of moves, save it along with the current total number of moves, then do something similar to below

 

<?php

$total_moves = 1234;
$locked_move = 1231;

$move_diff = $total_moves - $locked_move;
if($move_diff < 3)
{
    echo "Sorry, you need to make 3 moves before you can use this move";
}
else
{
    echo "Using move";
}

?>

Link to comment
https://forums.phpfreaks.com/topic/141837-cool-downs-with-php/#findComment-742914
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.