| 
 
 
 
	
			
	
	
	
        
        
            | Author | Message |  
			| CaveCricket48 
					Joined: Tue Jun 12, 2007 11:52 pm
 Posts: 13144
 Location: Here
   |   Skirmish Wave *Update 2 Like skirmish, but the enemy comes down in waves. There's also a text display at the top of the screen that keeps track of the current wave and the number of live enemies. Update: There is now a time delay between waves. This allows you to make hasty repairs to your bunker before the next group of enemies come. Update 2: Now with editable enemy drops! Look into the Lua script until you find this: Code: ----------------------------------------
 self.longestWaveDelay = 30000; -- Wave delay on lowest difficulty
 self.shortestWaveDelay = 5000; -- Wave delay on highest difficulty
 -- All delays in between are calculated with MATH
 
 self.maxDeliveryLoad = 2; -- Maximum number of units per delivery
 self.minDeliveryLoad = 1; -- Minimum number of units per delivery
 
 self.chanceOfCrab = 0.05; -- Chance of getting an ACrab. If you don't get a crab, an AHuman is delivered
 self.chanceOfRocket = 0.0; -- Chance of getting a rocket. If you don't get a rocket, a dropship comes
 
 self.PrimaryWeaponList = { "Grenade Launcher", "Blaster", "Sniper Rifle", "Nailer Cannon", "Destroyer Cannon", "Compact Assault Rifle", "Assault Rifle", "Heavy Sniper Rifle", "Gatling Gun", "Flamer", "Napalm Flamer", "Spike Launcher", "Flak Cannon", "Shotgun", "Auto Shotgun", "Mauler Shotgun", "Bazooka", "YAK47", "YAK4700", "TommyGun", "M16", "Spaz12", "Spaz1200", "Rifle Long"};
 self.SecondaryWeaponList = { "Nailgun", "Rail Pistol", "Pistol", "Auto Pistol", "Heavy Pistol", "Uzi", "Shortgun", "Desert Eagle", "Glock", "Luger" };
 self.DiggerList = { "Light Digger", "Medium Digger", "Heavy Digger", "Pulse Digger", "Turbo Digger",};
 
 self.BodyList = { "Mia", "Dafred", "Dimitri", "Gordon", "Brutus", "Sandra", "Soldier Light", "Soldier Heavy", "Browncoat Light", "Browncoat Heavy" };
 self.CrabList = { "Dreadnought" };
 
 self.DropShipList = { "Drop Ship", "Drop Ship MK1" };
 self.RocketList = { "Rocket MK1", "Rocket MK2" };
 
 ----------------------------------------
 
