.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $6.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V

Reply
 
Thread Tools Display Modes
  #131  
Old January 21st, 2007, 01:13 PM
Aiken's Avatar

Aiken Aiken is offline
Major
 
Join Date: Jan 2004
Location: Taganrog, Russia
Posts: 1,087
Thanks: 0
Thanked 0 Times in 0 Posts
Aiken is on a distinguished road
Default Re: SEV Beta History starting V1.0

Quote:
22. Added - Cheat code "runturns X" which will run X turns with all players as computer players.
Rulez!
/me types runturns 65535 and anticipates the Skynet.
Reply With Quote
  #132  
Old January 22nd, 2007, 12:37 AM

Solymr Solymr is offline
Corporal
 
Join Date: Apr 2004
Location: Adelaide, Australia
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
Solymr is on a distinguished road
Default Re: SEV Beta History starting V1.0

Quote:
President_Elect_Shang said:
Latest info:

5. Fixed - In DamageTypes.txt, Damage Percent for armor and shields can now be zero or negative and it will not skip that section entirely when applying damage.

Just wondering what exactly that means, if you set it to zero or below, it'll still damage the armor or shield sections? If that's the case, why set it to zero or below at all?
__________________
"They are a dying people. We should let them pass."
"Who, the Narn or the Centauri?"
"Yes."
Reply With Quote
  #133  
Old January 22nd, 2007, 03:10 AM
Suicide Junkie's Avatar
Suicide Junkie Suicide Junkie is offline
Shrapnel Fanatic
 
Join Date: Feb 2001
Location: Waterloo, Ontario, Canada
Posts: 11,451
Thanks: 1
Thanked 4 Times in 4 Posts
Suicide Junkie is on a distinguished road
Default Re: SEV Beta History starting V1.0

Previously, a damage percent of zero would mean that the armor is skipped.
If you want to skip armor, that is what penetration percent = 100 is for.
Damage percent zero should mean zero damage taken. (And now it does)

As far as hardcode changes, this implies only a removal of the special case checks, and lets the mathematics be free.



Practical example:

Start with the incident damage points from a weapon.

Split it into Penetrating and Absorbing portions...
Penetration = Damage * penetration percent
Absorbed = Damage - Penetration


EG:
Given a 50 damage weapon.
100% penetration = 0 points to the armor, 50 points skip to the hull.
50% penetration = 25 points to the armor, 25 points to the hull
0% penetration = 50 points to the armor, 0 points to the hull.
Logically then,
200% penetration = -50 points to the armor, 100 points to the hull
-100% penetration = 50 points to the armor, -50 points to the hull

Then, apply the damage percent:
Eg:
HP = HP - Absorbed * damage percent
If HP<0 then penetration = penetration -(HP / damage percent)
// If armor is destroyed, overkill damage becomes penetrating damage

50 damage points absorbed by armor means...
200% damage = 100 HP lost.
100% damage = 50 HP lost.
50% damage = 25 HP lost.
0% damage = 0 HP lost.
-100% damage = 50 HP regained.

Finding a use for the options is up to you.


For example, "antimatter armor"
-------------
Against "physical" damage type, it has a penetration percent of 200, and a damage percent of -100
Thus 50 damage worth of DUC projectile means 100 damage to the hull, and 50 damage to the armor. (Atomic KABOOM!)

Against an Antiproton Beam, doing "antimatter" damage type, it could have a penetration percent of zero and a damage percent of zero. Making the ship immune to APBs until the armor is destroyed by other weapons.

Also consider a Fantasy mod.
Fire damage vs Fire armor could have a penetration percent of 5, and a damage percent of -100.

Thus a 20 points fire spell would deal 1 damage to the target, and boost the hitpoints of the target's armor by 19 points.
Reply With Quote
  #134  
Old January 22nd, 2007, 03:20 AM
Atrocities's Avatar

Atrocities Atrocities is offline
Shrapnel Fanatic
 
Join Date: Dec 2000
Location: USA
Posts: 15,630
Thanks: 0
Thanked 30 Times in 18 Posts
Atrocities is on a distinguished road
Default Re: SEV Beta History starting V1.0

All of these files and scripts are way over my head... I am either to old or to stupid to try and figure them all out.
__________________
Creator of the Star Trek Mod - AST Mod - 78 Ship Sets - Conquest Mod - Atrocities Star Wars Mod - Galaxy Reborn Mod - and Subterfuge Mod.
Reply With Quote
  #135  
Old January 22nd, 2007, 04:35 AM
Ironmanbc's Avatar

Ironmanbc Ironmanbc is offline
Sergeant
 
Join Date: Oct 2006
Location: Kingston, Ontario
Posts: 289
Thanks: 1
Thanked 3 Times in 3 Posts
Ironmanbc is on a distinguished road
Default Re: SEV Beta History starting V1.0

