CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

tarzan123

Member
Jul 2, 2018
110
194
Just a small sidenote ccmod doesn't really like me editing the .js files for edict points everything else can be easily modified using the cheat menu plugin. For edict points use cheat engine select a process not the application there will be a few of them and for me finding the correct one was a bit of a trial and error pretty sure there is some easy way to tell (like the number of found values?) then you just scan for the current number of edict points x2 then spend 1 point scan again for current x2 till you get 1 result and just edit the value.
 

Purple_Heart

Engaged Member
Oct 15, 2021
2,434
4,002
Just a small sidenote ccmod doesn't really like me editing the .js files for edict points everything else can be easily modified using the cheat menu plugin. For edict points use cheat engine select a process not the application there will be a few of them and for me finding the correct one was a bit of a trial and error pretty sure there is some easy way to tell (like the number of found values?) then you just scan for the current number of edict points x2 then spend 1 point scan again for current x2 till you get 1 result and just edit the value.
I changed daily edict points to 4 and I'm using ccmod. It works fine, I haven't encountered any problems.
 

promqueen4131

Newbie
Sep 7, 2019
32
26
You are supposed to do the gym job a couple of times to unlock the first gym skill "pull shorts" to use it on the inmates to prompt sex skills. After that use the pull shorts skill and service the inmates a couple of times to unlock the second gym skill "demonstration". Before considering this a possible bug have you actually completed the gym job a bunch of times? Or are we just talking about less than 5 times here?
I see. I kept reloading after getting more passives from battles. I figured there was a passive outside of the job I was missing~
 

andrea74877

Member
Oct 31, 2017
195
70
Does anyone know how to customize karryn's hair and shit using imagereplacer? I tried looking on the discord but they just point out to the .js and I'm kinda dumb about it and don't know what to do
 

Drunk on life

Member
Jan 16, 2017
192
115
Almost
And what's the problem of locking your edict points? Is it preventing you from acquiring edicts?
It's a hardcoded value of 999 edict points you get.
And the max carryover is addressed modifying the second function.
We are essentially avoiding limits, hence why you see 999 edict points.
If the second function wasn't modified, everytime you sleep you'd be limited to the max between your current edict points and the max carry over. Which I believe is 2 or 3 depending on what you chose as a beginning perk.

If it's breaking functionality elsewhere, lmk.
If not, you're essentially complaining that you always have 999 edict points ;)
If warranted, I can pull everything out into easily setable functions and variables, that would allow you to bypass the normal edict calculations if you want to, and if you want to reset it back to normal you can just change one variable.


Edit:
Okay, I've actually tested this change and it'll allow you to set and learn skills that are available. And all you need to do is set a variable to true or false.

You'll have to modify two files listed here.

First file is RemtairyEdicts.js copy and paste this section over the Edicts section or comment out the original section and paste mine above.
Code:
/////////////

// Edict Points

///////////////



/*

    Complain to tetrayrok if things don't work

    Usage:

        set cheatEdict = true if you want to cheat and the points: to whatever you want to have for edict points

*/



Game_Actor.prototype.cheatEdict = {

    cheat: true,

    edictPoints: 50,

    stsAsp: 50

};



Game_Actor.prototype.getStoredEdictPoints = function() {

    if (Game_Actor.prototype.cheatEdict.cheat === true) return Game_Actor.prototype.cheatEdict.edictPoints;

    return this._storedEdictPoints;

};



Game_Actor.prototype.resetEdictPoints = function() {

    if (Game_Actor.prototype.cheatEdict.cheat === true) {

        this._storedEdictPoints = Game_Actor.prototype.cheatEdict.edictPoints;

        this.setAsp(Game_Actor.prototype.cheatEdict.edictPoints);

        return;

    }

    this._storedEdictPoints = 0;

    this.setAsp(0);

};



Game_Actor.prototype.getNewDayEdictPoints = function() {

    if (Game_Actor.prototype.cheatEdict.cheat === true) {

        this._storedEdictPoints = Game_Actor.prototype.cheatEdict.edictPoints;

        // return Game_Actor.prototype.cheatEdict.edictPoints;

        return;

    }



    let unusedPoints = Math.max(this._storedEdictPoints, this.stsAsp());

    this.resetEdictPoints();



    let points = 2;

    if(Prison.easyMode()) points++;

    else if(Prison.hardMode() && Prison.date % 2 === 0) points--;



    if(this.hasEdict(EDICT_PARTIALLY_RESTORE_BUREAUCRACY)) {

        if(this.hasEdict(EDICT_REDIRECT_SUBSIDIES)) {

            if(Prison.date % 2 === 1)

                points++;

        }

        else

            points++;

    }





    let maxCarryover = 0;

    maxCarryover += this.titleEfficientAdminstrator_carryoverUnusedEdictPoint();

    if(this.hasEdict(EDICT_REPAIR_MEETING_ROOM)) maxCarryover += 1;



    points += Math.min(maxCarryover, unusedPoints);



    if($gameSwitches.value(SWITCH_POST_CAPTAIN_INTERMISSION_ID))

        points = 0;



    this._storedEdictPoints = points;

};



