View Single Post
  #7  
Old 03-19-2009, 04:52 AM
WhiteDragon WhiteDragon is offline
Banned
Join Date: Feb 2007
Posts: 1,002
WhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to beholdWhiteDragon is a splendid one to behold
Quote:
Originally Posted by oo_jazz_oo View Post
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.0;
  for (
temp.players) {
    if (
player.attr[10]) {
      
showimg(200+temp.i"yourimage.png"temp.p.xtemp.p.y);
      
temp.i++;
    }
  }

Or something to that effect.
Reply With Quote