.com.unity Forums

.com.unity Forums (http://forum.shrapnelgames.com/index.php)
-   Space Empires: IV & V (http://forum.shrapnelgames.com/forumdisplay.php?f=20)
-   -   Drukman and Shooter Unearthed! (http://forum.shrapnelgames.com/showthread.php?t=29996)

Randallw September 26th, 2006 05:46 AM

Re: Drukman and Shooter Unearthed!
 
I never got to give you an opinion when you gave me what I assume was the beta as messenger stopped responding.

I found 2 things a bit difficult.

1. The fact that the enemy can come up behind you and yet when you fire at them after they pass they move faster than your shots.

2. Those mines are almost impossible to see. Hard to hit with the ship I was using, and whats more the level didn't seem to end. It was about the 3rd level and I played for like 20 minutes before I realised it wasn't going to end, so I quit. The first 2 levels were much shorter.

dogscoff September 26th, 2006 06:45 AM

Re: Drukman and Shooter Unearthed!
 
Wooha! Go Fyron!

A suggested feature:
- Have it pick up shipsets from SE4's races folder and include them in the game.
- It could even read the AI files for the shipset and adjust the ships' behaviours accordingly (organic races get green weapons, races with high defense dodge around more, races with propulsion experts move quicker etc) http://forum.shrapnelgames.com/images/smilies/happy.gif

Of course, coding this kind of thing is easy when you're asking someone else to do it...

Fyron September 26th, 2006 01:34 PM

Re: Drukman and Shooter Unearthed!
 
Randall:
Yeah, the version I sent you just had a test loop for level 3. It is fully implemented now. http://forum.shrapnelgames.com/images/smilies/happy.gif Also, I made weaponry move a little faster in general.

About mines: They are cloaked, you know. You want to see some real insanity? Try hitting 6 from the menu screen to go to the level 6 test bed (not on the keypad, the other 6). http://forum.shrapnelgames.com/image...ies/stupid.gif

Dogscoff:
You, good sir, are nuts! Heh.

TurinTurambar September 27th, 2006 01:14 AM

Re: Drukman and Shooter Unearthed!
 
I can't get past level 3 dammit.

dogscoff September 27th, 2006 10:41 AM

Re: Drukman and Shooter Unearthed!
 
OK, played it a bit more. Sorry Fyron, i confess I posted my suggestions without actually playing it, so i didn't realise you'd already used several different races with their own abilities.

I do have another suggestion though: The game plays well enough using the num-pad for up/down/left/right and space for fire, but how about implementing the numpad diagonals as well, for extra killability? Would make it much more controllable.

Oh, and what do the little cargo bay powerups do?

Oh, and what does "Gauntlet" mean?

I like playing as the terran fighter: fast reload and high speed is *everything* in a game of this nature.

Fyron September 27th, 2006 02:53 PM

Re: Drukman and Shooter Unearthed!
 
I tried the diagonals, but the vertical movement speed was doubled if you pushed both up-left and up, for example. I could not find a way to prevent this. You can move diagonally by pushing two direction keys at once.

Cargo bays give you 50 points.

Click on Gauntlet and see. http://forum.shrapnelgames.com/images/smilies/happy.gif It is a game mode similar to Ed Marshall's shooter, where the game consists of ever-increasing numbers of enemy ships and the goal is to survive as long as you can.

Ed Kolis September 27th, 2006 05:45 PM

Re: Drukman and Shooter Unearthed!
 
Um, can't you use boolean conditions to prevent that problem?

<font class="small">Code:</font><hr /><pre>
if (keyPressed(NUMPAD_7))
{
// exclusive or
if (keyPressed(NUMPAD_8) ^^ !keyPressed(NUMPAD_4))
{
vx = -sqrt(2);
vy = -sqrt(2);
}
else if (keyPressed(NUMPAD_8))
{
vx = 0;
vy = -1;
}
else if (keyPressed(NUMPAD_4))
{
vx = -1;
vy = 0;
}
}
...
</pre><hr />

Fyron September 28th, 2006 01:26 AM

Re: Drukman and Shooter Unearthed!
 
The problem is that I don't know how to apply it to Game Maker.

Fyron May 1st, 2007 10:36 PM

Re: Drukman and Shooter Unearthed!
 
http://www.spaceempires.net/files/temp/SEShooter22.rar

Two new levels! Woo!


All times are GMT -4. The time now is 07:46 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2025, Shrapnel Games, Inc. - All Rights Reserved.