minin

Member
Mar 2, 2019
135
94
159
anyone know how to change karryns dormant desire? is it the same as changing the extra sensitive area?
 

flamewolf393

Newbie
Nov 13, 2020
94
13
39
So theres an impossible fight in this: "West the big thug"

Its not in the bar (I avoided that just like i was told), its just a fight out in the hallways. This asshole does 450 stamina damage every single hit, knocking me down. If I use energy to get back up, he just hits for another 450 damage and Im down again. Eventually I run out of energy and loose. How the hell is this fight supposed to be won?

Another impossible fight: Two normal thugs at once with their charge up attacks doing 150 damage each. They quickly overwhelm me and knock me down and again I can never get back up.
 
Last edited:

TheSinful

Member
Jun 11, 2018
493
683
278
So theres an impossible fight in this: "West the big thug"

Its not in the bar (I avoided that just like i was told), its just a fight out in the hallways. This asshole does 450 stamina damage every single hit, knocking me down. If I use energy to get back up, he just hits for another 450 damage and Im down again. Eventually I run out of energy and loose. How the hell is this fight supposed to be won?

Another impossible fight: Two normal thugs at once with their charge up attacks doing 150 damage each. They quickly overwhelm me and knock me down and again I can never get back up.
Git gud. Also train more, like against guards. The fights are definitely not impossible
 

Neriel

Well-Known Member
Jan 19, 2018
1,032
1,069
348
So theres an impossible fight in this: "West the big thug"

Its not in the bar (I avoided that just like i was told), its just a fight out in the hallways. This asshole does 450 stamina damage every single hit, knocking me down. If I use energy to get back up, he just hits for another 450 damage and Im down again. Eventually I run out of energy and loose. How the hell is this fight supposed to be won?

Another impossible fight: Two normal thugs at once with their charge up attacks doing 150 damage each. They quickly overwhelm me and knock me down and again I can never get back up.
Don't fight against Thugs at the start. Only fight in the room before the bar, after the bar and after the Guard Station. In those rooms no Thugs spawn, unless you have created Wanted Thugs already.
 

xellos49698

Member
Nov 4, 2017
474
512
255
is there anyway to make her naked in the newest versions all the time?
Comment = // in front of the script you want to disable.

Open file RemtairyKarryn.js and search for the following lines (line 1107 in v0.4u) and comment out the two lines in the middle as followed:

Original code
this.restoreClothingDurability();
if(!this._lostPanties) this.putOnPanties();

Nude Code

//this.restoreClothingDurability();
//if(!this._lostPanties) this.putOnPanties();

Full Script of the line with Nude code

JavaScript:

//Post Battle
Game_Actor.prototype.postBattleCleanup = function() {
this.setAllowTachieUpdate(false);
this._emoteMasterManagerIsRunning = false;
this._dontResetSexPose = false;
this._orgasmCallQueuedUp = false;
this._isCurrentlyUsingSkewer = false;
//this.restoreClothingDurability();
//if(!this._lostPanties) this.putOnPanties();
this.turnOffCantEscapeFlag();
this.resetCockTargets();
this.removeAllToys();
this.disableAllPoseSkills();
this.clearParamExp();
this.clearTempRecords();
this.cleanUpLiquids();
this.resetDesires();
this.postBattlePleasure();
this.enableMentalPhase();
this.setWardenMapPose();
this.setAllowTachieUpdate(true);
};

2.) Wake up naked. Ofc including panties if you wish ;)
Spoiler: code tweak

Open file RemtairyPrison.js, search for the following lines (line 936 in v0.4u) and comment out the three lines at the bottom as followed and add the two lines above those lines: (commented lines start with "//")

JavaScript:

// Advance Next Day
Game_Party.prototype.advanceNextDay = function() {
let actor = $gameActors.actor(ACTOR_KARRYN_ID);

let alreadyCountedMaxOrder = false;

if(this.order === 100) {
this._daysInMaxOrder++;
alreadyCountedMaxOrder = true;
}

this.increaseDayCount(1);
this.resetSpecialBattles();
this.nextDayRiotManager();
this.increaseOrderFromEquippedTitles(false);
this.increaseOrderFromDayChange();
this.respawnAnarchyEnemies();
this.increaseDaysInRioting();

if(this.order === 100 && !alreadyCountedMaxOrder)
this._daysInMaxOrder++;

this.gainGold(this.calculateBalance(false));

if(this._gold === 0) {
this.titlesBankruptcyOrder();
this._daysInBankruptcy++;
this._gold = 0;
}

this.checkForNewTitle();

//todo: check for this.hasNoOrder() then game over

actor.getNewDayEdictPoints();
actor.removeClothing();
actor.stripOffPanties();
//actor.putOnPanties();
//actor.passiveWakeUp_losePantiesEffect();
//actor.restoreClothingDurability();
actor.resetArtisanMeal();
actor.cleanUpLiquids();
$gameScreen.setMapInfoRefreshNeeded();
};
 

