View Single Post
  #14  
Old 06-28-2005, 02:33 PM
ZeroTrack ZeroTrack is offline
G2K1 Developer
ZeroTrack's Avatar
Join Date: Apr 2004
Location: LongIsland, NY
Posts: 402
ZeroTrack is on a distinguished road
Send a message via AIM to ZeroTrack
The show text in this works on v2 but not 3 or 4, how come, is this a client bug??

PHP Code:
//#CLIENTSIDE
if(created){
  
this.startx screenwidth/3.35;
  
this.starty screenheight-50;
  
timeout .05;
}
if(
timeout){
  
showstats 256+1024;
  
this.startx screenwidth/3.35;
  
this.starty screenheight-50;
  
showMenu();
  
timeout .05;
}

function 
showMenu(){
  
showtext 1001,this.startx+15,this.starty+7,arial,,Player HP:#s(client.hp)/#s(clientr.maxhp);
  
changeimgvis 1001,6;
  
changeimgzoom 1001,.5;
  
showtext 1002,this.startx+15,this.starty+27,arial,,Player MP:0/50;
  
changeimgvis 1002,6;
  
changeimgzoom 1002,.5;

__________________