Quote from the changelog (check the OP):Can I enslave mercenaries? I don't wanna pay Ayden's salary
Certaini wish we can dismiss or free the unique slave and they show up somewhere as recruitable follower or send them to gulag with separate slave slot, i want to kick out all the male slave but i fear they will lead to new quest someday.
Speak for yourself. Cassius, Truls, Helo, Black Scorpion, Cultist Monk, and Aaron has more than earned their place in my house. Philip too for administration jobs in the mines or foreman duties.unique male slave are a mistake.
You can in 0.8.3.7. There's two exceptions though: Ayden Rhoades and Clea Vallas. The Enslave button just will not show up for either.Can I enslave mercenaries? I don't wanna pay Ayden's salary
ever wonder that maybe thats why your daughter with Leia Winton, girlid = 102, is somehow Scandinavian?Speak for yourself. Cassius, Truls, Helo, Black Scorpion, Cultist Monk, and Aaron has more than earned their place in my house. Philip too for administration jobs in the mines or foreman duties.
Umm not exactly....but I'm currently playing in the phone(joiplay) so I guess that's the problem? and regarding in the what saves I'm trying to edit, well the save-to-disk function in MOR in Joiplay doesn't work (can't find the file or not working) so I'm Just using the typical save in the game so yeah I have no ideaIf it's encrypted then it's not translation it needs but decryption.
When you create a save file, that cannot be edited with notepad, indeed. But the online editors should be able to decrypt it as part of the process. So my current theory is: you aren't actually uploading your file and instead you just open it in another tab, thinking you uploaded INTO the editor but no.
By the way. We are talking about save-to-disk save files, right? Just to be sure. You aren't trying to edit saves within the browser history, right?You don't have permission to view the spoiler content. Log in or register now.
Paragons have a high penalty imposed on marriage. It is -100 for being a Paragon, and an additional (I think) -20 roll for having Paragon as your "original status". Add in penalties for having previous wives and it could add up to a large enough penalty. Lowering her willpower a lot might help and/or raising your stats.How to marry clea the assassin. My mc has a undying relationship and 20 respect,still impossible chance and dice roll -(100 +)
Yes. The two statement have nothing to do with each other the meantimeAccording to quest journal u can interrogate the captured cult member from Prowler 3 quest . If i'm not wrong u can only interrogate captured npc with secretive trait, right?
How do I edit my save file like changing some variables in the game? And what software or application is needed to use?
P.S I think the save file is encrypted? Because the words are gibberish,there also a LOT of random symbols that doesn't make sense I need to bypass that
Live hack for those who want to be able to edit save files:
1. open start_game.html with Notepad++
2. Find in the text
if(e==null)return"";var t="";var n,r,i,s,o,u,a;var f=0;e=LZString.compress(e);while(f<e.length*2){if(f%2==0){n=e.charCodeAt(f/2)>>8;r=e.charCodeAt(f/2)&255;if(f/2+1<e.length)i=e.charCodeAt(f/2+1)>>8;else i=NaN}else{n=e.charCodeAt((f-1)/2)&255;if((f+1)/2<e.length){r=e.charCodeAt((f+1)/2)>>8;i=e.charCodeAt((f+1)/2)&255}else r=i=NaN}f+=3;s=n>>2;o=(n&3)<<4|r>>4;u=(r&15)<<2|i>>6;a=i&63;if(isNaN(r)){u=a=64}else if(isNaN(i)){a=64}t=t+LZString._keyStr.charAt(s)+LZString._keyStr.charAt(o)+LZString._keyStr.charAt(u)+LZString._keyStr.charAt(a)}return t
and replace it with
return e
so that the text between the commas looks like this
,compressToBase64:function(e){return e},
3. Now the new saves will be normally readable and editable with Notepad++.
4. For easy viewing of the file, download the JSON viewer plugin for Notepad++, then open the save file and click plugins/JSON viewer/Format JSON
P.S. Don't forget to always backup your files when editing something![]()
To make it clear, I need to change all of thisUse this. He says to use Notepad++ which can make it easier to read but it should work with any text editor
Made some tweaks...New simplified way of cheating via console:
1. Open console (CTRL + SHIFT + J in Chrome / Edge)
2. Copy and paste below code blob into the console and press enter.
Result:Code:function cheatShortcuts() { let slots = SugarCube.State.active.variables.slot for (let i = 1; i < slots.length; i++) { if (slots[i] > 0) { let npc = eval("SugarCube.State.active.variables.npc.av" + slots[i]) let girlname = npc.girlname girlname = girlname.replace("-","") //Get rid of dashes girlname = girlname.replace(" ","") //Get rid of spaces window[girlname] = npc window[girlname.toLowerCase()] = npc } } window["mc"] = SugarCube.State.active.variables window["Mc"] = SugarCube.State.active.variables window["MC"] = SugarCube.State.active.variables } function startTimer() { autoRefreshTimer = setInterval(function () { cheatShortcuts() }, 1000) } clear() cheatShortcuts() console.log("Cheat shortcuts added. Examples:\nLovisa.virgin = true\nMaiLynn.traitscav = 100\nmc.cash = 1000000") startTimer()
View attachment 3896575
Note: It automatically updates the shortcuts every second. You only need to repeat the code blob again after reloading page.
You don't have permission to view the spoiler content. Log in or register now.Link to additional cheatsYou don't have permission to view the spoiler content. Log in or register now.
Latest bug fix: 2024-09-12
function cheatShortcuts() {
let slots = SugarCube.State.active.variables.slot
for (let i = 1; i < slots.length; i++) {
if (slots[i] > 0) {
let npc = eval("SugarCube.State.active.variables.npc.av" + slots[i])
let girlname = npc.girlname
girlname = girlname.replace(/\W/,"") //Get rid of non-alpha-numerics
window[girlname] = npc
window[girlname.toLowerCase()] = npc
}
}
window["mc"] = SugarCube.State.active.variables
window["Mc"] = SugarCube.State.active.variables
window["MC"] = SugarCube.State.active.variables
}
function startTimer() {
autoRefreshTimer = setInterval(function () {
cheatShortcuts()
}, 1000)
}
clear()
cheatShortcuts()
console.log("Cheat shortcuts added. Examples:\nLovisa.virgin = true\nMaiLynn.traitscav = 100\nmc.cash = 1000000")
startTimer()