Bossx5

New Member
Aug 11, 2023
6
3
Well I want to say this is the best html game I have played. The fact that it has more than just sex but a cool survival aspect. And using AI for original content is cool. Where did everyone learn to code from and how long did it take to learn.
 

elfhumper

Member
May 5, 2024
185
152
Not sure about machine gun's power level, a strong PC would probably just carry it
An automated machine gun turret aka Sentry Gun can fire 1,000,000 rounds a minute, has the range of a sniper rifle and weighs 1.5 tons or 2 tons if you add armor don't think your gonna match that with a hand held machine gun.
 
Last edited:

elfhumper

Member
May 5, 2024
185
152
An actual mine would compliment this. Iron ore & coal could be gathered & the iron refined into metal with a coal burning forge.
An old blacksmithing trick is make really hot campfire with wood; preferably hardwood but any will do; and dosing it with water once it dries you're left a perfect type of slow burning charcoal that will burn hotter and almost as long as coal.
 
Last edited:

hans_markoff

Newbie
May 18, 2023
29
24
I have found a duplication of NPC error. I loaded an old save and tried to reproduce it but failed.

View attachment 3730086

What I was doing was
- Moving slaves working on streets to guest house.
- In guest house reassigning guests with woodcraft skill to hunting.
- Assigning the new guests to old guests former jobs.

Save file from when I discovered the bug
View attachment 3730085
Had a similar error causing character duplication. My steps were:
-Assign guest as maid
-Take a nap with maid in bedroom. Bang maid via the "I want you to wake up on time" event
-After fucking, drag them into the basement

Funnily enough, if you don't take them to the basement the sex stats/pregnancy state gets reverted like nothing ever happened.
 
Last edited:

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,478
1,742
Had a similar error causing character duplication. My steps were:
-Assign guest as maid
-Take a nap with maid in bedroom. Bang maid via the "I want you to wake up on time" event
-After fucking, drag them into the basement

Funnily enough, if you don't take them to the basement the sex stats/pregnancy state gets reverted like nothing ever happened.
If you have save file from exact moment another duplicate appears, add save file
 

elfhumper

Member
May 5, 2024
185
152
How do you fix this error? Error: <<if>>: bad conditional expression in <<if>> clause: setup.family.isBloodToMc is not a function
It's a misspelling in the HTML if you know how to do it go to
Line 30180 and change !setup.family.isBloodToMc to !setup.family.isBloodToMC
If you have save file from exact moment another duplicate appears, add save file
ttyrke at first I thought it was just the typo causing the problem but I just had that error pop again.
 

Den4lk

New Member
Mar 30, 2024
9
0
So far I have found 3 interesting games about a post-apocalyptic world:
1. apocalyptic world
2. Wasteland lewdness
3. Desert stalker
What else can you recommend?
 

gunisgdx

Newbie
Nov 27, 2021
68
50
So far I have found 3 interesting games about a post-apocalyptic world:
1. apocalyptic world
2. Wasteland lewdness
3. Desert stalker
What else can you recommend?
Apocalyptic World. Definitely.
 
Last edited:

gunisgdx

Newbie
Nov 27, 2021
68
50
Thanks for amazing game.

A few questions:
1. When, and under what circumstances, do locked traits open?

2. Why is the beauty index not displayed for men, but only their age? It would be much more convenient when selling them.
..Well, or for carnal pleasure, who likes it.

Of course, it would be ideal like this:
 
Last edited:

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,478
1,742
Thanks for amazing game.

A few questions:
1. When, and under what circumstances, do closed traits open?

2. Why is the beauty index not displayed for men, but only their age? It would be much more convenient when selling them.
..Well, or for carnal pleasure, who likes it.

Of course, it would be ideal like this:

1. They don't. Name might be misleading. They are not locked but more like "unavailable".
But I plan in the future add maybe some events where you can "force" open there. One that comes in mind is maybe analust. You would be able to "lock" girl in for exampel room with fuckmachine and leave her there for a week for example. That way that locked trait would go away.

2. As for men without beauty - that's like that from the start as it wasn't necessary at that time. Will add in next todo list for tech update to show their beauty.


As for that "view" in the start there was a lot more info there BUT 60% players play game from phones so that view need to be more mobile friendly. Alternatives could be maybe somehow small icons with just texts beside them or idk. Haven't thought about that too much.
 

gunisgdx

Newbie
Nov 27, 2021
68
50
1. They don't. Name might be misleading. They are not locked but more like "unavailable".
But I plan in the future add maybe some events where you can "force" open there. One that comes in mind is maybe analust. You would be able to "lock" girl in for exampel room with fuckmachine and leave her there for a week for example. That way that locked trait would go away.

2. As for men without beauty - that's like that from the start as it wasn't necessary at that time. Will add in next todo list for tech update to show their beauty.


As for that "view" in the start there was a lot more info there BUT 60% players play game from phones so that view need to be more mobile friendly. Alternatives could be maybe somehow small icons with just texts beside them or idk. Haven't thought about that too much.
Thanks for answers.
Regarding the lack of necessary information about NPCs: 60% of the participants in this forum play on their phones,
but in general more than 50% of people such games play on PC. It is a fact. But it's YOUR game, and you do what you think is best. ;)
 

Thaimas

Newbie
Sep 10, 2021
33
48
Alternatives could be maybe somehow small icons with just texts beside them or idk. Haven't thought about that too much.
UNICODE

Code:
setup.displayOrientation = function(person) {
    if (person.likesGuys == false && person.likesGirls == false && person.likesTGuys == false && person.likesTGirls == false) {
        return '&#x26B2;';
    }
    else if (person.likesGuys == true && person.likesGirls == true && person.likesTGuys == true && person.likesTGirls == true) {
        return '&#x26A7;';
    }
    else if (person.likesGuys == true && person.likesGirls == true) {
        return 'bi';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGirls == true) {
        return '&#x26A4;';
    }  
    else if ((person.gender == 0 || person.gender == 2) && person.likesGuys == true) {
        return '&#x26A4;';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGuys == true) {
        return '&#x26A3;';
    }  
    else if ((person.gender == 0 || person.gender == 2) && person.likesGirls == true) {
        return '&#x26A2;';
    }
1718297826630.png
 

gunisgdx

Newbie
Nov 27, 2021
68
50
UNICODE

Code:
setup.displayOrientation = function(person) {
    if (person.likesGuys == false && person.likesGirls == false && person.likesTGuys == false && person.likesTGirls == false) {
        return '&#x26B2;';
    }
    else if (person.likesGuys == true && person.likesGirls == true && person.likesTGuys == true && person.likesTGirls == true) {
        return '&#x26A7;';
    }
    else if (person.likesGuys == true && person.likesGirls == true) {
        return 'bi';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGirls == true) {
        return '&#x26A4;';
    }
    else if ((person.gender == 0 || person.gender == 2) && person.likesGuys == true) {
        return '&#x26A4;';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGuys == true) {
        return '&#x26A3;';
    }
    else if ((person.gender == 0 || person.gender == 2) && person.likesGirls == true) {
        return '&#x26A2;';
    }
View attachment 3733241
I think it’s best to leave just first 4 columns (beauty, orientation, age, strength).
Both on phones it will be visible and on the PC there will be enough necessary information (y) And everything else info
can be found in NPC menu.
 
Last edited:
3.70 star(s) 45 Votes