Game_Actor.prototype.transferEdictPointsToStorage = function() {

    if (Game_Actor.prototype.cheatEdict.cheat === true) {

        this._storedEdictPoints = Game_Actor.prototype.cheatEdict.edictPoints;

        return;

    }



    if(this.stsAsp() > 0) {

        this._storedEdictPoints = this.stsAsp();

        this.setAsp(0);

    }

};

Game_Actor.prototype.transferEdictPointsFromStorage = function() {

    if (Game_Actor.prototype.cheatEdict.cheat === true) {

        this._storedEdictPoints = Game_Actor.prototype.cheatEdict.edictPoints;

        return;

    }



    if(this._storedEdictPoints > 0) {

        this.getAsp(this._storedEdictPoints);

        this._storedEdictPoints = 0;

    }

};
Second. You need to modify this function in FTKR_SkillTreeSystem.js
Why do we need to change this?
Because the skillTree system will deny your eligibility to learn edicts even though you have enough edict points based on _stsSp.

Code:
Game_Actor.prototype.stsAsp = function() {
        if (Game_Actor.prototype.cheatEdict) { // complain to tetrayrok if it doesn't work
            this._stsSp = Game_Actor.prototype.cheatEdict.stsAsp;
        }
        return this._stsSp || 0;
    };
How do you use it?

Code:
Game_Actor.prototype.cheatEdict = {
    cheat: true, <--- setting this to true will give you unlimited edicts to learn stuff because it's forever 50, barring you hasve the gold, setting it to false should revert behaviour to normal
    edictPoints: 50,
    stsAsp: 50
};
Turning off cheat to false should revert everything to normal usage. This way, if you want to revert to original behaviour it's easy to do.

I can probably refactor it to only make changes in RemtairyEdicts, because I noticed skillTree just assigns it's own local variable stsSp from RemtairyEdicts stsAsp but oh well, uh no one is paying me for this and if it works it works.

ENJOY.
 

Drunk on life

Member
Jan 16, 2017
192
115
That seems like it has to do with equipments slots, nothing to do with anything I touched. What were you doing when the crash happened?

And for a quick test, you can just turn the edict cheat off and see if it prevents the crash.
Added the lines to FTKR_SkillTreeSystem.js like you said, started crashing right after that, crashes on start up
 

tetrayrok

Member
Apr 2, 2021
118
120
Added the lines to FTKR_SkillTreeSystem.js like you said, started crashing right after that, crashes on start up
Ok so it seems like wyldmod the preg mod I presume has some incompatible issues, or has made some changes to the original files. Because it works fine for me but I don't have the wyldmod. Probably because it adds additional edicts to the skillTree based on preg or condoms or whatever new edicts.

What happens if you remove the changes to FTKR_SkillTreeSystem? Just comment it out and reboot your game.

Also it seems like the CC_MOD file that comes with the preg mod already includes an edict cheater.....
So I would suggest what you should do is just revert my changes, and look into the options menu of your preg mod to find the cheats for edicts.

 
Last edited:

Drunk on life

Member
Jan 16, 2017
192
115
Ok so it seems like wyldmod the preg mod I presume has some incompatible issues, or has made some changes to the original files. Because it works fine for me but I don't have the wyldmod. Probably because it adds additional edicts to the skillTree based on preg or condoms or whatever new edicts.

What happens if you remove the changes to FTKR_SkillTreeSystem? Just comment it out and reboot your game.
Correct! just did that, copied and pasted the changes to FTKR_SkillTreeSystem again and it worked just perfectly, now i have infinite edict points.
It seems that there was an extra space or comma somwhere along the line.
TY!
 

tetrayrok

Member
Apr 2, 2021
118
120
Correct! just did that, copied and pasted the changes to FTKR_SkillTreeSystem again and it worked just perfectly, now i have infinite edict points.
It seems that there was an extra space or comma somwhere along the line.
TY!
Oh. Great!

