View Single Post
  #1  
Old 08-28-2011, 12:18 AM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 599,587
Hall of Famer is on a distinguished road
Default

Well find these lines in your levelup.php:

PHP Code:
    if($isfrozen == "no"){   
    
changecash(grabanysetting('rewardmoney'), $GLOBALS['username'], $GLOBALS['money']);
    
$article_content $article_content "<div align='center'><br />You have earned "grabanysetting('rewardmoney') ." "grabanysetting('cost') ." for leveling up this adoptable. <br />You now have {$GLOBALS['money']} ".grabanysetting('cost')."</div>";
    } 
Replace with:(assuming the maximum level on your site is 5, as inferred from your script)
PHP Code:
    if($isfrozen == "no" and $currentlevel <5){   
    
changecash(grabanysetting('rewardmoney'), $GLOBALS['username'], $GLOBALS['money']);
    
$article_content $article_content "<div  align='center'><br />You have earned ".  grabanysetting('rewardmoney') ." "grabanysetting('cost') ." for  leveling up this adoptable. <br />You now have {$GLOBALS['money']}  ".grabanysetting('cost')."</div>";
    } 
Give a try on your site and see if it works.

Hall of Famer
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote