Mod Ren'Py B.E.S.T The Game - LaikDink's Walkthrough/Improvement/Gallery Unlocker Mod [Ep. 2.1] [Dolyla]

LaikDink

Active Member
Modder
Mar 16, 2018
987
11,732
View attachment 2573970

Overview:
Multimod for B.E.S.T The Game

Updated: 01/11/2023
Game/Creator: B.E.S.T The Game/ Dolyla - - -
Modder: LaikDink
Mod Version: v0.2.2
Game Version: v0.2.2
Language: English

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

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


Download:
View attachment 2573974 View attachment 2573984 View attachment 2573994
Updated to v0.2.2
 

El Pene Del Diablo

Active Member
Oct 16, 2022
521
995
I'm getting a lot of "image not found" with both original and compressed versions.
tried without the mod and everything was fine.

it starts to happen with "j13" when you first encounter Red in the locker room after the introduction competition
 
  • Like
Reactions: HazyTank and Claet

Talmadge

Well-Known Member
May 7, 2018
1,440
1,122
I think Laikdink said something on his Discord about going out of town for a week or something. So it might be a bit before he can fix whatever problems people are having. My question is, the main game page says it is updated today at 2.1, but this says Laik updated it to 2.2 before. So should this one work with the new update? OR should I wait for Laik to come back and update/fix this?
 

DarkDaemonX

Engaged Member
Mar 31, 2020
2,060
2,147
I think Laikdink said something on his Discord about going out of town for a week or something. So it might be a bit before he can fix whatever problems people are having. My question is, the main game page says it is updated today at 2.1, but this says Laik updated it to 2.2 before. So should this one work with the new update? OR should I wait for Laik to come back and update/fix this?
It's episode 2.1, the previous version was 0.2.2
 

LaikDink

Active Member
Modder
Mar 16, 2018
987
11,732
View attachment 2573970

Overview:
Multimod for B.E.S.T The Game

Updated: 20/02/2024
Game/Creator: B.E.S.T The Game/ Dolyla - - -
Modder: LaikDink
Mod Version: Ep. 2.1
Game Version: Ep. 2.1
Language: English

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

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


Download:
View attachment 2573974 View attachment 2573984 View attachment 2573994
Updated to ep2.1
 

Crowangel

Well-Known Member
Dec 12, 2021
1,088
1,641
View attachment 2573970

Overview:
Multimod for B.E.S.T The Game

Updated: 20/02/2024
Game/Creator: B.E.S.T The Game/ Dolyla - - -
Modder: LaikDink
Mod Version: Ep. 2.1
Game Version: Ep. 2.1
Language: English

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

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


Download:
View attachment 2573974 View attachment 2573984 View attachment 2573994
All virus blocked regardless of the method of download
 

SimpleGamer

New Member
Aug 27, 2022
5
3
The gallery unlock is not working currently. Here is the temp fix for it.

In game\scripts\replay.rpy (line 34)

for i in range(start, end + 1):
if renpy.seen_label(Replay_items.replay) or replayunlocker:
imagebutton idle Replay_items.thumbs:
style "replay_button"
action Replay(Replay_items.replay, locked=False)
 
  • Like
Reactions: modball

AJSHR

Member
Jan 12, 2019
254
145
The gallery unlock is not working currently. Here is the temp fix for it.

In game\scripts\replay.rpy (line 34)

for i in range(start, end + 1):
if renpy.seen_label(Replay_items.replay) or replayunlocker:
imagebutton idle Replay_items.thumbs:
style "replay_button"
action Replay(Replay_items.replay, locked=False)


Python:
                for i in range(start, end + 1):
                    if renpy.seen_label(Replay_items[i].replay) or replayunlocker:
                        imagebutton idle Replay_items[i].thumbs:
                            style "replay_button"
                            action Replay(Replay_items[i].replay, locked=False)
                            xalign 0.5
                            yalign 0.5
Fix for your code, you didn't use the index at all! Well it worked so thanks for pointing out the right direction :)
 
Last edited:
  • Like
Reactions: modball