View Single Post
  #2  
Old 04-06-2009, 05:59 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 18,092
BMR777 is on a distinguished road
Default RE: Could I Change The Time Between Clicks ?

I suppose you can mess with the date system a bit. In levelup.php this code controls if a user is within the 24 hour mark or not:

PHP Code:
if($checkdate == $todaydate){
                
//We've gone this far, this means that we found a match because a date was returned
                //Cannot vote because we already voted today...
                
$article_title "You already voted for me today!";
                
$article_date date('Y-m-d');    
                
$article_content "You already voted for this adoptable today.  
Please come back in 24 hours to level up this adoptable again."
;
                
            } 
This code appears twice in the file. This is what you would edit to change the time restriction. It probably won't be easy though.
Reply With Quote