Use Perks.ini file from sfall to modify perks and trait.
Some engine effects can not be changed.
Also, adding new behavior for perks or trait is possible only through script logic in game scripts.
Where should I get that? I have the restoration project and sfall readme seems to suggest that the RP includes sfall, but i dont seem to have a perks.ini in my installation folder...
Where should I get that? I have the restoration project and sfall readme seems to suggest that the RP includes sfall, but i dont seem to have a perks.ini in my installation folder...
In the mapper program, there are header files (like DEFINE.H) that hold those definitions. As it doesn't sound like you want to use the mapper program, I'm including the content of the DEFINE.H file here...
In the mapper program, there are header files (like DEFINE.H) that hold those definitions. As it doesn't sound like you want to use the mapper program, I'm including the content of the DEFINE.H file here...
Thanks, i do have the mapper program, but i had no idea i was supposed to look at the script library there.
Ive got the perk numbers now, but im still confused about how to edit them.
For example lets say i want to merge scout, ranger and explorer all into one perk. I have no idea how to do that based on the example in perks.ini however.
Code:
Name=Example
Desc=This is an example perk~Second line
Image=72
Ranks=1
Level=1
Type=0
Stat=-1
StatMag=0
Skill1=-1
Skill1Mag=0
Skill2=-1
Skill2Mag=0
STR=0
PER=0
END=0
CHR=0
INT=0
AGL=0
LCK=0
And lets say i want to change weapon knockback to do knockdowns instead of knockbacks, is that possible?
To be honest, I haven't changed perks as a part of my own work, but I do know that what you are trying to do is more complex than just updating the Perks.ini file. If I'm understanding the sFall parameters correctly, it appears you can only change some of a perk's attributes (skill boosts/penalties, Stat's and attribute changes) using Perks.ini.
To do the types of modifications you're suggesting, I think you need to script it. Meaning, you need to use the sFall script editor to create code to do what you're trying to do.
I haven't run across where (which header or *.int file) you'd specifically do this. I need to defer to someone with more experience than I have...
In general, I think @Mr.Stalin summarized it well...
Use Perks.ini file from sfall to modify perks and trait.
Some engine effects can not be changed.
Also, adding new behavior for perks or trait is possible only through script logic in game scripts.
So the bonus to special encounters is a hardcoded thing? I thought it might be a stat modifier or some kind so you could just sum them up, but i guess thats not possible.
What if i wanted to do something easier, like make the dodger perk have two ranks instead of just one?
Code:
[29] // Perk 29 should be dodger
Name=Dodger
Desc=You are less likely to be hit in combat if you have this Perk. You gain a +5 to your Armor Class, in addition to the AC bonus from any armor worn.
Image=72 //Not sure what the image should be
Ranks=2
Level=9
Type=0 //0 = perk right?
Stat=9 // AC
StatMag=5
Skill1=-1
Skill1Mag=0
Skill2=-1
Skill2Mag=0
STR=0
PER=0
END=0
CHR=0
INT=0
AGL=0
LCK=0
How do i figure out what image number I should use? I dont see anything in the defines file about images. Im guesisng the SPECIAL stats are the requirements? Can I just leave skill1 and skill2 as default values if i am not modifying skills?
Graphic directories all have an *.LST file. To get your answer, look through the ART subdirectory and find the SKILLDEX.LST file. I'm assuming you just need to count from zero (starting at the top of the file) down to the image you're looking for... As I mentioned previously, I haven't done perks before; but based on how other things work in FO2 that should be the way to go.
Where should I get that? I have the restoration project and sfall readme seems to suggest that the RP includes sfall, but i dont seem to have a perks.ini in my installation folder...
It is funny that sfall allows to edit perks but there is no vanilla perk ID's or description how to do that. Perks.ini contains only one example how to do that.. Ronert B spoiler on DEFINE.H has only ID of perks. Can anyone create vanilla perks.ini which will contain all vanilla perks / traits repeating them not modyfied? Then the other noobs can edit numerals instead of looking for shitty scripts for every perk. For example I want to edit "Dermal Impact Assault Enhancement" perk to remoove -1 charisma, but i have no idea how to do that with original example in perks.ini. """SkillMod=0|20|1|-5 ;Add 20 to the player's small guns skill and subtract 5 from big guns""" modyfyes only skills but not damage resistance. And there is no information there about other functions. To mod perk you need to see original. A greet job done but only 1 of 100 modders can do somthing without clear template with all sfall commands. Please help me! Can anyone make and share good vanilla perks.ini for Sfall ??