Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

The Night Market

Nine barons in all but only one has the key to your return home. · By The Night Market

Major Bug

A topic by Hexling4 created 20 hours ago Views: 6 Replies: 2
Viewing posts 1 to 3

After waking up from sleeping for 2 days at the beginning of the story, selecting any of the options when presented with food breaks the game. The next passage shows up fine, but there is no option to continue at the bottom of the page.


For completeness here is the route I took:

  • Gave gabriel a name after being pushed about it.
  • Tried to run when taken to the bail cages
  • Tried to pick the lock
  • Shoved milo in the cage when he came
  • Got picked up by bella after getting stabbed


Also there is a second bug I found when backtracking to try and see if I can find a way around this issue. When talking with milo after waking up the first time, selecting stay silent and then "i'm sorry" leads to a loop. The options at the bottom of the page seem to be copied from the previous page. This also happens if I select "how did you get out". The only way forward is to select "lie and see how far he will let you take it".


Looking at the actual code I see the problem. There's just no elseif for the "solostabbed" variable. I fixed it. Also side note but you can use the "or" logical operator in if statements. Such as "<<if [condition] or [condition]>>" that way you dont have to duplicate so much text. In this case to fix the issue I just changed the code to:

  • <<elseif $beginningroute == "solo" or $beginningroute == "solostab">>

Also I had to add 

<<set $route to "nofleshpit">>

at the end of the solo stabbed route or I hit another passage with no continue button just before gabriel arrives in chapter 2.