Greybourn

Newbie
Nov 14, 2020
50
208
this is why this game/story is so annoying because we have to walk this constant train wreck go on and on and there never seems to be a "sealing the deal" or anything and after 4 yrs there likely still never will be.

sorry for the rant but this whole story scenario just got me riled up something fierce.

I think you should read the text instead of holding down the skip button, you might find this scene. Game needs some story not going lie but it's an RPG and obviously needs to be played like one..

1709303617428.png
 

SukebeDude

Member
Jul 27, 2017
351
269
I enjoyed this more than i thought i would, it's a bit of a longwinded word salad but the girls are pretty cute and the core loop is interesting if a bit repetitive. I absolutely despise pre-rendered DAZ games but i'll make an exception for this one.
 

PhoenixFireeye

Well-Known Member
Nov 2, 2017
1,053
507
I was hoping that the Succubus dungeon would change dialog once Liam and Lani had sex, but it doesn't. Lani still behaves like nothing has happened between them. I hope this is added in the future.
 
  • Like
Reactions: Sole

PhoenixFireeye

Well-Known Member
Nov 2, 2017
1,053
507
I hope that the dev adds in the dungeon stats to the game (dungeon mobs killed, doors opened, traps encountered, etc). I'd like to know how many traps I've encountered and doors I've opened, so I know how close I am to leveling up my titles.

Also the game doesn't doesn't say how many times I've prayed, cooked or how much my poison count is at (except when you eat poisoned food, which is rare once you are no longer a picky eater). Those should be added to the stats page as well, # of prayers could be added to the temple relationship page maybe.

I'd also like to know what the game counts as "cooking", because I've cooked and thrown away 500 food, plus eaten a lot, but my cooking count just passed 300 (got the title for 300 times during last rebirth). Does it only count 1 time per day or something?
 
  • Like
Reactions: Axismundi

Axismundi

Member
Jul 14, 2018
333
713
is the succubus death event circumventable?
You just have to keep going through it. You get stronger mental resistance each time, and watching the group figure out how to not die is interesting (I feel like it should take one less run; four is a bit much). Honestly, once you beat it, that's the end of the content for now, so you can just run through it a few times to get it over with, or completely ignore it since it doesn't affect anything right now.
 

Xelhmar

Member
Jun 20, 2020
138
128
second question end of the dungeon said i could have maria in my party, but it also seemed to imply i could only do it if i didn't have maria. is there a way to get both?

and how do you use the beads?
 
Last edited:

PhoenixFireeye

Well-Known Member
Nov 2, 2017
1,053
507
second question end of the dungeon said i could have maria in my party, but it also seemed to imply i could only do it if i didn't have maria. is there a way to get both?

and how do you use the beads?
You can go through the succubus dungeon with Lani and Marla or just Marla, as of right now. Eventually, the dev may add Marla as a party member, but for right now she is just someone you escort through the dungeon.
 

ChrisTHC

New Member
Dec 16, 2017
1
0
Sorry for my bad english but I like this game and I have few bugs to report.

1. When I was doing rewind i get only 1 lvl upgraded alektrophobic when i have chicken liver flags (it can be becuse I upgraded 1 lvl in the dungeon)

2. After this rewind all location in the forest 1 and 2 location in forest 2 lost ability to fast collect loot (3 last location in forest 2 were not completed but wher unlocked)

3. Battle junky title say "You can fight X more time evry day", why when i go on quest blood for blood when you have to kill 10 enemy and fight 4 time in a row and dont sleep in the tent i lost 4 days, and in invade the goblin village fighting for 2 days lost 7 days.

Thats all for now. I have keep save just befor rewind when i go to check if i dont accident change flag.
 

Ellahn

Newbie
Dec 23, 2019
19
19
I'm struggling a lot with some scenes, especially the ones involving Lani AND Marla. It got bad enough that I gave up and decided to cheat a bit by checking the code.

