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

This Month's Specials

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

   







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

Reply
 
Thread Tools Display Modes
  #1  
Old October 20th, 2006, 03:11 PM

Yoda Yoda is offline
Private
 
Join Date: Nov 2005
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Yoda is on a distinguished road
Default Shield Mounts?

I am trying to create a shield mount, but I cant figure out how to modify the shield output. I could do it in SEIV, is it possible in V? What abilities can be modified with mounts other than those used in the stock files?
Reply With Quote
  #2  
Old October 20th, 2006, 07: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 Modding Process

A general question...

When you make a mod, what process to you follow?
How much pre planning do you do? What do you do?
Which data file do you start with first? Second?
Do you start from scratch, or do you just type over other entries?
Reply With Quote
  #3  
Old October 20th, 2006, 07:35 PM

aegisx aegisx is offline
Second Lieutenant
 
Join Date: Sep 2006
Posts: 482
Thanks: 0
Thanked 0 Times in 0 Posts
aegisx is on a distinguished road
Default Re: Modding Process

Which forula is responsible for a weapons accuracy?
Reply With Quote
  #4  
Old October 20th, 2006, 08:12 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 Process

That'd be the to-hit forumla right below the damage. It starts out as 100 (by default, defined in settings.txt) and goes from there.
__________________
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
  #5  
Old October 20th, 2006, 08:15 PM

aegisx aegisx is offline
Second Lieutenant
 
Join Date: Sep 2006
Posts: 482
Thanks: 0
Thanked 0 Times in 0 Posts
aegisx is on a distinguished road
Default Re: Modding Process

so what does 0 - [%Range%] actually mean in that context?

if range is 10... 0 - 10 = -10...
Reply With Quote
  #6  
Old October 20th, 2006, 08:25 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 Process

Correct. So the actual chance to hit would be 90% (since it starts at 100, - the penalty)
__________________
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
  #7  
Old October 20th, 2006, 08:29 PM

aegisx aegisx is offline
Second Lieutenant
 
Join Date: Sep 2006
Posts: 482
Thanks: 0
Thanked 0 Times in 0 Posts
aegisx is on a distinguished road
Default Re: Modding Process

Ah ok, got it. What kind of value is Range?
Reply With Quote
  #8  
Old October 21st, 2006, 12:03 AM

Barnacle Bill Barnacle Bill is offline
Sergeant
 
Join Date: Nov 2000
Location: Somewhere on the wine-dark sea...
Posts: 236
Thanks: 0
Thanked 0 Times in 0 Posts
Barnacle Bill is on a distinguished road
Default Re: Modding Process

Quote:
Kana said:
A general question...

When you make a mod, what process to you follow?
How much pre planning do you do? What do you do?
Which data file do you start with first? Second?
Do you start from scratch, or do you just type over other entries?
I've never actually published a mod, but I mod the heck out of the game for my own amusement.

The first thing is documentation. Weeks or months down the road, there will be another patch. In SEIV, there was the TDM mod, which I always used as the base for mine - and it had new versions at least a few weeks after any vanilla patch (sometimes in between). Then I need to update my homegrown mod. So, you have to keep straight exactly what you did, file by file. I use a text file for that...

I always start with the base files from the game or mod I'm editing. The first thing I do is to capture in my mod notes file what the big picture is - what I'm trying to accomplish. So I'll write at the top (above the file by file details) stuff like...

"BC1 - separate warships & auxilliaries. Need to restrict warship hulls to not include non-allowed systems. This would appear to be done via requirement Get_Design_Ability_Component_Count("<ability>") <= 0, where <ability> is the actual ability type of the component. Also looks like Get_Design_Specific_Component_Count("<component>") <= 0 would work, with <component> being the actual name of the component to exclude. The latter would be required to distinguish between fighter/drone launches vs satellite/mine launchers. Need to use Get_Design_Specific_Component_Count("<component>") to restict number of actual Supply Storage, Ordnance Storage & Solar Collector components individually by warship hull size, to allow a reasonable amount but preclude making warship-hulled ammo or supply ships. Want to restrict weapons on non-warships - how (maybe give all "auxilliary systems" the cargo ability with amount 0 and let the 50% cargo rule handle it)."

As you can see, I make notes to myself about what might work - helps me to remember why I did something. Then, as I note specific changes in the files I'll put "[BC1]" at the end of the change entry if that was in support of the "Big Change" described under BC1.

That done, usually I do the techs file first, since everything else depends on them. I try to test little bits at a time, because if you spend all day modding and then it won't load, it's hard to figure out what you screwed up. The modding docs are pretty sparse (even in SEIV - they are positively missing so far for SEV), so you have to run little experiments to see how things really work. Cheat codes are your friend when doing that...
Reply With Quote
  #9  
Old October 21st, 2006, 10:12 PM

shinigami shinigami is offline
Corporal
 
Join Date: Mar 2006
Posts: 117
Thanks: 0
Thanked 0 Times in 0 Posts
shinigami is on a distinguished road
Default Re: Modding Process

Here's a cool one;

In SEIV if you wanted to tie a modified version of a standard component or facility to a racial trait you had to create a new tech area and a new version of the comp or facility. In SEV you can just change the original comp or facility like so,
Code:
 snip
Ability 1 Type := Space Yard
Ability 1 Description := Can construct with [%Amount2%] minerals per turn.
Ability 1 Scope := Space Object
Ability 1 Range Formula := 0
Ability 1 Amount 1 Formula := 1
Ability 1 Amount 2 Formula := iif(Empire_Has_Racial_Trait("Poor Builders"), 1000
+ (([%Level%] - 1) * 100), 2000 + (([%Level%] - 1) * 200))
snip



By going this route you could easily have a Temporal race use the same spaceyard as all the other races.

Edit: added a linebreak for formatting.
Reply With Quote
  #10  
Old October 21st, 2006, 11:08 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 Process

That would also cause the spaceyard rate to double as soon as the regular races invade and replace the poor builders.
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 07:03 PM.


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