elloulayt

Newbie
Sep 8, 2017
16
11
View attachment 4004009

seems like image path error in the bedroom after you sleep
problem in widget actionDream and widget actionImageOutput line
I tried to fix it using the previous version line and it works.
I solved this problem with a "crutch", simply creating an additional folder "images", since there are exactly two such folders in the path. If anyone knows how to change the code to change the path for the game for pictures, then please tell me, thanks.
 

Knullt

New Member
Aug 6, 2018
6
1
how to fix image path error? I change images/images to just one (images/) but then it returns to the same error
 

BlueFoxy101

New Member
Sep 6, 2024
1
0
I need help desperately! I got the horse with the rodger quest but now its starving! And I don't know how to feed it.
 

rolay1

Newbie
Mar 17, 2020
15
15
Why are the milk barn days off not automated? I want to sell milk from women who won't hang themselves when I wait for days to farm for items.
 

OggY VFR

New Member
Nov 22, 2018
10
1
Seems the 0.45 search images/vids in the folder "videos\actions" instead of "images\actions" (or"packs" and yes I ran again searchactions) so all my packs/mods are screw.d...
0.44a: <source src="images/actions/daddysgirl/bedroom/bj/rouq.mp4" type="video/mp4">
0.45: <source src="videos//packs/daddysgirl//actions/bedroom/bj/romlluq.mp4.mp4">

(and yes I made a pack named like that)
 
Last edited:

dspeed

Active Member
Oct 15, 2016
858
1,352
Seems the 0.45 search images/vids in the folder "videos\actions" instead of "images\actions" (or"packs" and yes I ran again searchactions) so all my packs/mods are screw.d...
0.44a: <source src="images/actions/daddysgirl/bedroom/bj/rouq.mp4" type="video/mp4">
0.45: <source src="videos//packs/daddysgirl//actions/bedroom/bj/romlluq.mp4.mp4">

(and yes I made a pack named like that)
Share pack
 

SpiderSoup

New Member
Jan 20, 2018
13
18
Seems the 0.45 search images/vids in the folder "videos\actions" instead of "images\actions" (or"packs" and yes I ran again searchactions) so all my packs/mods are screw.d...
0.44a: <source src="images/actions/daddysgirl/bedroom/bj/rouq.mp4" type="video/mp4">
0.45: <source src="videos//packs/daddysgirl//actions/bedroom/bj/romlluq.mp4.mp4">

(and yes I made a pack named like that)
I'm having the same issue with blair videos where it looks like this

Apocalyptic World 0.45/videos//actions/Blair/kitchen/pussy/puss2.mp4.mp4

This is after doing node searchactions.js with the action pack mod
 

Magnus Castor

Newbie
Jun 8, 2023
86
108
Why are the milk barn days off not automated? I want to sell milk from women who won't hang themselves when I wait for days to farm for items.
It was supposed to do so! A small bug found. Will be fixed in the next update of the game.

If you don't want to wait you have to edit the html-fil yuorself. Search for
if _ruleStreetworker && ['streets', 'nightclub'].includes
and change to
if _ruleStreetworker && ['streets', 'nightclub', 'milk_barn'].includes
 
Last edited:

ehesse

Newbie
Jan 6, 2018
78
21
for Blair image erros replace this from line 47131:

