Is there any way to cheat the affection of characters? Like to change the value or just rush it.
savefile editting
LT-folder > data > saves > savefilename.xml (i suggest using Notepad++ to open and edit the xml file)
the savefile has the following structure:
XML:
<game>
<coreInfo>
<savedInventories>
<savedEnforcers>
<slavery>
<dialogueFlags>
<eventLog>
<slaveryEventLog>
<maps>
<playerCharacter>
<NPC>
<NPC>
etc....
<NPC>
<OffspringSeed>
etc...
<OffspringSeed>
</game>
find the <NPC> section of the character you want to edit the affection of
maps section goes into bout line 20k and playercharacter can have like 4k+ lines as well. so its quite far down to the NPC section. for example in my savefile Scarlett's NPC dataset starts at line 118,276... thats how far i have to go if i wanted to edit her things
the NPC dataset has the following structure:
XML:
<NPC>
<character>
<core>
<locationInformation>
<body>
<characterInventory>
<attributes>
<potionAttributes>
<traits>
<specialPerks>
<perks>
<knownSpells>
<spellUpgrades>
<spellUpgradePoints>
<fetishes>
<statusEffects>
<knownMoves>
<equippedMoves>
<characterRelationships> <-------!!!!
<pregnancy>
<family>
<slavery>
<companions>
<sexStats>
<addictionsCore>
<artwork>
<npcSpecific>
</character>
</NPC>
the core section has the id tag (<id value="-1,Scarlett"/> (named npcs have -1 id. random npcs have a real id))
and the name tag (<name nameAndrogynous="Scarlett" nameFeminine="Scarlett" nameMasculine="Scarlett"/>)
and the surname tag (surname value="Kardos"/>)
which you should use to find the right NPC
the characterRelationships tag is where you find the character's affection for others. there are several <relationship> tags depending on how many other NPCs they have interacted with. scarlett for example has per default a relationship with helena and the player:
<relationship character="-1,Helena" value="60.0"/>
<relationship character="PlayerCharacter" value="-40.0"/> (yes she still hates me in that savefile)
if you want the character to like YOU more just edit the value of the "PlayerCharacter" relationship node
save file. start game. load save file. enjoy.