AI Porn is here, Create and Fap TRY FREE
x

Siyal ÇöL

Newbie
Nov 14, 2017
68
60
227
Changelog v0.9.1 Beta:

  • Introductory Logo has been updated (animation added)
  • All new dialogue in the game is animated(Phase 2)
  • Removed a bug with an error when receiving some bonus renders (Bridjet, Maria, Garnett)
  • Added new background animations while driving a car (8 new animations day and night)
  • Added 8 new background animations while driving a car outside the city (now the animations in the city will be different from the animations outside the city)
  • Removed a bug with an error when purchasing in a store(the error appeared in version 0.9)
  • A bug with an error appearing when Arnold sits at a bus stop at night has been removed
  • A bug with an error appearing during the Bella story event (stage 10) has been removed (the bug appeared in version 0.9)
  • The code for starting the game in the prologue has been slightly improved (in some places where it was possible the text did not skip)
  • New animations have been added to the Salvador elimination scene.
  • Added new animations in the Dialogue with Dario when you first meet in his office.
  • New animations have been added to the dialogues between Nestor and Bella in the villa at the very beginning of the second phase
  • Added new animations to MC and Dario's dialogues in the Prison Cell
  • Added new animations to the dialogues of MC and Bruno in the Prison Cell
  • Added new dialogue animations in the prison cell with Choco
  • Added intermediate animations for switching locations (for even more atmosphere)
  • Added new animations for dialogues with Hector in the prison shower
  • Added new dialogue animations and 18+ in the event with Abigail during a meeting with the guys from 99s
  • The animation of the Chow Place location has been changed to a new one
  • Some official cheats will no longer work while serving time in a black hole
  • Changes have been made to the core game code in Phase 2 (Improved stability)
  • Added bonus renders with Bella in 4K
  • Another playthrough option of Phase 2 has been added (Content 18+ included)
  • Added dialogue animations for Santiago in his prison cell
  • Added dialogue animations for prison guards during the cell inspection
  • Fixed a bug where icons in the dialogue menu were incorrectly displayed during Dilara's visit to the prison
  • Added icons to the dialogue menu during Paul's visit to the prison
  • Added bonus 8k renders with Dilara
  • 18+ content featuring Dilara is available in no-cheat mode(The passage has cycles and different variants)
  • Fixed several code errors in the functions responsible for hints in Phase 2
  • Improved the code associated with the launch of stage 3 of the prison (sometimes progress did not advance)
  • The code responsible for triggering random events has been slightly improved (events are triggered more reliably than before)
  • Added a huge random event with Miguel and Estrella
  • One new character has been added
  • Added bonus 4k renders with Maria
  • Added a big random event with Maria and Bella
  • Added bonus 4k renders with Bridjet
  • Added a big random event with Bridjet, Bella, Nestor, Muhammad
 

JiraiyaSennin

Well-Known Member
Feb 11, 2017
1,680
1,408
437
can i disable a screen shaking?
terrible constant shaking screens and needless zooming in.
I also find it a useless effect and just nauseating :sick:. Dear JT I understand it as an effect on the protagonist's vision if he were under the influence of some drug or alcohol, but if it were placed on the menus or on the map... it would be enough to add the option to block (for those who want) the transition effect that is applied to the images by setting it to 0 and it would be a completely different game.
 
  • Like
Reactions: Misiek678

Xiba21

Member
Aug 5, 2020
282
245
229
For those who want to view *.png in Bon's Folder ... Here 's a python
Copy/Paste and Save as Decrypt.py for example.
Python:
import os

bonus_folder = "bon"
decoded_folder = os.path.join(bonus_folder, "decoded")
os.makedirs(decoded_folder, exist_ok=True)

key = 10  # same as Coding_photo(..., 10)

def decrypt_file(filepath, key, out_folder):
    with open(filepath, 'rb') as f:
        data = bytearray(f.read())
    for i in range(len(data)):
        data[i] ^= key
    out_path = os.path.join(out_folder, os.path.basename(filepath))
    with open(out_path, 'wb') as f:
        f.write(data)
    print(f"Décrypté: {os.path.basename(filepath)}")

for filename in os.listdir(bonus_folder):
    if filename.lower().endswith(".png"):
        filepath = os.path.join(bonus_folder, filename)
        decrypt_file(filepath, key, decoded_folder)

print("All files decrypted in 'decoded'.")

Decrypt.py need to be in Images folders (where Bon folder is located)
(double click to run) After finishing, a decoded folder will be in Bon folder.
Then after that, you can move & replace *.png from decoded folder to Bon folder to free space disk.
?????????????????????????????????????????????????????????????????????
 

Darth_X1

Newbie
Mar 8, 2021
41
7
155
For those who want to view *.png in Bon's Folder ... Here 's a python
Copy/Paste and Save as Decrypt.py for example.
Python:
import os

bonus_folder = "bon"
decoded_folder = os.path.join(bonus_folder, "decoded")
os.makedirs(decoded_folder, exist_ok=True)

key = 10  # same as Coding_photo(..., 10)

def decrypt_file(filepath, key, out_folder):
    with open(filepath, 'rb') as f:
        data = bytearray(f.read())
    for i in range(len(data)):
        data[i] ^= key
    out_path = os.path.join(out_folder, os.path.basename(filepath))
    with open(out_path, 'wb') as f:
        f.write(data)
    print(f"Décrypté: {os.path.basename(filepath)}")

for filename in os.listdir(bonus_folder):
    if filename.lower().endswith(".png"):
        filepath = os.path.join(bonus_folder, filename)
        decrypt_file(filepath, key, decoded_folder)

print("All files decrypted in 'decoded'.")

Decrypt.py need to be in Images folders (where Bon folder is located)
(double click to run) After finishing, a decoded folder will be in Bon folder.
Then after that, you can move & replace *.png from decoded folder to Bon folder to free space disk.
has anybody tried it? btw not working for me, when i open the decrypt.py file it opens for for a split second and closing
 

FullMetal1991

Newbie
Dec 5, 2025
55
74
69
has anybody tried it? btw not working for me, when i open the decrypt.py file it opens for for a split second and closing
That's normal. After the launch ; you will see quicky a dos window
Did you see a new folder decoded appear in Bon folder?
If you have placed decrypt.py in"images" folder, where you can see bon folder ; then its all good
 

Darth_X1

Newbie
Mar 8, 2021
41
7
155
That's normal. After the launch ; you will see quicky a dos window
Did you see a new folder decoded appear in Bon folder?
If you have placed decrypt.py in"images" folder, where you can see bon folder ; then its all good
decoded folder not appearing in bon folder and i did place the file correctly
 

JiraiyaSennin

Well-Known Member
Feb 11, 2017
1,680
1,408
437
has anybody tried it? btw not working for me, when i open the decrypt.py file it opens for for a split second and closing
I tried it and it works. I created the text file with Notepad++ and saved it as .py in the "images" folder. I ran cmd.exe and went into the game's "images" folder and ran the Decrypt.py file with the command ..\..\lib\windows-x86_64\python.exe Decrypt.py.
So:
cmd.exe
(example of a game installed in e:\my games)
e: enter
cd "my games\The Bum\game\images" enter
..\..\lib\windows-x86_64\python.exe Decrypt.py enter
This command tells it to run "Decrypt.py" using python.exe in lib\windows-x86_64, which is two folders back ("..\..\" actually means go back two folders) from the starting point (images) than enter in "lib\windows-x86_64\" where is python.exe located and run the Decrypt.py file in "images".
 
2.50 star(s) 83 Votes