|  | 
| 
 
 
 
 
 
 
 
 
    
    
 |  | 
 
 
	
		|  |  |  
	
	
		
	
	
	| 
			
			 
			
				January 21st, 2007, 01:13 PM
			
			
			
		 |  
	| 
		
			|  | 
 Major |  | 
					Join Date: Jan 2004 Location: Taganrog, Russia 
						Posts: 1,087
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 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. |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 12:37 AM
			
			
			
		 |  
	| 
		
			
			| 
 Corporal |  | 
					Join Date: Apr 2004 Location: Adelaide, Australia 
						Posts: 50
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 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."
 |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 03:10 AM
			
			
			
		 |  
	| 
		
			|  | Shrapnel Fanatic |  | 
					Join Date: Feb 2001 Location: Waterloo, Ontario, Canada 
						Posts: 11,451
					 Thanks: 1 
		
			
				Thanked 4 Times in 4 Posts
			
		
	      |  |  
    
	| 
				 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.
 
				__________________ 
				Things you want: |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 03:20 AM
			
			
			
		 |  
	| 
		
			|  | 
 Shrapnel Fanatic |  | 
					Join Date: Dec 2000 Location: USA 
						Posts: 15,630
					 Thanks: 0 
		
			
				Thanked 31 Times in 19 Posts
			
		
	      |  |  
    
	| 
				 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.
 |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 04:35 AM
			
			
			
		 |  
	| 
		
			|  | 
 Sergeant |  | 
					Join Date: Oct 2006 Location: Kingston, Ontario 
						Posts: 289
					 Thanks: 1 
		
			
				Thanked 3 Times in 3 Posts
			
		
	      |  |  
    
	| 
				 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. |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 07:21 AM
			
			
			
		 |  
	| 
		
			
			| 
 First Lieutenant |  | 
					Join Date: Aug 2003 Location: New Zealand 
						Posts: 776
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 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]
 |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 11:15 AM
			
			
			
		 |  
	| 
		
			|  | 
 Brigadier General |  | 
					Join Date: Nov 2001 Location: WA 
						Posts: 1,894
					 Thanks: 5 
		
			
				Thanked 3 Times in 3 Posts
			
		
	      |  |  
    
	| 
				 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
 |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 12:01 PM
			
			
			
		 |  
	| 
		
			|  | 
 General |  | 
					Join Date: Apr 2001 Location: Cincinnati, Ohio, USA 
						Posts: 4,547
					 Thanks: 1 
		
			
				Thanked 7 Times in 5 Posts
			
		
	      |  |  
    
	| 
				 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?
 |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 01:09 PM
			
			
			
		 |  
	| 
		
			|  | 
 Sergeant |  | 
					Join Date: Oct 2006 Location: Kingston, Ontario 
						Posts: 289
					 Thanks: 1 
		
			
				Thanked 3 Times in 3 Posts
			
		
	      |  |  
    
	| 
				 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
 |  
	
		
	
	
	| 
			
			 
			
				January 22nd, 2007, 03:06 PM
			
			
			
		 |  
	| 
		
			|  | 
 Captain |  | 
					Join Date: Apr 2004 Location: Texas 
						Posts: 962
					 Thanks: 0 
		
			
				Thanked 3 Times in 3 Posts
			
		
	      |  |  
    
	| 
				 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? |  
	
		
	
	
	
	
	
	
	| 
	|  Posting Rules |  
	| 
		
		You may not post new threads You may not post replies You may not post attachments You may not edit your posts 
 HTML code is On 
 |  |  |  |  |