Princess Groundhog

Well-Known Member
Nov 5, 2018
1,273
3,119
Wow, I thought the bar shift was extremely hot! I wanted it to keep going. Also hoping to romance Roxy or Amanda? The writing is so vivid, I felt like I was really there, being groped and smelling all the alcohol and sweat and everything else. Agree that more meaningful choices are needed, but even as it is, this is very hot stuff! Also, hope there are more frequent dress-up scenes and clothes/accessories shopping. I think they're so nicely done and really fun.
 

SuicideByTaco

Member
Apr 23, 2018
158
447
I've been waiting for this part of the story for a very long time. The wait could've definitely been shortened by a few years... The update itself was actually well written, did many playthroughs checking out the different dialogues depending on how your character looked and behaved; wasn't dissapointed. Wish I had the patreon version to see the difference in having bigger breast as that would have opened up a little more options or dialogue, will donate to their patreon to check it out. Other than that this was a great update.
 

yaryaryar

Newbie
Apr 30, 2018
47
47
I gotta say the update was pretty awesome.

I still think the dice rolling was the biggest waste of time and biggest pain ever, but the writing is top notch.

I will wait patiently for more.
 

Honeylake

New Member
Apr 23, 2018
11
22
1.14 was easily the best update this game has ever had. It felt thorough and detailed. It was hot and definitely set up content for future updates. I particularly liked the quick adventure into the abandoned building. The small side stories have been top notch in this new version. A lot of tension was played appropriately and I look forward to many many updates just like this one. I am a big fan of quality filler and I hope this is one of many updates that keep a consistent but not too fast pace in the main story.
 
  • Like
Reactions: Ic399 and JLZ111

hitman0527

New Member
Oct 4, 2017
14
44
Awesome update. Been a while since the game had such a great content update.

Also for those who want a patreon version, I downloaded the free version and mucked around with the code and got it working somewhat.
I didn't bother testing it out thoroughly, but I was able to get large breast size, multiple kinks and the forward/backward function working.

For those who don't want to download a random file from a stranger, here's how you can do it yourself:
1. Backup the file in case you mess up
2. Open the .html file with an editor, Notepad++, Sublime or VS Code are all pretty good options

Bra size change:
Search for the following string window.functionBraSize = function (braSize, content)

Change the whole function to look like this:
JavaScript:
// BEFORE

/*For braSize and faceShape in the char creation menu*/
window.functionBraSize = function (braSize, content) {
  if (State.variables.thisIsTheFreeEdition && braSize == "large"){
    SimpleNotification.info('Locked', 'Become a *supporter* to unlock the large bra size', {duration: 5000});
    State.variables.kate.braSize = "medium";
  }
  else{
    State.variables.kate.braSize = braSize;
  }
  jQuery.wiki(content);
}


// AFTER
/*For braSize and faceShape in the char creation menu*/
window.functionBraSize = function (braSize, content) {
  State.variables.kate.braSize = braSize;
  jQuery.wiki(content);
}
Multiple kinks change:
Look for the string <<run $kate.kinks.delete("exhibitionist","masochist","submissive")>>
and delete it

Enabling forward/backward function:
Search for the string : Set up a handler for the enabling and disabling of the history-backward/-forward buttons

Make the following changes
JavaScript:
// BEFORE

/* Set up a handler for the enabling and disabling of the history-backward/-forward buttons. */
jQuery(document)
    .on(':historyupdate.ui-bar',
        (function ($backward, $forward) {
            return function () {
        if(State.variables.thisIsTheFreeEdition){
          $backward.prop('disabled');
                  $forward.prop('disabled');
        }else{

        }
            };
        })(jQuery('#history-backward'), jQuery('#history-forward'))
    );


/* Set up a handler for the selection of the history-backward button. */
jQuery('#history-backward')
    .prop('disabled', State.length < 2)
    .ariaClick({
        label : L10n.get('uiBarBackward')
    }, function () {
        Engine.backward()
    });

/* Set up a handler for the selection of the history-forward button. */
jQuery('#history-forward')
    .prop('disabled', State.length === State.size)
    .ariaClick({
        label : L10n.get('uiBarForward')
    }, function () {
        Engine.forward()
  });

