So like, Ive been having this problem for quite some time now.. its the same problems Stan recently posted about, but I didnt want to hijack his thread with my own question.
I checked that thread, didnt come up with a solution. Perhaps Im just tired? Hmm.. so anyways, the problem:
PHP Code:
player.attr[20] = "ml_hud.gani";
player.attr[21] = { "test", "xd"};
PHP Code:
SCRIPT
function onPlayerEnters() setTimer(.05);
function onTimeOut()
{
if (player.attr[21] != NULL) {
this.pos = { player.x + 1.5, player.y - 2, player.z + 3 };
showtext(201, this.pos[0], this.pos[1] - 2, "Verdana", "b", "TEST [" @ player.attr[21][1] @ "]");
}
setTimer(.05);
}
SCRIPTEND
This is displaying the text "TEST [xd]" over MY player, but I just see "TEST []" over the other players in the level. Same thing goes for everyone else, they only see the text "TEST [xd]" over themself and no one else.
My question is, how do I fix this?