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?