View Single Post
  #2  
Old 02-14-2009, 06:40 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 10,747
BMR777 is on a distinguished road
Default RE: change the "You just adopted a ..." code output

In adopt.php find:

PHP Code:
You have just adopted ".$name."
$name there displays the name. If you want to hide it, then replace with:

PHP Code:
You have just adopted a creature
Also, to hide the names, you can try in adopt.php find all:

PHP Code:
$name=@mysql_result($result,$i,"name"); 
and remove. That will replace the name with just nothing. :)

I haven't tested that though so if the script doesn't work right after doing that then it won't be an option.

Brandon
Reply With Quote