ZenoMod

Well-Known Member
Nov 12, 2022
1,176
1,472
Don't know about girls, I don't chase their routes, but for Fred, I don't know where are you exactly, but if you did found 3 customers for his gym, than just keep training until event occurs (Fred training with some chick), after that you will have options to talk with him, than you will have one decision to make
You don't have permission to view the spoiler content. Log in or register now.
and after that he'll be gone from questlog.
I did that, but it's still in my quest log... :(
 

ZenoMod

Well-Known Member
Nov 12, 2022
1,176
1,472
Shit! I tried to follow all the hints in the quest log, but I must have missed something...

screenshot0013.png

I guess the "So we are alone here, right?" option is not selectable because the scene with Bonnie at the lake didn't trigger.

Anyone knows when and how to trigger it?
 

ZenoMod

Well-Known Member
Nov 12, 2022
1,176
1,472
Anyone who has completed everything still show a goal of "spend more time with Valerie" after this last update? I had completed everything up to the last update except missing a few cards. This showed up again when I downloaded the new version and I can't seem to figure out how to make it complete. FYI my save is post 0.97 and I have not used a cheat with this save/playthrough.
Yeah... "spend more time with Valerie" and "talk to Fred" stays there no matter what...

Also, I think that the event to go to the beach with Tanya and Bonnie only triggers sometimes randomly... and that's bad, because it locks out that content and the possibility of another lewd scene with Bonnie :(
 

MWolf55

Member
Jun 19, 2018
137
49
Yeah... "spend more time with Valerie" and "talk to Fred" stays there no matter what...

Also, I think that the event to go to the beach with Tanya and Bonnie only triggers sometimes randomly... and that's bad, because it locks out that content and the possibility of another lewd scene with Bonnie :(
Okay. It's weird though because after the last update, I didn't have anything. Finally had all of them completed. Even the date with Ruby had gone away. Hmm, sounds like there's a bug in the system that depending on how far you are and what version you use, leaves or resets some of the triggers (obviously a particular few) in the game.
 
Nov 18, 2023
319
91
Updated Android port. Nothing too fancy but let me know if you have any issues.

Version: 0.99.5 + Cheat by Greslux

Appreciate my porting? Leave a Tip! You're supporting my efforts, paying for storage, and encouraging more ports!
¯\_(ツ)_/¯ OR or even MEGA

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

This unofficial port/version is not released by the developer, download at your own risk.

PLEASE don't reply, or @ me, or DM me for updates. I always update my ports, YES I ALREADY KNOW ABOUT THE UPDATE.
If you ping me for updates, I will mark you account as ignored.



MEGA

Size 1656 MB

Updates are faster on .

Game Developers: Want to talk about an official Android version for your game? Come join my Discord.
could be uploaded by other clouds?
 

JeegHiro

Newbie
Feb 15, 2024
29
25
Shit! I tried to follow all the hints in the quest log, but I must have missed something...

View attachment 4406479

I guess the "So we are alone here, right?" option is not selectable because the scene with Bonnie at the lake didn't trigger.

Anyone knows when and how to trigger it?


12. Continue with the Quest Log
- Studio 15h
- DO NOT return to the Studio

13. Wait Tanya' call - She called me after 15h [v0.99.6]
Bonnie: Event 2 (Beach)

14. Return to the Studio
Bonnie: Event 3 (Trigger automatically)

https://f95zone.to/threads/bright-past-v0-99-6-1-kosmos-games.10622/post-15577581
 
  • Like
Reactions: ZenoMod

ZenoMod

Well-Known Member
Nov 12, 2022
1,176
1,472
12. Continue with the Quest Log
- Studio 15h
- DO NOT return to the Studio

13. Wait Tanya' call - She called me after 15h [v0.99.6]
Bonnie: Event 2 (Beach)

14. Return to the Studio
Bonnie: Event 3 (Trigger automatically)

https://f95zone.to/threads/bright-past-v0-99-6-1-kosmos-games.10622/post-15577581

Thanks!
I see I already asked that, then I completely forgot... sorry! Growing old my memory is not what it used to be :cry:
And thanks for the patience and the link to previous post with saves and walkthrough.

I followed the walkthrough (from one of my saves) and after point 12. (- studio 15:00) an event automatically triggered (as soon I clicked on the circled blue "back" arrow to exit the reharsal room) with Alice inviting Alex and Tanya at her place to sunbathe by her swimming pool.
After that I was "teleported" in front of the college.
Here I advanced time by +1h multiple times to wait for Tanya's call, but that call never triggered.

