abconax gave good stuff.
I reccomend Notpad ++ it is probably one of the best editors you will find.
Firstt thing is good to give you player a name as there will sort of be two possible edit's in the game
one would be
and the other will be the default settings.
Be sure you are editing the part with your name.
Search for "perks" at start Perks may look like this
a very powerful starting Perks would look like this
Code:
"perks": {
"CUM_DRINKER": 3,
"STRONGER": 3,
"FASTER": 3,
"ITEM_MASTER": 1,
"SKILLED": 5,
"SPECIALIST": 1,
"WITCHER": 3,
"STEALTHY": 3,
"CATAMITE": 1,
"QUICKFOOTED": 3,
"COMBAT_FINESSE": 3,
"SUNDERER": 3,
"SMARTER": 3,
"WELLROUNDED": 1,
"EROTIC": 3,
"PERFECT_BOTTOM": 10,
"EASY_TO_PLEASE": 3,
"HOTTER": 3,
"HARDER": 3,
"FORAGER": 3,
"SURVEYOR": 3,
"VERSATILE": 3
},
If you search for player, and make sure it is the player with your name
these would be a powerful start
Code:
"player": {
"name": "Kim",
"worldTransform": {},
"computedTransform": {},
"oldTransform": {},
"label": "You",
"pronouns": "SECOND_PERSON",
"secondPerson": true,
"jobClass": "THIEF",
"level": 64, //<<<< leveling high is not needed, but does not really hurt
"experience": 61,
"baseStrength": 16,
"baseEndurance": 13,
"baseAgility": 13,
"basePerception": 13,
"baseMagic": 13,
"baseCharisma": 13,
"healthTiers": {
"items": [ 20, 20, 20, 20 ], //<<< by raising these you will increase your health these setting give 80 hp
"size": 4
},
These will be needed also to increase stamina, and Mana they are
normally located just under the last code I posted. the manaTiersmay
not appear at the start of a new profile.
Code:
"staminaTiers": {
"items": [ 5, 5, 5, 5 ],
"size": 4
},
"manaTiers": {
"items": [ 43 ],
"size": 1
},
Make sure you are in the inventory area, and giving your self a town teleport is possible.
Code:
"inventory": [
]
Like this
"inventory": [
{
"class": "com.majalis.character.Item$Potion",
"magnitude": 1,
"effect": "TOWN_PORTAL"
},
]
[/code]
Always make sure you are editing for "your name the top area seems to be you, and the bottom stats and things are for the default character "Hiro".
Anal virginity is controlled with this stat
but there are many other stats and perks that will also tell if you have lost or have your Anal virginity.
as in
Code:
"gaveAnal": 2, //<< indicating you gave anal 2 times.
"perks": {
"ANAL_ADDICT": 3,
},
//default Ass settings
"ass": {
"sphincter": {},
"rectum": {},
"colon": {}
},
//well used ass settings
"ass": {
"sphincter": {
"friction": "IRRITATED",
"wetness": "CUM_SOAKED",
"receivedSexRecently": 38,
"receivedSexTotal": 42,
"wetnessAmount": 54,
"time": 124
},
"rectum": {}, //<<< where eggs and thing's may be shown
"colon": {}
},
Changing your characters class look for jobClass
the character becomes more or less female over time here are some of the setting you may look for or change of the top of my head
"femininity": "FEMALE",
"femininity": "UNMASCULINE",
"femininity": "Male",
"femininity": "BITCH",
Non default job classes I know of are
"jobClass": "QUEEN",
"jobClass": "MARE",
"jobClass": "PROSTITUTE",
"jobClass": "LEWD_SCHOOLGIRL",
Possible these might work
"jobClass": "SCHOOLGIRL",
That should get you going, many other things can be helpful to remove or add as needed in the perks
"COCK_LOVER": 10,
"ANAL_ADDICT": 3,
"CRANK_MASTER": 3,
"BLOWJOB_EXPERT": 1,
removing these are adding them as needed, can encourage events, bad, and depending on preferences good.
Most of the names of things are pretty enlightening or descriptive, so editing is pretty easy.