View Single Post
  #4  
Old 04-20-2009, 04:21 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 11,315
BMR777 is on a distinguished road
Default RE: Not Showing Name

Quote:
Originally Posted by trollis76
Brandon? Sorry to write in this thread, but...
What strings should I have if I want the name and level only?[hr]
Oh, and when you click the "Tsengu" (in my case) you'
ll level it up.
For JUST the name and level you would have:

PHP Code:
    $str1 "Name: ".$name;
    
$str2 "Level: ".$currentlevel;

imagestring ($image120$textheight,  $str1$color);
    
imagestring ($image120$textheight 13,  $str2$color); 
You can't make only part of the image clickable, the whole image only can be clickable.
Reply With Quote