Gee do I feel like a 486 right now, I'm still learning how to script SE4 and to all the modders out there I wish you the best of luck to making a mod that works (the A.I. can use all the new stuff that you put in) this is going to be the year of learning and I just wanted to say thanks to all of you.
Reply With Quote
  #136  
Old January 22nd, 2007, 07:21 AM

se5a se5a is offline
First Lieutenant
 
Join Date: Aug 2003
Location: New Zealand
Posts: 776
Thanks: 0
Thanked 0 Times in 0 Posts
se5a is on a distinguished road
Default Re: SEV Beta History starting V1.0

It's not that hard if you sit down and read it step by step...
if youve looked at aarons forumlas... well, just don't go there, they are not easy to follow. there are far simpiler ways to write them (the weapon damage at range formuas)

Have you tested these now SJ? does negitive damage *fix* broken components/armor and/or add more hitpoints to them? or does it get ignored alltogether?
__________________
[img]/threads/images/Graemlins/Flag_NewZeland.gif[/img]
Reply With Quote
  #137  
Old January 22nd, 2007, 11:15 AM
President_Elect_Shang's Avatar

President_Elect_Shang President_Elect_Shang is offline
Brigadier General
 
Join Date: Nov 2001
Location: WA
Posts: 1,894
Thanks: 5
Thanked 3 Times in 3 Posts
President_Elect_Shang is on a distinguished road
Default Re: SEV Beta History starting V1.0

I thought I would go nuts when I first sat down to look over modding SE5. After a while you just sort of start to see the patterns. Once you see it you can shape it into what you want. I am still stretching to shape new things. That has always been my problem/challenge though. Once I learn I can start to recombine and create fusions but I can't seem to create novel new ideas. Anyway I'm drifting, modding isn't so hard once you invest some time. I think what will keep our numbers low in the first year or so will be (a) the lack of info for learning and (b) the shock you get when first look under the hood.

Now about those negative values. You can't give a component more HP than it had to start with so I am assuming additional are lost. How about trying to mod a component that will absorb those points rather than lose them. A form of capacitor maybe? One type for armor slots and one for internal slots would make for an all new strategy. A new line of weapons to knock the capacitors out by giving them an AI Tag then have the weapon target only that. Make the capacitors large and costly... What ability would you need to absorb the surplus HP? I have maybe one idea but would need to look it up.

On the fantasy example you gave SJ. I understand you were giving an example but when I read it I couldn't help think of Avatar and wonder what a mod based on it would be like.
__________________
President Elect Shang; Tal-Re Republic of Free Worlds
Welcome to Super Vegeta’s Big Bang Attack… Welcome to OBLIVION!
“Don Panoz made an awesome car and… an incinerator” Bill Auberlen
Reply With Quote
  #138  
Old January 22nd, 2007, 12:01 PM
Ed Kolis's Avatar

Ed Kolis Ed Kolis is offline
General
 
Join Date: Apr 2001
Location: Cincinnati, Ohio, USA
Posts: 4,547
Thanks: 1
Thanked 7 Times in 5 Posts
Ed Kolis is on a distinguished road
Default Re: SEV Beta History starting V1.0

Heh, healing beams are the first thing I thought of with that negative damage percent... too bad you can't fire on and heal your own ships

Goblin 0001 fires Fire Arrow at Berzerker 0001! (10 damage)
Goblin 0002 fires Fire Arrow at Berzerker 0001! (10 damage)
Goblin 0003 fires Fire Arrow at Berzerker 0001! (10 damage)
CLERIC!!!
Cleric 0001 fires Healing Beam III at Berzerker 0001! (-30 damage)

__________________
The Ed draws near! What dost thou deaux?
Reply With Quote
  #139  
Old January 22nd, 2007, 01:09 PM
Ironmanbc's Avatar

Ironmanbc Ironmanbc is offline
Sergeant
 
Join Date: Oct 2006
Location: Kingston, Ontario
Posts: 289
Thanks: 1
Thanked 3 Times in 3 Posts
Ironmanbc is on a distinguished road
Default Re: SEV Beta History starting V1.0

How about this...

A repair ship the fix's ships IN combat (add armour points per sec like 5.00 per sec or 1 comp every 10.00 per sec)

we could ask Aaron about that
Reply With Quote
  #140  
Old January 22nd, 2007, 03:06 PM
Kana's Avatar

Kana Kana is offline
Captain
 
Join Date: Apr 2004
Location: Texas
Posts: 962
Thanks: 0
Thanked 3 Times in 3 Posts
Kana is on a distinguished road
Default Re: SEV Beta History starting V1.0

Quote:
Ed Kolis said:
Heh, healing beams are the first thing I thought of with that negative damage percent... too bad you can't fire on and heal your own ships
Can be fired on and destroyed by Owner is an option for units...does this apply to ships as well?
Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 06:42 PM.


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