View Single Post
  #1  
Old 08-28-2011, 12:13 AM
SilverDragonTears's Avatar
SilverDragonTears SilverDragonTears is offline
I am your Nemesis.
 
Join Date: Jun 2011
Posts: 1,113
Gender: Female
Credits: 113,590
SilverDragonTears is on a distinguished road
Default I love questions =)

I wanted to disallow leveling up adults (increasing their clicks)

so I found this:

Code:
	
	// Now we see if the adoptable is frozen by its owner.  If it is, we do not level...

	if($isfrozen == "yes"){

	$article_title = $lang_isfrozen_title;
	$article_content = $lang_isfrozen_explain;

	}
And after it added this:

Code:
	// Now we see if the adoptable is an adult.  If it is, we do not level...

	if($currentlevel == "5"){

	$article_content = "Adults can not be leveled up!";

	}
It works but how do I disallow getting coins for clicking it?
__________________

Check out SilvaTales
Reply With Quote