.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
  #41  
Old September 26th, 2006, 04:10 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:
Phoenix-D said:
There are no range breaks; that's display-only..

Weapon damage is determined by a formula; as far as I can that uses the exact range the weapon is at, and doesn't break down by 10s. No idea how to change the display part though.
But the display also shows the to hit modifers, and I would assume that is based on formulas as well, based on range and damage? Then the display would not show accurate info...
Reply With Quote
  #42  
Old September 26th, 2006, 04:11 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

Can Formula's be used in any field, or are they restricted to certain hard-coded fields?
Reply With Quote
  #43  
Old September 26th, 2006, 04:20 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

Quote:
Kana said:
Quote:
Phoenix-D said:
There are no range breaks; that's display-only..

Weapon damage is determined by a formula; as far as I can that uses the exact range the weapon is at, and doesn't break down by 10s. No idea how to change the display part though.
But the display also shows the to hit modifers, and I would assume that is based on formulas as well, based on range and damage? Then the display would not show accurate info...
To-hit modifiers have their own line for a seperate formula. Range and damage get tossed into the same forumla. The display will always be in what it tells you- it just may not always give *useful* information (eg if all your weapons have a range between 1 and 10, only the very first box will be filled in..I think.)
__________________
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
  #44  
Old September 26th, 2006, 04:22 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:
Phoenix-D said:
Quote:
Kana said:
Quote:
Phoenix-D said:
There are no range breaks; that's display-only..

Weapon damage is determined by a formula; as far as I can that uses the exact range the weapon is at, and doesn't break down by 10s. No idea how to change the display part though.
But the display also shows the to hit modifers, and I would assume that is based on formulas as well, based on range and damage? Then the display would not show accurate info...
To-hit modifiers have their own line for a seperate formula. Range and damage get tossed into the same forumla. The display will always be in what it tells you- it just may not always give *useful* information (eg if all your weapons have a range between 1 and 10, only the very first box will be filled in..I think.)
Grim...
Reply With Quote
  #45  
Old September 26th, 2006, 04:24 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

I don't know for sure if the display can be changed or not..
__________________
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
  #46  
Old September 26th, 2006, 04:45 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

Fields that can use formulas are labeled "Blah blah Formula".

This line details the "range blocks":
Weapon Space At Range Distance Increment := 10.0

If you were to change this to 1.0 and had a weapon go to 9 range, it would likely fill up the first row of range boxes (which would still read 10...90 since they are just a .bmp image).

There's a couple of ways to modify accuracy.

This line can change the rate that accuracy changes at range.
Weapon Space To Hit Modifier Formula := 0 - ([%Range%] * 0.5)

The above example would have accuracy decrease at half the range. That is at 50 range, it would have -25% penalty.

Alternatively you can change this value:
Weapon Space To Hit Modifier Formula := 25.0

Which adds a blanket 25% to hit at all valid ranges.
__________________
Space Empires Depot | SE:V Balance Mod
Reply With Quote
  #47  
Old September 28th, 2006, 02:00 AM
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:
Captain Kwok said:
Fields that can use formulas are labeled "Blah blah Formula".
This is good to know, and after looking at the data file, I noticed that what I was worried about actually has a Blah Blah Formula label...now the question is find the right formula, and syntax of formula to get what I want...

Basically I was looking for the Plasma Torpedo, from SE3, and Star Fleet Battles. The PT tracks like a seeker, and starts out with a set amount of damage, which decrease in range blocks the longer it takes to get to the target, but can be shot by beam weapons to decrease the damage it does. So basically the structure/HP of the seeker is equal to the current damage of the torpedo.

Weapon Space At Range Distance Increment := 10.0
Weapon Space Min Damage At Range := 0.0
Weapon Space Max Damage At Range := 0.0
Weapon Space Min Damage Modifier Formula
Weapon Space Max Damage Modifier Formula
Weapon Seeker Tonnage Structure Formula
Weapon Seeker Defense Modifier Formula

I figure between all of these I can mod it to get what I want...just have to figure out how...
Reply With Quote
  #48  
Old September 28th, 2006, 02:08 AM

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

Everything except the last part is doable.

I'm not entirely sure if you can tie the fields together like that..
__________________
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
  #49  
Old September 28th, 2006, 11:33 AM
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: Modding SEV Thread Questions

In SE2 seekers by default lost damage potential as they were damaged... I wonder why Aaron took that out
__________________
The Ed draws near! What dost thou deaux?
Reply With Quote
  #50  
Old September 28th, 2006, 01:18 PM

MasterChiToes MasterChiToes is offline
Corporal
 
Join Date: Sep 2006
Posts: 164
Thanks: 0
Thanked 0 Times in 0 Posts
MasterChiToes is on a distinguished road
Default Re: Modding SEV Thread Questions

Sorry to stretch the thread topic... but has anyone had any luck with planet textures? (in the models directory)
I've made several of them (256x256 24bit bmps) but for some reason they all crash the game when the minimap is used to switch to a system containing the new planet texture. I can't tell if I have the format wrong, if this is bug related, or if there is some tricky requirement for the texture designs.
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 05:12 AM.


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