Turns out there's something labeled
Python:
lani_marla_poly_route
which is inside a conditional requiring
Python:
highest_lani_camp_scene >= 2
but without
Python:
lani_marla_adventure_convo
.

Or, in a way that's slightly easier to understand, AFTER Lani uses her feet to make Liam cum in the tent, but BEFORE Lani tells Marla about doing stuff to Liam in the tent.

In addition to that, to even REACH that conditional you need to fulfill
Python:
marla_plant_convo2_day != None and marla_plant_convo2_day <= day - 10 and marla_plant_convo2 == False
.
That translates to:
  • Marla talked to Liam about Planty Tomato-Pants dying and Liam told her to not wash it;
  • At least 10 days have passed after the Planty Tomato-Pants conversation;
  • The last one is just to ensure this event triggers only once.
PLUS, if you have
Python:
lani_solo_route
it will trigger an early ending of the event, in which case you won't be able to reach the Lani+Marla conditional. This one triggers when you have actual sex with Lani in the Tent, so yeah, having sex with Lani will make it impossible to trigger this event.

To sum it up:
  • Get a Footjob from Lani;
  • Get Marla to talk to you about Planty Tomato-Pants dying and wait at least 10 days after that;
  • Do NOT fuck Lani before this event is triggered.
Not that hard after summing it up, but fuck, this wasn't easy to track.



BTW, not sure if the dev reads the Thread, but if so, props on the keeping the code clean and commented. The code could use some work, but that's always the case. Rewind's Code is leagues above most Ren'Py games I've checked, even really simple and straightforward games. Considering the size of the game, I'm actually impressed by how organized the code is. A few dialogues do have some inconsistencies if you rush some path (Like, if you ruch Lani's path and have sex with her too soon, many dialogues won't reflect that, like the massage ones, or the ones in Allura's dungeon). That's pretty much a given when you have as much branching as this game though. My tip to improve that would be having a set of default checks for every conversation, like ("Had sex with Lani?", "Is in a relationship?" etc.). More checks would be added as development progresses, and all dialogues could be either manually reviewed or tested against those checks. It might be a good idea to have dialogues in separate files, and I personally would probably use Python for those, either writing a DSL or making some structure for the dialogues. At the very least, I'd recommend having some way to check all the dialogues and their conditions, making it easier to check for inconsistencies.

Also, it'd be nice to have a Party check to ensure you fight the Cock-a-trice alone, since even if you have Lani with you she doesn't ever recall that fight, which feels a bit weird.

TL;DR: Amazing game, love it, I was impressed by how good the code is, some events are ridiculously hard to get,and I listed how to get one of them above. =D
 

Matoyoshi

Member
Nov 27, 2018
279
215
This may have been asked before but I cannot find it with a search.....

Other than the one 6 star dungeon that is part of the story, are there any dungeons above 4 star? I have not found any yet.
 

Xelhmar

Member
Jun 20, 2020
138
128
You can go through the succubus dungeon with Lani and Marla or just Marla, as of right now. Eventually, the dev may add Marla as a party member, but for right now she is just someone you escort through the dungeon.
are the beads unuseable right now?
 

Spamdragon

New Member
Jan 31, 2021
1
2
The recipes aren't actual items, you just discover them from using the correct combination of ingredients while cooking.

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

I found the list of recipes in objects.rpy file & tried them while playing. If more recipes are added in the future you could try looking there.
[chick_dick, herb1, orc_member],

[goblin_ear, goblin_testicle, orc_member],

[herb1, goblin_testicle, wolf_meat],

[slime_jelly_fizzy, slime_jelly_lime, slime_gelatin],

[slime_jelly_cherry, chick_dick, herb1],

[poison_herb, slime_jelly_putrid, slime_jelly_rancid],

[slime_jelly_blueberry, crystal_grass, slime_gelatin],

[slime_jelly_blue, bonemeal, goblin_testicle],

[slime_jelly_blue, slime_jelly_green, slime_jelly_red],
 
3.30 star(s) 21 Votes