Quote:
Originally Posted by oo_jazz_oo
Its only 2 players. And when I show 20 different texts with the same index, it shows for each player.
It just seems like theres a data limit for this..
I resized the image, and it will only show a certain ammount. After it reaches that ammount, it just stops showing. lol
|
Well, then yes, that is the image size limit they were talking about.
You could do it like this:
PHP Code:
//#CLIENTSIDE
function onCreated() {
player.attr[10] = true;
}
function onPlayerEnters() {
temp.i = 0;
for (temp.p : players) {
if (player.attr[10]) {
showimg(200+temp.i, "yourimage.png", temp.p.x, temp.p.y);
temp.i++;
}
}
}
Or something to that effect.