- Oct 30, 2022
- 6
- 1
duuuuuude ty very much for you tutorial.
i want share some traits i found, if you guys can share too more traits info pls post it.
13 00 00 00 54 72 61 69 74 2E 46 6F 72 6D 2E 48 6F 6D 69 6E 61 6C 00 Trait.Form.Hominal
12 00 00 00 54 72 61 69 74 2E 53 69 7A 65 2E 4E 6F 72 6D 61 6C 00 Trait.Size.Normal
10 00 00 00 54 72 61 69 74 2E 53 69 7A 65 2E 48 75 67 65 00 Trait.Size.Huge
11 00 00 00 54 72 61 69 74 2E 46 6F 72 6D 2E 46 65 72 61 6C 00 Trait.Form.Feral
11 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 53 74 6F 69 63 00 Trait.Stat.Stoic
17 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 4B 69 6E 64 68 65 61 72 74 65 64 00 Trait.Stat.Kindhearted
15 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 44 65 62 61 75 63 68 65 64 00 Trait.Stat.Debauched
11 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 4D 65 61 74 79 00 Trait.Stat.Meaty
16 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 48 75 6E 67 00 Trait.Appearance.Hung
14 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 53 61 64 69 73 74 69 63 00 Trait.Stat.Sadistic
15 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 44 69 76 65 72 67 65 6E 74 00 Trait.Stat.Divergent
14 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 48 6F 72 6E 62 61 6C 6C 00 Trait.Stat.Hornball
11 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 53 77 69 66 74 00 Trait.Stat.Swift
17 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 47 61 75 64 79 00 Trait.Appearance.Gaudy
11 00 00 00 54 72 61 69 74 2E 53 69 7A 65 2E 4C 61 72 67 65 00 Trait.Size.Large
15 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 4E 75 72 74 75 72 69 6E 67 00 Trait.Stat.Nurturing
13 00 00 00 54 72 61 69 74 2E 53 69 7A 65 2E 4D 61 73 73 69 76 65 00 Trait.Size.Massive
11 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 4A 75 69 63 79 00 Trait.Stat.Juicy
17 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 53 6C 69 63 6B 00 Trait.Appearance.Slick
17 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 42 75 73 74 79 00 Trait.Appearance.Busty
14 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 48 65 64 6F 6E 69 73 74 00 Trait.Stat.Hedonist
1A 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 41 74 79 70 69 63 61 6C 00 Trait.Appearance.Atypical
19 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 53 6C 65 6E 64 65 72 00 Trait.Appearance.Slender
18 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 4E 79 6D 70 68 6F 6D 61 6E 69 61 63 00 Trait.Stat.Nymphomaniac
13 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 46 65 72 74 69 6C 65 00 Trait.Stat.Fertile
14 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 53 61 64 69 73 74 69 63 00 Trait.Stat.Sadistic
I am using Save editor made by CoDkid2006 which can be found on github.You won't find traits in the online editor. I'm using a hex file editor, HxD (any will do, this was the first one I found).
Editing like that might feel intimidating at first, but it's still somewhat easy - BotN saves are a jumbled mix of strings and hex values.
Each creature, including the breeder, is roughly 27KB in size, or a little less than 7k in offset (the values in the left column). Data begins with the character's name, and ends with stats and traits. The order of the creatures is the same as in the game, so if you want to edit the breeder, just search for the first monster's name and scroll up slightly.You don't have permission to view the spoiler content. Log in or register now.
Traits are listed as strings in a container, GameplayTagContainer. They consist of the string length in a hex byte increased by one, three zeroes, the string itself, and an ending zero.You don't have permission to view the spoiler content. Log in or register now.
The selected trait is 21 characters long, and counting the zero that marks the end of a string, it gives 22, which translates to 16 in hex (1*16 + 6).You don't have permission to view the spoiler content. Log in or register now.
Order of traits doesn't matter, but it's the safest to insert them between other traits.
After you are done modifying the traits, you need to change the container count as well - in the middle of that long dotted line, there'll be a number corresponding to how many traits the creature has. Don't forget to change that as well, or it may break the save, ignore some of the traits, or crash the game on load.
You don't have permission to view the spoiler content. Log in or register now.
Warning, some of the traits don't have immediate impact on the character, or have additional tinkering involved with them.
For example, biggus dickus will work as intended, but adding the boobage trait will have no effect whatsoever. But since you have the trait, you can then breed that monster, and the offspring generated with it will have them working properly. I think stat-changing traits don't work immediately as well. Additionally, the gaudy trait involves a gaudy tag somewhere in the middle of the creature's data. I didn't catch enough fancy monstrosities to figure out how it works yet.
Should I post a list of the traits I found?
However when i apply changes, i don't see any wild nephelyms spawning after the change(i know the editor is very old but i just want to add traits and stats to the breeder).
I even tried using hex editor and the only thing I can change is stats. If I try to add traits even though i followed instructions from older comment on it, i get this which crashes on opening:
Can someone please help on how to add traits with save editor or even with the hex editor?
Last edited: