View Single Post
  #3  
Old 10-20-2009, 09:09 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 10,784
BMR777 is on a distinguished road
Default RE: Display Clicks and level in Sig image

This can be done by editing siggy.php. Look for these lines and edit:

PHP Code:
    $str1 "Name: ".$name;
    
$str2 "Owner: ".$owner;
    
$str3 "Click Here to Feed Me!";
    
$str4 "More Adopts at:";
    
$str5 "www.".$domain;


    
imagestring ($image120$textheight,  $str1$color);
    
imagestring ($image120$textheight 13,  $str2$color);
    
imagestring ($image120$textheight 26,  $str3$color);
    
imagestring ($image120$textheight 42,  $str4$color);
    
imagestring ($image120$textheight 55,  $str5$color); 
You can also call up the current level and number of clicks from the database and show it here. :)
Reply With Quote