So I examined the code and I found in PHONE.rpy these lines:
Code:
label tanya_mes:
    if bonnie_znak == 4 and rain_now == 0 and hour >= 15 and hour < 18 and (mesto == 1 or mesto == 2 or mesto == 6 or mesto == 7 or mesto == 8 or mesto == 9 or mesto == 10 or mesto == 11 or mesto == 12 or mesto == 13 or mesto == 16 or mesto == 17 or mesto == 31 or mesto == 32 or mesto == 36 or mesto == 40 or mesto == 42 or mesto == 43):
        nvl clear
        play sound 'mus/s/sms_l.ogg'
        gg smile "Таня что-то написала."
        $ nvl_phone.menu_style = "side"
        $ nvl_phone.bg = "phone/bg2.jpg"
        $ nvl_phone.name = "Сестренка"
        $ nvl_phone.action("start")
        window show
        $ renpy.config.rollback_enabled = False

        tanya "Алекс, ты не знаешь, где тут на районе можно искупаться? Мы с Бонни тут от жары просто подыхаем уже!{image=phone/heat.png}"
        al "Ну, тут недалеко есть карьер с чистой водой и неплохим пляжем. Можно туда сходить. Я тоже не против поплавать.{nw}"
        $ nvl_phone.type("Сестренка", [10, 12, 5])
What Tanya says on the phone
"Алекс, ты не знаешь, где тут на районе можно искупаться? Мы с Бонни тут от жары просто подыхаем уже!"
means (thanks to ChatGPT for translating)
"Alex, do you know where around here we can go for a swim? Bonnie and I are just dying from the heat!"
So this is the message I was waiting for.

I checked in the console and the value of bonnie_znak was indeed 4, and it was NOT raining.
I advanced time many times, so I certainly passed throught the 15:00-18:00 interval.
So the variable not passing that if check must have been mesto.
I checked it in the console, and its value was 50 which is NOT one of the valid values to pass the if check.

My friend ChatGPT informed me that "мéсто" means "place/location" in Russian, so I wandered along the game locations to find the places having the valid values of mesto, that is the places in which the phone message from Tanya can be received.

I just moved to the park (mesto == 40) and advancing time +1h until passing 15:00 Tanya's phone messages triggered. :)

I updated your walkthrough adding the list of the places in one of which you MUST be in order to receive Tanya's message to go swimming. Find it in the attached Bonnie_Dorm_Rev2.txt

Thanks for the hints, and I hope my little update can be useful.

---

P.S. In my opinion it is a very bad design choice the fact that you can miss Tanya's message (thus locking yourself out of Bonny's events 2 and 3) if you don't happen to be - by pure chance - in the right place at the right time!!! :(:(:(
 
Last edited:
  • Like
Reactions: JeegHiro

ZenoMod

Well-Known Member
Nov 12, 2022
1,176
1,472
i dont have the option to skip unseen text in the menu options
does anybody knows how ti fix it?

You can enable it by Unren.

Or just copy the attached file (that was generated by Unren) into your "game" folder (the folder named "game", not the base folder).
 
  • Like
Reactions: chaf

ZenoMod

Well-Known Member
Nov 12, 2022
1,176
1,472
i started a fresh new game but i am struggling
i cannot talk to rudo at all, it says "i'll come later" and also i have the quest "ask someone for help" but he didnt talk to me. Also i am not able to play with them basket even if i have more than the required courage

Did you buy the sport suit and sneakers?
 

Enot1964

Well-Known Member
May 20, 2019
1,068
1,053
Did you buy the sport suit and sneakers?
In a mall in the central part of town (where the hospital, casino, coffee shop, etc.). There is a sporting goods store in the mall. That's where you'll find everything.
I'm writing from memory, I missed the last three updates as I'm waiting for the final version. Just in case, check also the clothing store in the same shopping center.
 
  • Like
Reactions: ZenoMod

youraccount69

Forum Fanatic
Donor
Dec 30, 2020
4,189
1,904
BrightPast-0.99.6.1
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 

Shalltear

Member
Oct 4, 2017
245
69
I play using joiplay
Download a new one and start a new game but got this problem after I click skip to the beginning,
Any idea why?

Already put the patch update + hotfix
 

sondanal

New Member
Nov 20, 2022
3
4
Hi there i m new to the game (but level 53 courage just to clarify) but stuck in some quests :
** one since the beggining : Work as a model in a painting class : I do that and get 70 bucks but the quest didn't finish (known bug ???)
** Talk to fred (gym) : never has something to tell me...
** Talk to ruby at work : didn t know where she works !!!

Thx in advance for ur replies.
Best day.
 
Last edited:
3.50 star(s) 89 Votes