TastyDongo

Member
Jan 28, 2018
151
579
277
What does the corruption stat do? Im looking through the edicts and wondering about it.
Right now the only visible thing it does is after you clear level 2, those nerd start costing you [Corruption x 10] Funds every day, but that's basically all about it, and you can remove it via edict.
 

Suncatcher42

Member
Aug 12, 2019
219
294
146
is there anyway to make her naked in the newest versions all the time?
The easiest thing is to take the line that triggers at the end of each combat that puts her clothes back on, and comment it out.
Open RemtairyKarryn.js in your favorite text editor (after backing up the original, natch) and do a ctrl+f for Game_Actor.prototype.postBattleCleanup
put a // in front of the function to restore clothing durability and the function to put panties back on. Now once her clothes are stolen, they stay off until she gets changed to do a side job or she goes to bed. While you're at it you can comment out the line that cleans up all the fluids she's covered in, or the one removing any toys that the nerds have added.

To wake up naked, open RemtairyPrison.js instead, search for Game_Party.prototype.advanceNextDay , and at the end of that function find the lines for
actor.putOnPanties();
actor.passiveWakeUp_losePantiesEffect();
actor.restoreClothingDurability();
and replace them with
actor.removeClothing();
actor.stripOffPanties();

If you want to strip after finishing a side job, go to Game_Actor.prototype.changeToWardenClothing and then after the line that switches her back to her warden clothes add a new line
this.removeClothing();
to take it back off. Don't try to prevent her from switching clothes in the first place though, because she'll still be in the most-stripped version of a side job outfit and that will cause problems if you take it to any situation where that outfit isn't accounted for.




A trickier option is to find the restoreClothingDurability() function itself, and change what stage of stripping it resets her to when she puts her clothes back on. It's easier to mess up the game this way, but you can do things like set it so that her "fully clothed" state is now the one with her skirt lifted up and one breast hanging out the top, no matter what caused her to get dressed, for maximum sluttiness.
 

Suncatcher42

Member
Aug 12, 2019
219
294
146
Rem just posted a cautionary tale about game development. Long story short they were looking for a translator a while back to do a spanish release of Melty's Quest, and got approached by somebody who claimed to be living in Spain and struggling to get by due to COVID, so Rem hired them. A few months later they got the full translation, paid for it, and then discovered that instead of being translated by a real human who knew spanish, the entire thing is copy/pasted word for word from google translate, without even the most basic editing. So because of a poorly worded contract and a shitty con artist, Remtairy is out four figures and has nothing worth selling to make back that loss.

They didn't mention anything about this causing delays or risks to other ongoing projects like Karryn's Prison, but if any of you have been on the fence about signing up for subscribestar or buying a legal copy of Melty's Quest, this would be a good time to help the devs out.
 
Aug 29, 2020
199
457
104
Need some help!

How or better yet can I edit/modify Order? I tried using RPG Save Editor but that only lets you add money, I went into switches and variables and put order to 99 but when I load up a game my order doesnt change to 99. Weird because again this works for money just not order/control.

Has anyone found a way to modify Order/Control? Or is there a cheat for it?
 

random78905

Member
Sep 7, 2017
208
118
228
Rem just posted a cautionary tale about game development. Long story short they were looking for a translator a while back to do a spanish release of Melty's Quest, and got approached by somebody who claimed to be living in Spain and struggling to get by due to COVID, so Rem hired them. A few months later they got the full translation, paid for it, and then discovered that instead of being translated by a real human who knew spanish, the entire thing is copy/pasted word for word from google translate, without even the most basic editing. So because of a poorly worded contract and a shitty con artist, Remtairy is out four figures and has nothing worth selling to make back that loss.

