View unanswered posts | View active topics It is currently Fri Mar 29, 2024 8:10 am



Reply to topic  [ 30 posts ]  Go to page 1, 2  Next
 Skirmish Wave *Update 2 
Author Message
User avatar

Joined: Tue Jun 12, 2007 11:52 pm
Posts: 13143
Location: Here
Reply with quote
 Skirmish Wave *Update 2
Image

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).


Attachments:
Skirmish Wave.rte.rar [3.7 KiB]
Downloaded 1290 times


Last edited by CaveCricket48 on Fri May 06, 2011 9:53 pm, edited 3 times in total.

Sun Mar 13, 2011 2:24 am
Profile

Joined: Sat Feb 03, 2007 7:11 pm
Posts: 1496
Reply with quote
Post Re: Skirmish Wave
Hey, I've been waiting for some extra "Activities".

Now I'll have time to refortify between waves. :)


Sun Mar 13, 2011 2:48 am
Profile WWW
User avatar

Joined: Tue Jun 12, 2007 11:52 pm
Posts: 13143
Location: Here
Reply with quote
Post Re: Skirmish Wave
Oh, 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
Profile

Joined: Sat Dec 18, 2010 6:11 pm
Posts: 285
Reply with quote
Post Re: Skirmish Wave *Update
THIS
Is what skirmishes should be, and wish to be for all time!


Sun Mar 13, 2011 3:42 am
Profile
Data Realms Elite
Data Realms Elite
User avatar

Joined: Fri Jul 03, 2009 11:05 am
Posts: 3878
Reply with quote
Post Re: Skirmish Wave *Update
This 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
Profile
User avatar

Joined: Thu May 15, 2008 11:40 am
Posts: 1527
Location: In heaven, everything is fine.
Reply with quote
Post Re: Skirmish Wave *Update
This 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
Profile
User avatar

Joined: Mon Apr 13, 2009 12:27 pm
Posts: 813
Location: Yogyakarta, Indonesia. A slice o' paradise.
Reply with quote
Post Re: Skirmish Wave *Update
The 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
Profile YIM WWW
User avatar

Joined: Sun Jun 13, 2010 5:40 am
Posts: 1059
Location: I chose my fate, do not pity me.
Reply with quote
Post Re: Skirmish Wave *Update
Awesome, 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 :D


Wed Mar 16, 2011 11:17 am
Profile
User avatar

Joined: Tue Jun 12, 2007 11:52 pm
Posts: 13143
Location: Here
Reply with quote
Post Re: Skirmish Wave *Update
Okay 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
Profile

Joined: Sat Dec 18, 2010 6:11 pm
Posts: 285
Reply with quote
Post Re: Skirmish Wave *Update
you 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
Profile
User avatar

Joined: Tue Jun 12, 2007 11:52 pm
Posts: 13143
Location: Here
Reply with quote
Post Re: Skirmish Wave *Update
That could work, I guess.

Well, expect an update in the next few days.


Tue May 03, 2011 2:21 am
Profile

Joined: Sat Dec 18, 2010 6:11 pm
Posts: 285
Reply with quote
Post Re: Skirmish Wave *Update
awesome

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
Profile
Data Realms Elite
Data Realms Elite
User avatar

Joined: Tue May 25, 2010 8:27 pm
Posts: 4521
Location: Constant motion
Reply with quote
Post Re: Skirmish Wave *Update
Is 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
Profile
User avatar

Joined: Tue Jun 12, 2007 11:52 pm
Posts: 13143
Location: Here
Reply with quote
Post Re: Skirmish Wave *Update 2
Updated. Check the main post.


Fri May 06, 2011 9:54 pm
Profile
User avatar

Joined: Tue Jun 01, 2010 6:01 pm
Posts: 13
Reply with quote
Post Re: Skirmish Wave *Update 2
Does it support mods?


Fri May 06, 2011 10:42 pm
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 30 posts ]  Go to page 1, 2  Next

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

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.
[ Time : 0.200s | 16 Queries | GZIP : Off ]