I'm going to work on a more 'traditional' load out design later (specify exact load-outs).
 
 
 
 
    							Last edited by CaveCricket48 on Fri May 06, 2011 9:53 pm, edited 3 times in total. |  
			| Sun Mar 13, 2011 2:24 am | 
					
					   |  
		|  |  
			| zalo 
					Joined: Sat Feb 03, 2007 7:11 pm
 Posts: 1496
   |   Re: Skirmish WaveHey, I've been waiting for some extra "Activities". Now I'll have time to refortify between waves.   
 
 |  
			| Sun Mar 13, 2011 2:48 am | 
					
					     |  
		|  |  
			| CaveCricket48 
					Joined: Tue Jun 12, 2007 11:52 pm
 Posts: 13144
 Location: Here
   |   Re: Skirmish WaveOh, I haven't gotten delay in between waves to work yet. Heh heh. But I'll get it soon.
 Update: There is now a time delay between waves. This allows you to make hasty repairs to your bunker before the next group of enemies come.
 
 
 |  
			| Sun Mar 13, 2011 2:51 am | 
					
					   |  
		|  |  
			| bioemerl 
					Joined: Sat Dec 18, 2010 6:11 pm
 Posts: 285
   |   Re: Skirmish Wave *UpdateTHISIs what skirmishes should be, and wish to be for all time!
 
 
 |  
			| Sun Mar 13, 2011 3:42 am | 
					
					   |  
		|  |  
			| Natti Data Realms Elite 
					Joined: Fri Jul 03, 2009 11:05 am
 Posts: 3878
   |   Re: Skirmish Wave *UpdateThis is how I expected B24 skirmish to be.Thank you, CC48. You're my hero (alongside with Abdul, TLB, Bubs and a few other god-class modders)!
 
 
 |  
			| Sun Mar 13, 2011 10:13 am | 
					
					   |  
		|  |  
			| The Decaying Soldat 
					Joined: Thu May 15, 2008 11:40 am
 Posts: 1527
 Location: In heaven, everything is fine.
   |   Re: Skirmish Wave *UpdateThis is a miracle! It's like how CC should've been played all along! I actually had time to repair bunkers! I actually had time to re-arm and reposition my troops! I actually had time TO MINE GOLD!!! MINE GOLD!!!
 
 CaveCricket, can I give you a hug?
 
 P.S. Is it possible to make this completable with other mods? Like, if we could throw in our own activities.ini and let it run in wave mode?
 
 
 |  
			| Tue Mar 15, 2011 2:04 pm | 
					
					   |  
		|  |  
			| carriontrooper 
					Joined: Mon Apr 13, 2009 12:27 pm
 Posts: 813
 Location: Yogyakarta, Indonesia. A slice o' paradise.
   |   Re: Skirmish Wave *UpdateThe Decaying Soldat wrote: Like, if we could throw in our own activities.ini and let it run in wave mode?This, many times this, maybe sorta like Tartarus. It's becoming a staple way of choosing your own activities... Awesome job, CC48.
 
 |  
			| Wed Mar 16, 2011 7:04 am | 
					
					       |  
		|  |  
			| Fail Flail 
					Joined: Sun Jun 13, 2010 5:40 am
 Posts: 1059
 Location: I chose my fate, do not pity me.
   |   Re: Skirmish Wave *UpdateAwesome, this is a game mode is one one that i am surprised wasn't made default. Now all i have to do is add zombies  
 
 |  
			| Wed Mar 16, 2011 11:17 am | 
					
					   |  
		|  |  
			| CaveCricket48 
					Joined: Tue Jun 12, 2007 11:52 pm
 Posts: 13144
 Location: Here
   |   Re: Skirmish Wave *UpdateOkay guys, I've been thinking about how to add custom enemy drops into this and two methods are presenting themselves.
 First, you simply have a list of actors, guns, and tools that the enemy can use. The activity script will randomly assign an actor a tool and weapon and drop them on the field in a random craft.
 
 The next, slightly more complicated method involves have each actor load-out predefined, which means more work for you but you won't get unwanted loads.
 
 Which would you want?
 
 
 |  
			| Tue May 03, 2011 1:51 am | 
					
					   |  
		|  |  
			| bioemerl 
					Joined: Sat Dec 18, 2010 6:11 pm
 Posts: 285
   |   Re: Skirmish Wave *Updateyou could make 2 files, one where you define actors indavigual loadout, and the other to define the custom loads?
 well, could you do that?
 
 
 |  
			| Tue May 03, 2011 2:12 am | 
					
					   |  
		|  |  
			| CaveCricket48 
					Joined: Tue Jun 12, 2007 11:52 pm
 Posts: 13144
 Location: Here
   |   Re: Skirmish Wave *UpdateThat could work, I guess.
 Well, expect an update in the next few days.
 
 
 |  
			| Tue May 03, 2011 2:21 am | 
					
					   |  
		|  |  
			| bioemerl 
					Joined: Sat Dec 18, 2010 6:11 pm
 Posts: 285
   |   Re: Skirmish Wave *Updateawesome
 is there a way to extend the period of time between waves, and is there a way this can be in B25?
 
 
 |  
			| Fri May 06, 2011 1:58 am | 
					
					   |  
		|  |  
			| Roast Veg Data Realms Elite 
					Joined: Tue May 25, 2010 8:27 pm
 Posts: 4522
 Location: Constant motion
   |   Re: Skirmish Wave *UpdateIs it really that much trouble to copy the mod folder into the new version? Really?
 If Data and everyone else thinks this is a good thing to have in the next build, great, but honestly why not just put it in there yourself if it means that much to you, bio.
 
 
 |  
			| Fri May 06, 2011 5:15 pm | 
					
					   |  
		|  |  
			| CaveCricket48 
					Joined: Tue Jun 12, 2007 11:52 pm
 Posts: 13144
 Location: Here
   |   Re: Skirmish Wave *Update 2Updated. Check the main post. 
 
 |  
			| Fri May 06, 2011 9:54 pm | 
					
					   |  
		|  |  
			| Xron 
					Joined: Tue Jun 01, 2010 6:01 pm
 Posts: 13
   |   Re: Skirmish Wave *Update 2Does it support mods? 
 
 |  
			| Fri May 06, 2011 10:42 pm | 
					
					   |  
		|  |  
		|  |  
 
	
		| Who is online |  
		| Users browsing this forum: No registered users |  
 
	|  | You cannot post new topics in this forum You cannot reply to topics in this forum
 You cannot edit your posts in this forum
 You cannot delete your posts in this forum
 You cannot post attachments in this forum
 
 |  
 |