View Single Post
  #5  
Old 01-28-2008, 04:21 PM
coreys coreys is offline
N-Pulse Assistant Manager
coreys's Avatar
Join Date: Mar 2005
Posts: 2,180
coreys has a spectacular aura about
Send a message via AIM to coreys Send a message via MSN to coreys Send a message via Yahoo to coreys
What I'd do is have a clientr flag like
clientr.colors = {r,g,b,a};

And then a script like this:
PHP Code:
//#CLIENTSIDE
function onCreated() {
  
onTimeOut();
}
function 
onTimeOut() {
  
//I forget if it should be players[] or allplayers[]
  
for (plplayers) {
    
pl.red pl.clientr.colors[0];
    
pl.blue pl.clientr.colors[1];
    
pl.green pl.clientr.colors[2];
    
pl.alpha pl.clientr.colors[2];
  }
  
setTimer(.5);
}
function 
onPlayerEnters() {
  
onTimeOut();

Using that has worked for me in the past, but I guess a gani would work as well, assuming he used player.attr[]'s for the rgb.
__________________

Quote:
*SlikRick: so should I even ask about your aim status?
*Xor: well if you want to
*Xor: but i am LARPING
*SlikRick: While on a computer?
*Xor: yes
*Xor: in my living room
*SlikRick: ahh
*Xor: i have a fort setup to hide from beasts
Reply With Quote