// AFTER
/* Set up a handler for the enabling and disabling of the history-backward/-forward buttons. */
jQuery(document)
    .on(':historyupdate.ui-bar',
        (function ($backward, $forward) {
            return function () {};
        })(jQuery('#history-backward'), jQuery('#history-forward'))
    );


/* Set up a handler for the selection of the history-backward button. */
jQuery('#history-backward')
    .prop('enable', State.length < 2)
    .ariaClick({
        label : L10n.get('uiBarBackward')
    }, function () {
        Engine.backward()
    });

/* Set up a handler for the selection of the history-forward button. */
jQuery('#history-forward')
    .prop('enable', State.length === State.size)
    .ariaClick({
        label : L10n.get('uiBarForward')
    }, function () {
        Engine.forward()
  });
Six pack avatar:
If you miss having your heroine show up with a massive six pack, search for sixPack : false and change it to sixPack : true. Don't think there's any text changes for this, but it looks fun anyway.

File:
View attachment Female Agent 1.14.1 random stranger changes.7z
 

yaryaryar

Newbie
Apr 30, 2018
47
47
I typically just edit Sugarcube.state.variables.kate directly.

Don't let crush see this, he'll spend 12 months refactoring the code to add Denuvo or something.

Code:
SugarCube.State.variables.kate.braSize = "large";
SugarCube.State.variables.kate.kinks = ['submissive', 'exhibitionist', 'masochist'];
EDIT: just run the above code for "standard" setup.
 
Last edited:

yaryaryar

Newbie
Apr 30, 2018
47
47
Do the larger breasts change anything really?
Yes. Actually, there is content for small brasize as well. I believe the Hard Cock Cafe won't hire you if you don't get nipple piercings as a small breast woman.

There are also numerous passages with sllight differences based on brasize, such as groping scenes, comments on your size, etc.

We'd need actual content to tell.
You're an idiot.
 

Joe Steel

Engaged Member
Jan 10, 2018
2,457
3,322
Nice, I'll have to try with small boobs and no piercings. What happens then, do you have a scene getting pierced?
Yes, as mentiuoined by the_jaron, but it's nothing special; not worth playing a new game to see. There's more content with the big boobs than the small, as far as I can tell.
 
  • Like
Reactions: Connie W

redhand

Newbie
Jun 29, 2017
39
43
The content I have seen so far has been quite good. Been waiting for the more open world aspect for years though, hope it'll be included soon.
 

GameLover73

Newbie
Jan 5, 2020
49
43
An error has occurred. You may be able to continue, but some parts may not work properly.

Error: cannot execute macro <<rollDice>>: An exception was thrown.

Stack Trace:
value@file:///C:/Downloads/G/000New/Female_Agent_1141/Female%20Agent/Female%20Agent%201.14.1.html:159210:21685
handler/<@file:///C:/Downloads/G/000New/Female_Agent_1141/Female%20Agent/Female%20Agent%201.14.1.html:159212:17590
value/<@file:///C:/Downloads/G/000New/Female_Agent_1141/Female%20Agent/Female%20Agent%201.14.1.html:159211:31483
t/<@file:///C:/Downloads/G/000New/Female_Agent_1141/Female%20Agent/Female%20Agent%201.14.1.html:159208:4858
dispatch@file:///C:/Downloads/G/000New/Female_Agent_1141/Female%20Agent/Female%20Agent%201.14.1.html:57:43090
add/v.handle@file:///C:/Downloads/G/000New/Female_Agent_1141/Female%20Agent/Female%20Agent%201.14.1.html:57:41074
 

TheDeviant

Member
Aug 7, 2017
149
359



Hey guys! This week was spent writing. I finished the 1.15 plot outline, and built the opening scenes in the game engine.
Next week: it's moar writing! Writing's my favourite thing, even though I wish I could do it faster.
Even though sex scenes are the point of Female Agent, if we just string them together gratuitously they'll stop being sexy. (You hit a point of .)
Episode 1.14 ends with a sex scene, so the heroine needs a breather while we set up the next one. That's what I worked on this week; I'll finish it tomorrow, and push on with 1.15's actual sexy scene from Tuesday.
Okay, that's it, short report because I can't really talk about writing without dropping spoilers. The next episode's title is Girl On Film. Just saying...
Have a greta week everybody while I work on moar Female Agent! I love you all See you next week!
 
3.50 star(s) 123 Votes