| 
	
	
	
	 
   
		
            
             
				level.target_to_destroy = 3 - 
            
          
		
		
				
		
				05-03-2003, 04:51 AM
			
			
			
		  
		
	
                
            	
		
		
		Well if you just want to add more bombs, here is a few lines from the V-2 multiplayer script. 
 
		$v2_explode thread global/obj_dm.scr::bomb_thinker 
		$ctrlroom_explode thread global/obj_dm.scr::bomb_thinker 
		 
		thread allies_win_bomb $v2_explode $ctrlroom_explode 
		$v2_explode thread axis_win_timer 
		 
end 
 
 
allies_win_bomb local.bomb1 local.bomb2: 
 
	while (local.bomb1.exploded != 1) 
		wait .1 
	while (local.bomb2.exploded != 1) 
		wait .1 
 
	teamwin allies 
end 
		
	
		
		
		
		
		
	
	 |