Thread: Set Effect
View Single Post
  #27  
Old 12-08-2009, 10:04 PM
Switch Switch is offline
o.o
Switch's Avatar
Join Date: Jan 2007
Location: Philadelphia
Posts: 3,038
Switch has a spectacular aura about
Send a message via MSN to Switch
Personally, I would do something like this:
PHP Code:
//#CLIENTSIDE
function onPlayerEnters(){
  
setEffectMode(1);
  
setColorEffect(1111);
  
dontBlockLocal();
  
drawOverPlayer();
  
setTimer(0.05);
}

function 
onTimeout(){
  if (
player.x+1.5 in |this.x-1this.x+this.width+1| && player.y+2 in |this37|){
    
setColorEffect(1110.7);
  } else {
    
setColorEffect(1111);
  }
  
setTimer(0.05);

Then you can put it in a class and use it for other things like it.
__________________
Oh squiggly line in my eye fluid. I see you lurking there on the peripheral of my vision.
But when I try to look at you, you scurry away.
Are you shy, squiggly line?
Why only when I ignore you, do you return to the center of my eye?
Oh, squiggly line, it's alright, you are forgiven.
Reply With Quote