gunisgdx

Newbie
Nov 27, 2021
25
13
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
25
13
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,360
1,452
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
25
13
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
22
32
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 '⚲';
    }
    else if (person.likesGuys == true && person.likesGirls == true && person.likesTGuys == true && person.likesTGirls == true) {
        return '⚧';
    }
    else if (person.likesGuys == true && person.likesGirls == true) {
        return 'bi';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGirls == true) {
        return '⚤';
    }  
    else if ((person.gender == 0 || person.gender == 2) && person.likesGuys == true) {
        return '⚤';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGuys == true) {
        return '⚣';
    }  
    else if ((person.gender == 0 || person.gender == 2) && person.likesGirls == true) {
        return '⚢';
    }
1718297826630.png
 

gunisgdx

Newbie
Nov 27, 2021
25
13
UNICODE

Code:
setup.displayOrientation = function(person) {
    if (person.likesGuys == false && person.likesGirls == false && person.likesTGuys == false && person.likesTGirls == false) {
        return '⚲';
    }
    else if (person.likesGuys == true && person.likesGirls == true && person.likesTGuys == true && person.likesTGirls == true) {
        return '⚧';
    }
    else if (person.likesGuys == true && person.likesGirls == true) {
        return 'bi';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGirls == true) {
        return '⚤';
    }
    else if ((person.gender == 0 || person.gender == 2) && person.likesGuys == true) {
        return '⚤';
    }
    else if ((person.gender == 1 || person.gender == 3) && person.likesGuys == true) {
        return '⚣';
    }
    else if ((person.gender == 0 || person.gender == 2) && person.likesGirls == true) {
        return '⚢';
    }
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:

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,360
1,452
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. ;)
Actually that 60% isn't from forum BUT the actual data (google analytics). I think more like 63-64% so yeah (I was surprised too). So won't add as in your texts BUT I agree that need to add more initial information there (One of the ideas was that maybe somewhere in settings player could toggle what info he wants to see there)
 

gunisgdx

Newbie
Nov 27, 2021
25
13
Bug report:

jobs (streets) (1)
[object Object] was found dead in the streets...

At time of morning "report" after wake up.
Yep. And at the same moment, instead of the companion icon, a portrait of a girl appears - probably the same deceased
street worker, whose name is object Object :rolleyes:

This bug appeared after update 0.39b
 
  • Thinking Face
Reactions: GamerDaddy

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,360
1,452
Bug report:

jobs (streets) (1)
[object Object] was found dead in the streets...

At time of morning "report" after wake up.
Yep. And at the same moment, instead of the companion icon, a portrait of a girl appears - probably the same deceased
street worker, whose name is object Object :rolleyes:

This bug appeared after update 0.39b
Thx. Already fixed for 0.40 release (ETA ~ 10 days)
 

Magnus Castor

Newbie
Jun 8, 2023
68
98
What does this "You" mean?

View attachment 3741189
"You" = mc = main character, the player character, the hero of the game.

Perharps we should replace that "you" with something else? Suggestions?

But I see another problem: The line should read someting like
You: Axe | Bow | Gas mask...

Bug found and fixed in source! Awaiting master's approval :cool: and then included in coming versions of the game.

Thanks for reporting the bug. (y)
 
3.60 star(s) 29 Votes