Just FYI, your pregmod already includes an edict cheater. But if everything works right now just leave it.
 

Loor_Laulel

Newbie
Nov 18, 2022
22
5
Ex-secretary gone wild
You’ll get this passive eventually by losing and having 10 sexual partner
Can anyone tell me how to do it
 

Purple_Heart

Engaged Member
Oct 15, 2021
2,434
4,002
I think you didn't answer my question. Ask at Where can I find the reputation of jobs and change it?
If only there was a search function you can use to find things.
If only there was a 1670058999297.png in op to find things even easier.
If only people had eyes and could read.
I guess I'm asking for too much.
But don't worry, we will directly download info into your brain, you just need to wait for another 100 or so years before we develop the technology to do it.
verified.png
 
Last edited:

catofchaos

New Member
Apr 19, 2018
3
0
I can't get ccmod and the extra outfits to work together well, the 2 waitress outfits get replaced by the normal one after 5 seconds when selecting to use them. Any ideas? Link is the outfits.

 

bruhhhh123456

Newbie
Aug 24, 2021
72
24
So because I don't find the motivation to start a whole guide that covers modding, here's a collection of most of my posts regarding tweaks that I consider important/popular. This is intended as a redirecting post to find already existing tweaks easier, because some people have trouble finding the search function :HideThePain:. This list does NOT cover all tweaks, use the search function ;)

Link to my F.A.Q. (may include modding but it's focus is general gameplay): here

[Modding] Tweak post collection

DISCLAIMER
: Before editing any files, back them up including your saves. If stuff does not work in your game and you want to post about it here, PLEASE mention that you modded the game and what you edited. (And don't even think about reporting bugs to the devs with a modded game.) The original game is quite stable (after a few updates :LUL:). If not mentioned otherwise the files are located in www\js\plugins and can be opened with any text editor (using more powerful editors like Notepad++ or VSCode makes editing easier).

VERSIONS: Most tweaks were made for older versions of the game. But they often cover core concepts that don't change in each update (except maybe line numbers and such). Thus, they'll almost always work in newer versions. The version in brackets after each tweak is the last version for which I looked into it.
Blue version numbers mean I'm sure they still work up to that version, green numbers mean I've verified and tested it in that version and yellow is for outdated tweaks. However, if things change and stuff breaks, please let me know. I'll then decide if I update either the original post or make a new one (depending on the extent of change).

quality of life tweaks:
  • enable manual saving for each difficulty (v1.0.1c): here
  • disable autosave at the start of combat (for better save-scumming) (v1.0.1c): here
  • tweaking side job values (mostly reputation) (v1.0.1c): here
  • uninterrupted battle-masturbation (v1.0.1c): here
  • enable escaping in prisoner difficulty (v1.0.1c): here
  • disable night(=scandalous) mode (v1.0.1c): here
'naughty' tweaks:
  • get her naked all the time (v0.8.o): here
  • Karryn being always aroused (v0.8.o): here
  • having cum or pussy juice all the time or after battle/sleep (v0.8.o): here
game mechanic tweaks:
  • reverse the effect slut level has on charm (v0.8.o): here
  • lower enemy max levels (v0.8.o): here
  • increase charm exp gain for individual actions (v0.7B.p): here
  • change alcohol tolerance (how fast she gets drunk) in the waitress job (v0.7B.p): here
  • editing the groups of enemies you'll encounter (v0.7B.p): here
  • removing gained passives (v0.7B.p): here
  • more stamina in reception job (v0.7B.p): here
  • disable bar fights (v0.7B.p): here
  • change/add sensitive body part (the one you choose at the start) (v0.7B.p): here
  • always act first each round (v0.8.o): here
no longer supported tweaks:
  • getting her nipples hard all the time (v0.7B.p): here
  • wake up without panties (fully implemented in base game (v1.0.1c)) (v0.8.o): here

references to stuff from other people:
  • CCMod (customisable tweak and/or preg mod): (outdated for some time now)
    • continued and current version by wyldspace:
  • basic CG gallery: here
  • PeroMod (passives editing tool): here(author naatsui got blocked?, I'll leave old link here for a bit)
    • reuploads: here and here (different versions)

NOTE: Will be updated for release version once the alphabet stops.
Does the naked tweak still work on the newest version?
 

ramoni booooy

New Member
Dec 26, 2017
3
1
i put the dlc patch on the game and now, on the defeated sex scenes they never over. always appears a text like " (characther name) take his pants off " how i fix that?
 
  • Angry
Reactions: zoomies
4.60 star(s) 447 Votes