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

This Month's Specials

Raging Tiger- Save $9.00
World Supremacy- Save $9.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V > SEV Modders Knowledge Base

Reply
 
Thread Tools Display Modes
  #111  
Old October 11th, 2006, 05:36 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: Modding SEV Thread Questions

The old class should disappear, but your Upgrade button won't upgrade any ships to the new class.

Speaking of, let me check to make sure this doesn't cause problems..

EDIT: ok, with components it works fine. If you press Upgrade, the existing components are simply left on the ship. See the note below.

EDIT final:
Ok, it does work fine for ships; I just had the syntax on the forumla wrong.

A little note- once something is removed in this fashion, you can NOT use it in a new design, or upgrade a design that uses it. You must remove all the removed components to satisfy a "You have used technolgy our empire does not understand" warning.
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
Reply With Quote
  #112  
Old October 11th, 2006, 06:29 PM

Baron Munchausen Baron Munchausen is offline
General
 
Join Date: Aug 2000
Location: Ohio, USA
Posts: 4,323
Thanks: 0
Thanked 0 Times in 0 Posts
Baron Munchausen is on a distinguished road
Default Re: Modding SEV Thread Questions

Quote:
StarShadow said:
My head hurts...
Here, this will make your head hurt a little more. It is possible to get tech levels from other fields than what the weapon (or other component) itself requires. For example, I like to link seeker structure to Armor tech, and defense modifier to Defense (ECM) tech.

Weapon Seeker Tonnage Structure Formula := 30 + (Get_Empire_Tech_Level("Armor") * 2)
Weapon Seeker Defense Modifier Formula := 30 + (Get_Empire_Tech_Level("Defense Systems") * 2)

A little more tweaking (such as linking damage to warhead tech or linking seeker speed to engine tech, which is tricky with each engine type being a seperate tech now) and you could have missile launchers as a stand-alone tech and missile performance being completely independent of them. In this case, I am tempted to put missile launchers into an industrial tech field because they are a sort of 'automation' technology. Missile launchers could get smaller and/or faster as tech increases, but the actual missiles would be better as soon as your propulsion or armor or ECM tech improved. Mod the ordnance storage out of the launcher and you've got a missile system ready for an "Honor Harrington" mod.
Reply With Quote
  #113  
Old October 11th, 2006, 06:32 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: Modding SEV Thread Questions

the tricky part is making this all obvious to the player, and balancing it!
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
Reply With Quote
  #114  
Old October 11th, 2006, 06:53 PM
Captain Kwok's Avatar

Captain Kwok Captain Kwok is offline
National Security Advisor
 
Join Date: Oct 2001
Location: Toronto, Canada
Posts: 5,623
Thanks: 1
Thanked 14 Times in 12 Posts
Captain Kwok is on a distinguished road
Default Re: Modding SEV Thread Questions

You can use blank abilities that can utilize formulas in for amount1 and amount2 that can report to the player how much resistance a missile has or how fast it goes etc - or for any description that you want really.
__________________
Space Empires Depot | SE:V Balance Mod
Reply With Quote
  #115  
Old October 11th, 2006, 07:35 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: Modding SEV Thread Questions

Quote:
Baron Munchausen said:
Here, this will make your head hurt a little more. It is possible to get tech levels from other fields than what the weapon (or other component) itself requires. For example, I like to link seeker structure to Armor tech, and defense modifier to Defense (ECM) tech.

Weapon Seeker Tonnage Structure Formula := 30 + (Get_Empire_Tech_Level("Armor") * 2)
Weapon Seeker Defense Modifier Formula := 30 + (Get_Empire_Tech_Level("Defense Systems") * 2)

A little more tweaking (such as linking damage to warhead tech or linking seeker speed to engine tech, which is tricky with each engine type being a seperate tech now) and you could have missile launchers as a stand-alone tech and missile performance being completely independent of them. In this case, I am tempted to put missile launchers into an industrial tech field because they are a sort of 'automation' technology. Missile launchers could get smaller and/or faster as tech increases, but the actual missiles would be better as soon as your propulsion or armor or ECM tech improved. Mod the ordnance storage out of the launcher and you've got a missile system ready for an "Honor Harrington" mod.
Absolutely brilliant...mind if I rip it off?

I'm planning on an HH mod, and and SFB mod, and this will help tons...

Also I hope some industrious persons start adding this to the modding section of the wiki...
Reply With Quote
  #116  
Old October 11th, 2006, 09:22 PM
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: Modding SEV Thread Questions

If you want to get really fancy:

instead of GETL, or [Level], use (min(GETL,[Level]+5])

That way, you get 5 "free upgrades" before you have to retrofit to gain more improvements.
Reply With Quote
  #117  
Old October 11th, 2006, 11:43 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: Modding SEV Thread Questions

Someone is going to have to write down all these equations with good explanations...I feel like I'm back in algebra class again...and that was 20 years ago...
Reply With Quote
  #118  
Old October 12th, 2006, 03:31 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: Modding SEV Thread Questions

A few more little bits:

A seeker speed of .001 is equal to a ship speed of 1.
Weapon ranges are capped at 500ls- about 2 and a half combat screens, with the default zoom level.
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
Reply With Quote
  #119  
Old October 12th, 2006, 05:54 PM

Baron Munchausen Baron Munchausen is offline
General
 
Join Date: Aug 2000
Location: Ohio, USA
Posts: 4,323
Thanks: 0
Thanked 0 Times in 0 Posts
Baron Munchausen is on a distinguished road
Default Re: Modding SEV Thread Questions

Hey! Now why did he cap weapon ranges? Why shouldn't battles across the map be possible? Especially with seekers. (HH mod again... ) Time for another request.
Reply With Quote
  #120  
Old October 12th, 2006, 05:57 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: Modding SEV Thread Questions

You have to use units for a proper HH mod anyway- no laser-heads otherwise.
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
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 12:37 PM.


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