Sanctuary9566

New Member
Aug 2, 2024
2
1
I am currently considering to add one or more buttons for daily activity schedule in the automation mod.

I could go all in and spend a week doing it make it very dynamic, but I'm unsure if that is really necessary.

What are the typical daily routines that people find themselves doing?

A. Hunt --> Basic training --> Pool party --> Velvet room --> Sleep
B. Craft until morning --> Sleep.
C. Talk nicely to all females --> sleep
Etc...

One or two "blank" customizable buttons might be nice. I think I can figure out how to write instructions by following the current code, but I'm actually stuck with the GUI part. Though while writing this post I've realized I could probably just edit some of the current buttons I don't need for such purposes. :unsure:

In any case, the mod is great, thanks for your hard work. (y)
 
Mar 5, 2024
68
33
Well here are a few code snippets or code fragments, without any further comments, what code these fragments/snippets could replace in the current or future (public) versions of this game ‐ and no the code does not give anyone any access to tier-gated content.

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

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

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

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

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

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

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

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

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

Oh, btw I did not really debug the above code fragments.

ps. If anyone wants further explanations or hints, as for what the code fragments/snippets can be used: I might give such explanations or hints, but such a post would use a whole lot of html-entities (like "(" ) and not caring, if some of them are considered to be deprecated:
 

Jack Goff

New Member
Sep 15, 2023
2
1
The sandman mod is not working outside of the house, for some reason it only changes the girls inside the house and nothing else
 

Porrvald

Active Member
Sep 12, 2020
594
630
One or two "blank" customizable buttons might be nice. I think I can figure out how to write instructions by following the current code, but I'm actually stuck with the GUI part. Though while writing this post I've realized I could probably just edit some of the current buttons I don't need for such purposes. :unsure:

In any case, the mod is great, thanks for your hard work. (y)
Yes, that is probably the easiest and good enough solution.

I will put some effort into making functions a bit less convoluted and then pre-fill a couple of buttons with example functions, similar to this:
Code:
//await goto(1)  //Go home. See var worldPositions for other destinations.
//await homeLander()  //Go to the entrance / start location in mc home (needs to be at home to do this)
//await removeAllFollowers()
//await addSlotIndexAsFollower(1)  //1 = NPC Page 1 slot 1, 9 = NPC Page 2 slot 1. 64 = NPC Page 8 slot 8.
//await addAvIdAsFollower(1)  //1=Lovisa. The person needs to be member of the household.
//await addHalfPageAsFollowers(1)  //1 = G1, 2 = G2, ...
//await autoHunt(1)  //Hunt with same followers as last time, if no current followers.
//await autoHunt(2)  //Hunt alone.
//await autoHunt(clicks)  //clicks is the number of times button was pressed when player clicked on it.
etc...
 

Clemency

Active Member
Jan 21, 2024
616
658
Scenes are not showing up for the girl that yoi got from the mc's brother, is there a fix?
Did you happen to turn on Sandman's mod? Try turning it off, see if it fixes anything. Or did the scenes in the folder change from a .png to .jpg or vice versa again?
 
  • Like
Reactions: SirPEEPEE

GD-studios

The Budman
Game Developer
Nov 20, 2021
880
3,072
Version 0.8.3.4 has been released (all Tiers)!

0834 finishes the game's main quest, "New World Order", allowing the MC to help Aria's ascent to the throne as Chancellor. The quest itself offers many hours of gameplay, featuring over 100 renders and 80,000 lines of text. The aftermath is also a trove of events, missions, titles and political turmoil that the MC can choose to partake in.

Other major features include an overhauled capture framework, a revamped Furry's tavern, a large combat overhaul, new story NPCs and a lot of important tweaks and QoL changes from GrimDark's own playthrough that was thoroughly "exposed" on Discord earlier in July.

Compared to 0834 A2.7, this version features Aria's quest event chain that activates after she returns to your household for the very first time after assuming the throne. It also contains a ton of tweaks and QoL changes from Grimdark's July marathon run, including combat group shortcuts, new animated health bars, 60+ new renders and some important bug fixes related to Aria's quest.

