Author |
Message |
carriontrooper
Joined: Mon Apr 13, 2009 12:27 pm Posts: 813 Location: Yogyakarta, Indonesia. A slice o' paradise.
|
Re: The Cordyc are coming... (WIP/releaseable)
Petethegoat wrote: I agree with pretty much everything that has been said, but perhaps the bomb puppet should explode in a less firey way? Like, with acid or something?
Also, I love the upgrading, but it wants a nicer interface, for gamepad users as well. Something like press AI gold dig, and it brings up a little menu where you choose what to upgrade into. Well, for the upgrade bit, a menu would be out of my league... I'll have to ask CC48. Any ideas on feasible menus/button mashing combos?
|
Mon Jun 28, 2010 11:50 am |
|
|
The Decaying Soldat
Joined: Thu May 15, 2008 11:40 am Posts: 1527 Location: In heaven, everything is fine.
|
Re: The Cordyc are coming... (WIP/releaseable)
Crouch+alphabet basically covers everything?
|
Mon Jun 28, 2010 12:11 pm |
|
|
Petethegoat
Joined: Mon Jun 15, 2009 4:02 pm Posts: 905
|
Re: The Cordyc are coming... (WIP/releaseable)
Not a menu so much, more of a display. You press AI golddig, and options pop up around the puppet, four at most. Then you just press the corresponding direction to pick one. Edit:Code: function Update(self) if self:IsPlayerControlled() == true and self.AIMode == AIMODE_GOLDDIG then local self.display = CreateMOSParticle(PuppetUpgradeDisplay,Cordyc.rte); self.display.Pos = self.Pos; MovableMan:AddParticle(self.display); if self:GetController():IsState(Controller.MOVE_LEFT) == true then --do your wacky upgrading here-- end else if self:GetController():IsState(Controller.MOVE_RIGHT) == true then --do different wacky upgrading here-- end --[[ YOU ONLY NEED THESE IF YOU WANT MORE THAN TWO UPGRADE CHOICES else if self:GetController():IsState(Controller.BODY_CROUCH) == true then --upgrade-- end else if self:GetController():IsState(Controller.BODY_JUMP) == true then --more upgrading-- end ]]-- YOU ONLY NEEDED THOSE IF YOU WANTED MORE THAN TWO UPGRADE CHOICES end end Obviously this is only necessary if you want more than one upgrade choice, and is a little rough around the edges. You probably optimise those else ifs, but the speed increase wouldn't be enormous. http://lua-users.org/wiki/SwitchStatementPuppetUpgradeDisplay wants to be a MOSParticle with a lifetime of 1 and the sprite of a display thing. You could use a dofile for the upgrading, which would make it simpler to read.
|
Mon Jun 28, 2010 12:12 pm |
|
|
carriontrooper
Joined: Mon Apr 13, 2009 12:27 pm Posts: 813 Location: Yogyakarta, Indonesia. A slice o' paradise.
|
Re: The Cordyc are coming... (WIP/releaseable)
Allright, I'll try to incorporate this for the gamepad/mouse users. Keyboard users will still have the normal combo of crouch+key.
Also, on the slate for the next strain(s): -gamepad/mouse compatibility -aerial unit upgrade for Puppet, would be a floating type -stationary brain which could spawn 'base' units (Puppet, Crawler, mobile brain) for a price -mobile brain that can be spawned from stationary brain or upgraded from a Crawler -stationary turret upgrade for Crawler -some sort of spore-spewing weapon, basically aerial mine dispenser -dropship? (not quite sure)
|
Mon Jun 28, 2010 2:49 pm |
|
|
Nocifer
Joined: Tue Mar 16, 2010 7:38 pm Posts: 447 Location: The Ninth Circle
|
Re: The Cordyc are coming... (WIP/releaseable)
Carriontrooper, these are quite lovely. I like the sprites, and this whole system of upgrades is kickass. I look forward to further updates of this mod avidly.
|
Mon Jun 28, 2010 2:56 pm |
|
|
Tokochiro
Joined: Mon Jun 28, 2010 3:54 am Posts: 806
|
Re: The Cordyc are coming... (WIP/releaseable)
Why not make a dropship that spews the green gas as a propeller?
|
Mon Jun 28, 2010 3:24 pm |
|
|
carriontrooper
Joined: Mon Apr 13, 2009 12:27 pm Posts: 813 Location: Yogyakarta, Indonesia. A slice o' paradise.
|
Re: The Cordyc are coming... (WIP/releaseable)
Tokochiro wrote: Why not make a dropship that spews the green gas as a propeller? Problem is, that'd be too cliche, and doesn't quite fit the theme I had. Aerial units would use baloons... and I'm not quite sure this faction even needs dropships...
|
Mon Jun 28, 2010 3:29 pm |
|
|
Lizardheim
DRL Developer
Joined: Fri May 15, 2009 10:29 am Posts: 4107 Location: Russia
|
Re: The Cordyc are coming... (WIP/releaseable)
A baloon that spits seeds would be awesome.
|
Mon Jun 28, 2010 3:31 pm |
|
|
Tokochiro
Joined: Mon Jun 28, 2010 3:54 am Posts: 806
|
Re: The Cordyc are coming... (WIP/releaseable)
I have an idea! Add mushrooms that drain the life out of your enemies and turns them into you units and spread in a tiberium-like way(lagging the *@!( out of CC)
|
Mon Jun 28, 2010 3:40 pm |
|
|
Lizardheim
DRL Developer
Joined: Fri May 15, 2009 10:29 am Posts: 4107 Location: Russia
|
Re: The Cordyc are coming... (WIP/releaseable)
Or simply some growth thing that grows along the ground and have units only able to build on that.
Expanision could be either with a builder unit or automatic growth.
|
Mon Jun 28, 2010 3:54 pm |
|
|
Culthero
Joined: Thu Mar 04, 2010 9:07 pm Posts: 126 Location: Turkey
|
Re: The Cordyc are coming... (WIP/releaseable)
Oh noes! teh CC forums are overrun by TRIFFIDS!*I like the plants taking over the CC world. With CaveCricket's spreading vines and this, the plants faction should absolutely be vanilla content. Adds a lot depth to the game's various stories. Also I like the transformations. Idea: A giant, Treebeard-Ent-sized plant plated with scrap attachable metal (rusty and orange/brown), bark, and vines for muscles. That actors one weapon will be a charge up vine fist that will constrict a smaller actor and inject it with spores by doing so. Constriction will require to hold fire that's why I said charge up. Idea2: brain vine/tree with fruits as brains out of cases (captured brains to feed on) and a ganglion at their center (original plant brain), drawn in the most gruesome way.
|
Mon Jun 28, 2010 4:29 pm |
|
|
The Decaying Soldat
Joined: Thu May 15, 2008 11:40 am Posts: 1527 Location: In heaven, everything is fine.
|
Re: The Cordyc are coming... (WIP/releaseable)
I just found that these guys are tiberium-proof. Holy crap! I'm going to send them in with heavy diggers. Bye bye, pesky tiberium
|
Mon Jun 28, 2010 6:00 pm |
|
|
Raven
Joined: Tue Aug 14, 2007 8:40 pm Posts: 259
|
Re: The Cordyc are coming... (WIP/releaseable)
I really like this. I'm guessing that you want them to be a primitive alien/organic faction? If so, maybe a drop pod that is like the headcrab canister, but organic and fleshy. That would be kind of... weird?
E: Was brainstorming, and came up with this idea. Maybe three kind of Cordyc could be together in a group, and if you press crouch *whatever* then it would combine them all into some kind of big Cordyc. Just an idea.
|
Mon Jun 28, 2010 6:13 pm |
|
|
Ociamarru
Joined: Wed Jul 01, 2009 11:46 pm Posts: 1930
|
Re: The Cordyc are coming... (WIP/releaseable)
This is pretty awesomesauce; I love the upgrading and how them using bioweapons means they can't really kill anything inorganic. I'll have to try this out with the tiberium mod and see how that goes, as it's been stated that they're immune. But yeah, I'd love to see another unit or two and some more transformations! The only one that I could think of that's not entirely ridiculous would be crouching and pressing a key (could be R again) would root the crab Cordyc and make them into a turret.
EDIT: Oh yeah, you need some awesome hanging biopod thing with tendrils for a brain-type, and maybe a Cordyc with one growing on its back could be the brain unit.
EDIT2: I forgot to mention. I like playing missions that have biological douchebags in them and then sending in Cordyc and pretending that they're taking over that section of the planet. I can't remember the mission, but I was trying to take out some brain deep within a Ronin base, and there was a sniper I converted. Then, it proceeded to convert a couple of others from inside, and by the time I was inside I had like 4 Cordyc (because 2 or 3 were shot first).
|
Mon Jun 28, 2010 7:27 pm |
|
|
The Egotist
Joined: Tue Feb 02, 2010 11:36 pm Posts: 130
|
Re: The Cordyc are coming... (WIP/releaseable)
One possible idea for a big cordyc would be to have a lua'ed list of actors who when killed, turn into a huge "Abomination" Cordyc. Obviously, the various giant mechs would be on the list, like the MPAM, the Behemoth, etc. The reason for the list would be so that players could easily edit new mechs into the list.
You could do the same thing with brain-bot/commanders, to become brain Cordycs which can maintain control for you side, even if your other brains are lost after you convert it.
|
Mon Jun 28, 2010 7:34 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
|
|