Author |
Message |
ss2man44
Joined: Fri Dec 08, 2006 2:49 am Posts: 130 Location: In a house.
|
Re: Epic CC moments
I do not know how I'm supposed to escape under these circumstances EDIT: WOW, that was fun. While fending off dummies, a Turbo Digger bounced to the soldier's feet, so I promptly picked it up and started digging down and to the left, towards all the gold. When the coast was clear, I ordered my brain bot to follow me through the tunnel. On the way to the gold, some dummies followed my units into the tunnel, so I selected the brain bot and began to open fire. Sadly, the AI is retarded and the deselected soldier also started to fire, and hit the brain bot once in the glass, thus lowering its health to 70 and causing it to slooowwwwly bleed to death. But, I continued, and at one point I dug upward and made a small room to sit the brain bot safely in for the time being. With the turbo digger in hand, I started once again digging for my goal: gold. I was out of resources and I desperately needed them to not only protect my brain, but allow it to escape safely in a craft. When I reached the gold and began mining, several dummies had found their way through the tunnel and under the pocket where my brain bot sat. They were dangerously close and I was running out of time. As soon as I had enough money, I ordered several nuclear air strikes on the base to clear out all remaining dummies and open a hole to the tunnel to fit a firestorm bomb into it in order to clear out the dangerously-close dummies. The game finally stopped lagging, so I ordered an automated missile launcher to take care of new incoming enemy aircraft. The very moment I got a drone carrying a firestorm bomb into the mouth of the now-exposed tunnel, the dummies had reached my brain and were literally pixels away with their Turbo Diggers. The very frame I had ordered the bomb to detonate, I heard the dreaded *crash* sound and the big red FAIL scrolled across my screen. I was sad to lose, but happy because that was the most epic "adventure" I had ever had in Cortex Command. I was SO close!
Last edited by ss2man44 on Fri Nov 13, 2009 7:34 am, edited 2 times in total.
|
Fri Nov 13, 2009 6:39 am |
|
|
Roon3
Joined: Sun May 11, 2008 12:50 pm Posts: 899
|
Re: Epic CC moments
More jump laser testing
|
Fri Nov 13, 2009 3:04 pm |
|
|
wiffles
Joined: Fri May 08, 2009 1:39 am Posts: 482 Location: Playing a children's card game
|
Re: Epic CC moments
|
Sun Nov 15, 2009 6:59 pm |
|
|
Roon3
Joined: Sun May 11, 2008 12:50 pm Posts: 899
|
Re: Epic CC moments
Upgrading in the future, its as easy as One! Two! Three!
|
Sun Nov 15, 2009 9:09 pm |
|
|
Grif
REAL AMERICAN HERO
Joined: Sat Jan 27, 2007 10:25 pm Posts: 5655
|
Re: Epic CC moments
don't mind me
|
Mon Nov 23, 2009 12:43 am |
|
|
Grif
REAL AMERICAN HERO
Joined: Sat Jan 27, 2007 10:25 pm Posts: 5655
|
Re: Epic CC moments
oh AI you so wacky
|
Mon Nov 23, 2009 7:00 am |
|
|
whitty
Joined: Sat Jun 16, 2007 2:31 am Posts: 2982 Location: Texas
|
Re: Epic CC moments
Weeeeeeeeeeeeeeeeeee lasery death.
|
Mon Nov 23, 2009 9:04 pm |
|
|
Hobbesy
Joined: Mon Feb 11, 2008 11:11 pm Posts: 711 Location: East of Applachia, West of the Mississippi
|
Re: Epic CC moments
Quote: (8:49:48 PM) Duh: MINIGUNS BELONG IN TWO HANDS AT ONCE (8:49:50 PM) Duh: YES (I'm converting a bunch of B18/20 mods and sticking them in one .rte.)
|
Fri Nov 27, 2009 3:53 am |
|
|
whitty
Joined: Sat Jun 16, 2007 2:31 am Posts: 2982 Location: Texas
|
Re: Epic CC moments
|
Fri Nov 27, 2009 4:38 am |
|
|
Kyred
Joined: Sun May 31, 2009 1:04 am Posts: 308
|
Re: Epic CC moments
MOPixels drawing is where it's at . This actor can take a copy a weapon and then create more weapons out of the copy. Oh, and it can work with any weapon too. Even user made ones
|
Sat Nov 28, 2009 1:09 am |
|
|
CrazyMLC
Joined: Fri Dec 22, 2006 4:20 am Posts: 4772 Location: Good news everyone!
|
Re: Epic CC moments
Acid rain.
Attachments:
ScreenDump.bmp [ 1 MiB | Viewed 11235 times ]
|
Mon Nov 30, 2009 2:09 am |
|
|
Hobbesy
Joined: Mon Feb 11, 2008 11:11 pm Posts: 711 Location: East of Applachia, West of the Mississippi
|
Re: Epic CC moments
Gents. (Yes, I gave credit. I also added Lua and did some bug fixing.) (Goddammit, I used the wrong screen to add the actors. There are more.)
|
Mon Dec 07, 2009 2:22 am |
|
|
Kyred
Joined: Sun May 31, 2009 1:04 am Posts: 308
|
Re: Epic CC moments
Trying to improve my weapon crafter by making the weapon "grow" out over time. It's laggy and I forgot to put in the fix to prevent it from drawing the picture inverted on the Y-axis. Back to the drawing board.
|
Tue Dec 08, 2009 4:23 am |
|
|
Roon3
Joined: Sun May 11, 2008 12:50 pm Posts: 899
|
Re: Epic CC moments
OK... I screwed something up. For those who want it, here's the code: Code: function Create(self) self.curDist = 20;
local i = Vector(0,0); i.X = math.cos(self.RotAngle) * self.curDist * -1; i.Y = math.sin(self.RotAngle) * self.curDist; local ParentID = SceneMan:CastMORay(self.Pos, i, self.ID, -1, false, 0); if ParentID ~= 255 then local j = MovableMan:GetRootMOID(ParentID); self.Parent = MovableMan:GetMOFromID(j);
for i = 0, MovableMan:GetMOIDCount() do if MovableMan:GetRootMOID(i) == self.Parent.ID and MovableMan:GetMOFromID(i).PresetName == "Grapple Gun" then self.gun = MovableMan:GetMOFromID(i); end end if self.Parent:IsActor() then if ToHeldDevice(self.gun):IsActivated() and not ToHeldDevice(self.gun):IsReloading() then -- Has to do with this line local Smoke = CreateAEmitter("Smoke Emitter"); Smoke.Pos = self.Pos; Smoke.RotAngle = ToActor(self.Parent):GetAimAngle(true); MovableMan:AddParticle(Smoke); end end end self.Lifetime = 1; end
|
Fri Dec 11, 2009 2:59 pm |
|
|
Kyred
Joined: Sun May 31, 2009 1:04 am Posts: 308
|
Re: Epic CC moments
lol what? And on a totally unrelated note, I just got owned in the face... That shot was so awesome, he drops his gun and his head explodes
|
Tue Dec 29, 2009 10:21 am |
|
|
|
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
|
|