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)) {
x = player.x;
y = player.y;
text = player.attr[2];
textshadow = true;
}
}
SCRIPTEND
That gani script is executed on each client, so everyone will see it.