They didn't mention anything about this causing delays or risks to other ongoing projects like Karryn's Prison, but if any of you have been on the fence about signing up for subscribestar or buying a legal copy of Melty's Quest, this would be a good time to help the devs out.
That unfortunately happens quite often with smaller/indie studios who hire over the internet. For a non porn game example Lobotomy Corporation had something similar happen with it's Korean-->English translation, though thankfully they did eventually get a better translation.

There are no shortage of assholes looking to make a quick buck.
 
  • Like
Reactions: ROTOFIRE

TheSinful

Member
Jun 11, 2018
493
683
278
Rem just posted a cautionary tale about game development. Long story short they were looking for a translator a while back to do a spanish release of Melty's Quest, and got approached by somebody who claimed to be living in Spain and struggling to get by due to COVID, so Rem hired them. A few months later they got the full translation, paid for it, and then discovered that instead of being translated by a real human who knew spanish, the entire thing is copy/pasted word for word from google translate, without even the most basic editing. So because of a poorly worded contract and a shitty con artist, Remtairy is out four figures and has nothing worth selling to make back that loss.

They didn't mention anything about this causing delays or risks to other ongoing projects like Karryn's Prison, but if any of you have been on the fence about signing up for subscribestar or buying a legal copy of Melty's Quest, this would be a good time to help the devs out.
And that friends, is why you always get a sample of someone's work before you hire them.
 

VincentYamato

Member
Feb 12, 2018
249
45
164
How do you get sex skills? I have a number of passives and i think she is like slut lv 40 or so, but i only have the stare dick skill. Also, what does upgrading the outfit does? Just more resistance to strip or does it also changes the sprites?
Is it too detrimental to raise the chance of room invasion?
 

Cotabl

Newbie
Oct 10, 2020
64
95
159
How do you get sex skills? I have a number of passives and i think she is like slut lv 40 or so, but i only have the stare dick skill. Also, what does upgrading the outfit does? Just more resistance to strip or does it also changes the sprites?
Is it too detrimental to raise the chance of room invasion?
You get sex-skills by experiencing enemy's assault a certain amount of time
Someone speculated that you should experience it 20 times, for every skill, but I got foot job with only, like, 8-10 times
You can get FJ from nerds, rimming from rogues (I don't actually know if it's implemented or nah), anal from, well, doing anal, homeless dudes do it
BJ from,hm... I don't remember any opponent makin' you blow him. Guess you just gotta lose at first stage enough and get taken to the bar room
Monsters with tit-job are orcs,you encounter them on the third stage if you ignore the boss at first one
But I don't recommend trying to get it from him.
Then there's also kissing and dick-touching, you can get kissin' by raising mouth desire in battle but idk about touchey-touchey requirements.
I think there's no normal sex skill, only anal. Dunno.
 
  • Like
Reactions: VincentYamato

Neriel

Well-Known Member
Jan 19, 2018
1,032
1,069
348
How do you get sex skills? I have a number of passives and i think she is like slut lv 40 or so, but i only have the stare dick skill. Also, what does upgrading the outfit does? Just more resistance to strip or does it also changes the sprites?
Is it too detrimental to raise the chance of room invasion?
Smooch Greeting
  • Unlock: Kiss 20 different people, reach max Mouth desire twice.
  • Effect: Unlock Kiss sex skill, lower Mouth desire needed for Kisses
Prisoner of Giving Blowjobs
  • Unlock: Give 20 different blowjobs, max Mouth desire 3 times, max Cock desire 3 times
  • Effect: Unlock Blowjob sex skill, lower Mouth desire needed to give blowjobs
Amateur Salad Tosser
  • Unlock: Give five different men rimjobs
  • Effect: Unlock Rimjob sex skill, increases Mouth sensitivity
Cock Shaking Official
  • Unlock: Give 15 handjobs, reach max cock desire twice
  • Effect: Unlock Handjob sex skill, lower cock desire needed to give handjobs
Loving Pats
  • Unlock: Initiate 5 handjobs, reach max cock desire 5 times
  • Effect: Unlock Pet Cock sex skill
Awaken Feet
  • Unlock: Perform footjobs on five different men
  • Effect: Dexterity +1, Unlock Footjob sex skill
Made for Cocks Titties
  • Unlock: Give more than twenty titjobs
  • Effect: Unlock Titjob sex skill; lower cock desire necessary for titjobs
 
  • Like
Reactions: VincentYamato
4.60 star(s) 488 Votes