View Single Post
  #24  
Old 09-30-2007, 04:53 AM
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
Earlier today Skyld said he doesn't know much about particles, an Stefans stuff worked but then it got screwy so I cahnged and then it came up with the errors, so I think I need Stefan to actually look at this on RC.

Go on Graal Legacy and look at "Switch/Test" @ Stefan

Or someone can look at it and toy around with it on their server.

PHP Code:
//#CLIENTSIDE 
function onCreated() {
  
CreateEmitters();
}
function 
CreateEmitters() {
  
with (findImg200)) {
    
layer 2;
    
with (emitter) {
    
      
delaymin 5;
      
delaymax 5;
      
nrofparticles 1;
      
maxparticles 75;
      
emissionoffset = {0,0,0};
      
firstinfront false;
      
attachposition true;  
 
      
particle.speed 2;
      
particle.lifetime 5;
      
particle.image "g4_particle_whitespot.png";
      
particle.alpha .99;
      
particle.zoom 2;
      
particle.red .92;
      
particle.green .26;
      
particle.blue .52;
      
particle.stretchx 1;
      
particle.stretchy 1;

      
addlocalmodifier("range",0,12,"alpha","replace",1,0);
      
addlocalmodifier("range",0,12,"zoom","replace",2,0);
    }
  }
}

function 
onWeaponFired() {
  
this.on this.on;
  if (
this.on == 1) {
    
setTimer(0.05);
  }
  if (
this.on == 0){
    
setTimer(0);
  }
}

function 
onTimeOut() {
  
with (findimg(200)) {
    
layer 2;
    
random(0,60);
    
random(0,60);
    
emitter.emit();
  }
  
setTimer(0.05);

__________________
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