zoomies

Well-Known Member
Jun 4, 2017
1,051
863
been playing with a mod adding yasu in may locations, it is not finished yet but getting close. this is not originally my work, i'm just modding a mod ;)
also, if there is a room anyone want to see yasu in and challange him, let me know i'll try to add him there.
You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

Nazzar

Newbie
Jun 4, 2022
47
81
2nd Prisoner challenge run (aspiring hero -> galactic hero).

You don't have permission to view the spoiler content. Log in or register now.
(un)Lucky #3 Prisoner challenge run: Emperor’s Secretary -> Pride of the Empire. Lets go:

You don't have permission to view the spoiler content. Log in or register now.
2 conclusions at the end:
I) 1% invade chance might as well be 50%;
II) whomever came up with the cheap rogue and lizardmen specials can go fornicate themselves with an iron stick.
 
Last edited:

Neriel

Well-Known Member
Jan 19, 2018
1,018
1,054
I) 1% invade chance might as well be 50%;
Well the thing is, it says 1% Base Chance. This is one of those cases, where you have to look at the code, to understand exactly how it works which sucks. In short Karryn makes sounds, while masturbating. You can see that in the Text of how much noise is outside. This increases the Chance of invasion by multiplicative of the Base Invasion. So that is why, the moment you hit 1% it is already too much. But as long as you stay on 0% it will always be 0%. Aside from that gotta say, wow, you stayed really long on the first floor. Respect. :D
 
  • Red Heart
Reactions: Nazzar

ronadan

Member
Jul 2, 2017
167
360
been playing with a mod adding yasu in may locations, it is not finished yet but getting close
1655582591838.png

btw, how can we contact mods to edit the first post and add mod links to it? we have more than just ccmod around here and if you search for "mod" u literally get 50 pages of different posts
 

zoomies

Well-Known Member
Jun 4, 2017
1,051
863
View attachment 1878376

btw, how can we contact mods to edit the first post and add mod links to it? we have more than just ccmod around here and if you search for "mod" u literally get 50 pages of different posts
i'll post it here and on discord. there are pins in discord that make it easier to find mods. i have no idea on adding things to the first post. also this was not originally my work, i'm just modding a mod ;)
 
  • Like
Reactions: ronadan

Galentein

Member
Nov 5, 2017
159
114
Hello everyone, i am the only being stuck with the preggo mod when i lose on the second floor? I'm stuck in the main hall of the first floor and Karryn can't open any door... There is no way to reach her office or the north room...
 

ronadan

Member
Jul 2, 2017
167
360
nope it says your a putz :)
not that it matters but i am not a religous person, so i kinda guess you are correct. i had to look up the exact definition of heretic to find that out
oh my sweet summer child. the picture negroidprime posted is an old Warhammer 40k meme. basically, in that universe, servants and soldiers of the imperium of mankind have a habit of calling everything unusual or out of ordinary "heresy". so, he's joking about how in a threat where the main mod is preggo, u are basically "the heretic".

the imperium often executes its heretics. but given that u are working on a mod of your own, I guess we won't act on it ;)
 
  • Haha
Reactions: zoomies

sojocal

Newbie
Jun 2, 2020
84
77
What in Flying Spaghetti Monster's name makes you think ppl would know how to mod the game?
The OG screen shot show the file name.
The screen shot asking for help, has a search bar. This of course assumes they don't know file search exist in Notepad++

It's understandable that people are annoyed with having to explain this.
 

zoomies

Well-Known Member
Jun 4, 2017
1,051
863
Hello everyone, i am the only being stuck with the preggo mod when i lose on the second floor? I'm stuck in the main hall of the first floor and Karryn can't open any door... There is no way to reach her office or the north room...
best to ask in the ccmod channel in discord, wyldespace posts there often. please don't mention this site on discord.
 
Aug 11, 2020
349
961
(un)Lucky #3 Prisoner challenge run: Emperor’s Secretary -> Pride of the Empire. Lets go:

You don't have permission to view the spoiler content. Log in or register now.
2 conclusions at the end:
I) 1% invade chance might as well be 50%;
II) whomever came up with the cheap rogue and lizardmen specials sucks worse than Nicolas Cage in "Ghostrider", and can go fornicate themselves with an iron stick.
I looked at the code a year ago:

Out of curiosity I looked at the code. You can look for yourself in the file www/js/plugins/RemtairyKarrynOnani.js

You have 4 noise levels, all of which are indicated in the text at the top left of your screen:

JavaScript:
const InvasionNoiseLevelOneEN = "\\C[8]Faint noises can be heard outside.";
const InvasionNoiseLevelTwoEN = "\\C[7]Faint movement can be heard outside.";
const InvasionNoiseLevelThreeEN = "\\C[2]Inaudible talking can be heard outside.";
const InvasionNoiseLevelFourEN = "\\C[10]Someone is shouting outside.";
const InvasionBattleStartEN = "A bunch of people barge into the room!";
It handles the noise levels like this:

JavaScript:
    let invasionChance = this.getInvasionChance();
    let invasionNoiseLevel = this.getInvasionNoiseLevel();
    let invasionNoiseLevelEffect = Math.max(invasionChance * VAR_NOISE_LEVEL_INVASION_CHANCE, VAR_NOISE_LEVEL_MIN_EFFECT);
//minimum effect is set at 4, the other one is 0.2
    if(invasionChance > 0)
        invasionChance += invasionNoiseLevel * invasionNoiseLevelEffect;

    if(invasionChance > 0 && Math.randomInt(100) < invasionChance) {
        $gameSwitches.setValue(SWITCH_INVASION_BATTLE_ID, true);
        this._startOfInvasionBattle = true;
So what this basically does: it adds a certain value to the invasion chance you saw at the start of the masturbation scene. This added value is the product of 4 or higher and the noise level (the text you saw in the top left corner). Example: 30% invasion chance at masturbation start turns into (30 + 6 * 3 ) = 48% invasion chance if your noise level is 3 (the 6 in this calculation comes from 0.2 * 30 from the Math.max expression).

You don't have permission to view the spoiler content. Log in or register now.

As for your question: with decent energy and low pleasure damage you're looking at a 8-12% increase of the invasion chance IF your initial value is higher than 0%. A 0% starting value remains 0.
 

Ariethy

New Member
May 10, 2017
3
1
been playing with a mod adding yasu in may locations, it is not finished yet but getting close. this is not originally my work, i'm just modding a mod ;)
also, if there is a room anyone want to see yasu in and challange him, let me know i'll try to add him there.
You don't have permission to view the spoiler content. Log in or register now.
Hi, how can i get this mod?
 
  • Like
Reactions: NaughtyOppaiDragon
4.60 star(s) 442 Votes