.

.

Have a nice weekend everyone!
 
Last edited:

IceGorvel

New Member
Oct 6, 2018
1
0
How do you start the quest "New World Order"? I've already finished "Slavemasters of Raana" but nothing else triggered for me, at least not automatically.
 

Joe Steel

Engaged Member
Jan 10, 2018
2,410
3,231
Another mini update to automation mod. Log prettification.
You don't have permission to view the spoiler content. Log in or register now.
I love 99% of your mod, but the latest version disables the "conclude day" button and automates the morning BJ scene, both changes being ones I dislike (for instance, sometimes I use the BJ scene to improve happiness, sometimes to lower willpower). Any way to get rid of just those two features without getting rid of the entire mod?
 

Daba

Member
Jan 22, 2018
283
235
How do you start the quest "New World Order"? I've already finished "Slavemasters of Raana" but nothing else triggered for me, at least not automatically.
You need to speak to Aria to start a quest.
ASK SOMETHING - I'LL HELP YOU WITH THE REBELLION
 
  • Like
Reactions: IceGorvel

Porrvald

Active Member
Sep 12, 2020
594
630
I love 99% of your mod, but the latest version disables the "conclude day" button and automates the morning BJ scene, both changes being ones I dislike (for instance, sometimes I use the BJ scene to improve happiness, sometimes to lower willpower). Any way to get rid of just those two features without getting rid of the entire mod?
Yes, I just realized that myself when playtesting a few minutes ago.
It is fixed in version 080 which I have just uploaded.

In new version the conclude day and continue button are is still disabled, as they are needed for proper end of day logging, but you can now disable the automatic blowjob via config (you need to do this each time you update the mod):
Code:
var morningBlowJobEnabled = true  //If true then morning blowjob is fully automated. Change to false to disable.
There is also a bugfix for END / BJ button sometimes not reacting.

I will also make the button label dynamic in future versions. It should be called START D. or END D. depending on which function it currently has.
 
Last edited:
  • Like
Reactions: Joe Steel and Daba
Mar 5, 2024
68
33
I guess for enemy groups with AOE damage, I should make sure, that the fourth follower has the highest badass.

I also like that some new enemies in the palace have set their strength twice (some enemy2 and enemy3).

And while the strength of Master Vam and one of the Warmaster enemies do look impressive on paper (1500 and 2600), sadly they will hit as likely as the Mountain did hit Oberyn Martell (while Oberyn was not careless) as they are carrying Power Katana and Greatsword. And I guess there is a reason that the Warmaster in the "second" combat group (with The Marshall and Ohio Adler) has only 10% of the strength of the other Warmaster.
 

Wolfenlokie

New Member
Dec 1, 2020
4
3
Hello guys. Can I ask "stupid" question. How do you play this game? How are you doing things in this game. Like, I get out of the house and made first work, but now I am tired and dirty, but in bathroom there is nothing to click on to get washed, or there is nothing to click on to go sleep...I was looking her eon wiki for guidance, but there is nothing about how to play, but only what should I do in game play. Maybe I am just not familiar with this style of games... :-/
if no one has answered your question there is a sub menu when you are in the home that would take you to where you can craft item and other thing in that spot should be a button that look like a bath tub click that and your in the option to clean yourself up or when your having interaction with any of your slaves you can ask them to take a shower with you and it takes you to the bathroom to shower and other things if the slave is female
 

Wolfenlokie

New Member
Dec 1, 2020
4
3
Hello guys. Can I ask "stupid" question. How do you play this game? How are you doing things in this game. Like, I get out of the house and made first work, but now I am tired and dirty, but in bathroom there is nothing to click on to get washed, or there is nothing to click on to go sleep...I was looking her eon wiki for guidance, but there is nothing about how to play, but only what should I do in game play. Maybe I am just not familiar with this style of games... :-/
take a look at these pic and it shows you hot to take a bath
 
  • Like
Reactions: Creator13
4.50 star(s) 136 Votes