View Single Post
  #2  
Old 06-18-2007, 11:07 PM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
PHP Code:
//#CLIENTSIDE
function onCreated() 
{

  
with (findimg(200)) 
  {
    
layer 3;
    
player.x;
    
player.y;

    
with (emitter
    {
      
delaymin 1;
      
delaymax 1;
      
nrofparticles 1;
      
maxparticles 1;

      
with (particle
      {
        
lifetime 10;
        
image "block.png";
        
spin 3;
        
speed 1;
      }

      
emit();
    }

  }

ya need speed i think
Reply With Quote