&lt;&lt;widget actionDream&gt;&gt;
&lt;&lt;set _sleepAction = {
place: either([&#39;basement&#39;, &#39;bathhouse&#39;, &#39;default&#39;, &#39;forest&#39;, &#39;kitchen&#39;, &#39;maid&#39;, &#39;nightclub&#39;, &#39;shower&#39;, &#39;streets&#39;]),
type: either(&#39;pussy&#39;, &#39;anal&#39;, &#39;bj&#39;, &#39;dp&#39;)
}&gt;&gt;
&lt;&lt;if typeof setup.actions !== &#39;undefined&#39;&gt;&gt;
&lt;&lt;set _dreamImg = setup.ImagePath+&#39;actions/female/&#39; + _sleepAction.place + &#39;/&#39; + _sleepAction.type + &#39;/&#39; + either(setup.actions.female[_sleepAction.place][_sleepAction.type])&gt;&gt;
&lt;&lt;else&gt;&gt;
&lt;&lt;set _dreamImg = &#39;actions/female/default/&#39; + _sleepAction.type + &#39;/&#39; + either(setup.actions.female.default[_sleepAction.type])&gt;&gt;
&lt;&lt;/if&gt;&gt;

&lt;&lt;actionImageOutput _dreamImg&gt;&gt;
&lt;&lt;/widget&gt;&gt;

&lt;&lt;widget actionImageOutput&gt;&gt;
&lt;&lt;set _extension = $args[0].split(&#39;.&#39;).pop()&gt;&gt;
&lt;&lt;if [&#39;mp4&#39;, &#39;webm&#39;].includes(_extension)&gt;&gt;
&lt;&lt;set _videoType = &#39;video/&#39; + _extension&gt;&gt;
&lt;&lt;set _url to $args[0]&gt;&gt;
&lt;&lt;video _url&gt;&gt;
&lt;&lt;else&gt;&gt;
&lt;&lt;image $args[0]&gt;&gt;
&lt;&lt;/if&gt;&gt;

with:
&lt;&lt;widget actionDream&gt;&gt;
&lt;&lt;set _sleepAction = {
place: either([&#39;basement&#39;, &#39;bathhouse&#39;, &#39;default&#39;, &#39;forest&#39;, &#39;kitchen&#39;, &#39;maid&#39;, &#39;nightclub&#39;, &#39;shower&#39;, &#39;streets&#39;]),
type: either(&#39;pussy&#39;, &#39;anal&#39;, &#39;bj&#39;, &#39;dp&#39;)
}&gt;&gt;
&lt;&lt;if typeof setup.actions !== &#39;undefined&#39;&gt;&gt;
&lt;&lt;set _dreamImg = setup.ImagePath+&#39;actions/female/&#39; + _sleepAction.place + &#39;/&#39; + _sleepAction.type + &#39;/&#39; + either(setup.actions.female[_sleepAction.place][_sleepAction.type])&gt;&gt;
&lt;&lt;else&gt;&gt;
&lt;&lt;set _dreamImg = setup.ImagePath+&#39;actions/female/default/&#39; + _sleepAction.type + &#39;/&#39; + either(setup.actions.female.default[_sleepAction.type])&gt;&gt;
&lt;&lt;/if&gt;&gt;

&lt;&lt;actionImageOutput _dreamImg&gt;&gt;
&lt;&lt;/widget&gt;&gt;

&lt;&lt;widget actionImageOutput&gt;&gt;
&lt;&lt;set _extension = $args[0].split(&#39;.&#39;).pop()&gt;&gt;
&lt;&lt;if [&#39;mp4&#39;, &#39;webm&#39;].includes(_extension)&gt;&gt;
&lt;&lt;set _videoType = &#39;video/&#39; + _extension&gt;&gt;
&lt;&lt;set _url to $args[0]&gt;&gt;
&lt;video controls autoplay loop&gt;
&lt;source @src=&quot;_url&quot; @type=&quot;_videoType&quot;&gt;
&lt;/video&gt;
&lt;&lt;else&gt;&gt;
[img[$args[0]]]
&lt;&lt;/if&gt;&gt;
 

subsub2010

Member
Jun 12, 2019
115
52
Hey,
Here is the new actions pack with the matching 0.44 js file.
Pixeldrain
It is 4.2 GB, including extra pictures for female bride sex.

CU

------------------------------------------------------------------------------------------------------------------------------------
How to use it?
Just unzip it and drop the content (images and js folders) in the game folder, overwriting existing files.

What is it for?
The game contains generic sex scenes with usually 2-4 gifs per sex action (bj, etc).
The aim of the actions pack is to expand that up to 20 gifs per sex action and also for variants (bj+asian, some categories are hard to find).

Does it work with version 0.45 or above ?
No, unless you install node and from the game folder run cmd : node searchActions.js
This will rebuild the actions.js
I'm happy to do the rebuild as described, but how do I "install node"? Sorry I'm fairly techie but not a developer, can you elaborate? And you're a hero for doing this for an addictively fun game!
 

decker666

Member
Sep 29, 2017
199
417
I'm happy to do the rebuild as described, but how do I "install node"? Sorry I'm fairly techie but not a developer, can you elaborate? And you're a hero for doing this for an addictively fun game!
Node is a software basically, so you need to download it and install it on your computer.
If you like the game you may want to add more images or remove the ones you don't like and regenerate the actions.js
 

Crimson Fire

Member
Mar 12, 2022
160
360
I think milking is broken now. If you manually milk someone you don't get any milk. I tried moving one milk from my store to my inventory and milked someone and they was no change in milk quantity.
 

Shafty

Member
Aug 5, 2016
136
72
Node is a software basically, so you need to download it and install it on your computer.
If you like the game you may want to add more images or remove the ones you don't like and regenerate the actions.js
Trying to do what you told but this is the result...what I'm doing wrong? total noob here
 

decker666

Member
Sep 29, 2017
199
417
Trying to do what you told but this is the result...what I'm doing wrong? total noob here
I install my game in a folder with no spaces like C:\Games\AW\
I run cmd and go to that folder with cd C:\Games\AW\
Then I run node searchActions.js
 

decker666

Member
Sep 29, 2017
199
417
Hey,
Here is the new actions pack with the matching 0.45 js file.

It is 4.2 GB, just a merge with latest version for now.

CU

------------------------------------------------------------------------------------------------------------------------------------

How to use it?
-----------------
Just unzip it and drop the content (images and js folders) in the game folder, overwriting existing files.

What is it for?
-----------------
The game contains generic sex scenes with usually 2-4 gifs per sex action (bj, etc).
The aim of the actions pack is to expand that up to 20 gifs per sex action and also for variants (bj+asian, some categories are hard to find).

Does it work with version 0.46 or above?
---------------------------------------------------
No, unless you install node and from the game folder run cmd : node searchActions.js
This will rebuild the actions.js

Can I help make it better?
--------------------------------
Yes, some categories don't have extra pictures:
Either for uncommon places (ie forest), uncommon sex acts (ie footjob) or ethnicities (ie black), etc
You can search such images in "sex gif" websites (google it), or upload videos and make webp on ez-gif .com website.
Once you have categorized your extra pictures put them in a .zip and host it on pixeldrain or somewhere.
Come here and share the link and send me PM as well.
 
Last edited:
3.60 star(s) 36 Votes