quarzo

Active Member
Aug 25, 2017
889
765
You can add traits to the breeder by using a hex editor.
First get a wild nephelym with the trait you want.
Then save your game and open it with the editor.
Find the place in the code where the wild one’s traits are listed, copy that section of code.
Go back to where the breeders traits are listed, paste that section in.
Make sure to update the count for traits on the breeder to reflect the new number.
Save modified save file and put it back in the folder.
You can also use this to remove traits from wild nephelym.
Someone earlier in this thread had some pictures and a better explanation about using the hex editor.
Trying myself to see if I can change dick size, it doesn’t seem to matter what I put in, nothing changes.
ty for the answer, i was thinking for edit the save game i need a decompiler, for have a more readable code, then edit and later recompile for make this work. about the hex editor is for hot catch/changes with the game runing like cheat engine.

i will try find the post you say other one explain how doit (sorry my bad english)
 

quarzo

Active Member
Aug 25, 2017
889
765
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.
You don't have permission to view the spoiler content. Log in or register now.
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).
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?




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
 

xd4z3dx

Newbie
Sep 17, 2017
20
25
i want someday you can change the race of the character from human to nephilim.
you can with a hex editor, just search the name of the nephlym you want and mark where "Variant" starts for it, then search ahead for "Stats" and copy paste everything from "Variant" to right before "Stats". its like 7000 lines of hex per character though.
 

Ashurael

Member
Nov 16, 2017
173
75
Looking like the order for race releases will be: Sylvan, elves, orcs, then goblins over the next 2-3 builds. Slimes Thriae Undead Formurian Starfallen Risu Alraune
 

Wolf98

Member
Donor
Feb 2, 2018
135
67
Any one know when any sort of sound will be added? Still a fan and I get it's still got a lot of work a head, but after all this time kinda feels off not have any sounds. Even just some basic place holder even, non-H stuff.

Guess it's a nice reminder that I very much take being able to hear for granted.

Edit: Anyone know what harvest vs capture semen does?
 
Last edited:

mecha_froggy

Active Member
Oct 17, 2018
913
1,661
Any one know when any sort of sound will be added?
We need a sticky on page 1:

Audio = Bottom of the priority list.
Cheats = Press "O"
Gay Animations = Not even on the priority list.
Cheats = Press "O"
Where do I find... =
Cheats = Press "O"
What do I use to... =
Cheats = Press "O"
How do I... =
Cheats = Press "O"
I want to play as a... = Search Thread for "Hex Editor"
Cheats = Press "O"
How to activate cheats? = Go to drive C: and right click "FORMAT"

 

myt000

Newbie
Aug 21, 2018
67
111
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 53 74 61 74 2E 43 68 61 72 6D 65 72 00 Trait.Stat.Charmer
12 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 47 72 75 6E 67 79 00 Trait.Stat.Grungy
14 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 56 61 6C 75 61 62 6C 65 00 Trait.Stat.Valuable
18 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 43 68 75 62 62 79 00 Trait.Appearance.Chubby
13 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 53 74 65 72 69 6C 65 00 Trait.Stat.Sterile
18 00 00 00 54 72 61 69 74 2E 41 70 70 65 61 72 61 6E 63 65 2E 48 79 62 72 69 64 00 Trait.Appearance.Hybrid
17 00 00 00 54 72 61 69 74 2E 53 74 61 74 2E 41 62 6F 6D 69 6E 61 74 69 6F 6E 00 Trait.Stat.Abomination
 
  • Like
Reactions: quarzo

mecha_froggy

Active Member
Oct 17, 2018
913
1,661
We don't have the actual game build shared yet, do you happen to have that too? Thanks.
This is probably intentionally, as the notes say that internal templates have been stripped to the bone. He probably would rather let everyone had an extra day or two to play with the creature builder first than listen to people whining about how there's not enough premade models anymore. At least that's my guess.
 

ZTex

Engaged Member
Apr 3, 2019
2,896
4,182
This is probably intentionally, as the notes say that internal templates have been stripped to the bone. He probably would rather let everyone had an extra day or two to play with the creature builder first than listen to people whining about how there's not enough premade models anymore. At least that's my guess.
I don't think so.

There's a test build on his patreon for the same version.
From my quick searching what people here are linking is the Creator version with hotfix from other sites. There's a number of them that all have it but not the Test version of the game.
 
3.90 star(s) 109 Votes