View Single Post
  #15  
Old 01-26-2007, 01:46 AM
Admins Admins is offline
Graal Administration
Join Date: Jan 2000
Location: Admins
Posts: 11,693
Admins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud ofAdmins has much to be proud of
Like I said the new attributes like textshadow are not sent. You need to use attr[] and gani scripts, like
PHP Code:
player.attr[1] = "myscript.gani";
player.attr[2] = "mytext"
And in the myscript.tgani you put something like this:
PHP Code:
SCRIPT
function onPlayerEnters() {
  
with (findimg(200)) {
    
player.x;
    
player.y;
    
text player.attr[2];
    
textshadow true;
  }
}
SCRIPTEND 
That gani script is executed on each client, so everyone will see it.
Reply With Quote