BeastMaster59

Well-Known Member
Jun 12, 2017
1,454
5,031
Was hoping to see more of Melanie with ugly bastards, slightly disappointed.
Same here, after such a long time all I got was a blowjob scene with Melanie, the only positive thing about this release is that I only paid 3 bucks for it, that was ok for this release, anything above that would have been a waste of my hard earned cash.
No offence to DiscipleOfVirginia, because he knows his stuff and is a Great Developer, but this release really sucked.
just my opinion.
 

Ragnar

Super User
Respected User
Former Staff
Aug 5, 2016
5,087
14,046
Playing the compressed version when you have to type in the terminal I get this.

I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/v07.rpy", line 7530, in script
python:
File "game/v07.rpy", line 7533, in <module>
guess = renpy.input("", length=32, exclude="{}[]", screen="pwd_input", mask="*")
TypeError: input() got an unexpected keyword argument 'screen'
 
  • Like
Reactions: gilgamesh9

Gokudera

Member
Apr 27, 2017
375
103
It seems all of my old saves don't work with the update. I tried restarting the game from scratch, but I get those errors at two terminals with the passwords (the first one you can pass through ignore, the second no, so I'm stuck.
 
  • Like
Reactions: rogosh and str8up

FaceCrap

Ghost of torrents passed
Donor
Oct 1, 2020
1,280
854
OfBirdsAndBees-0.8
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.​
 
  • Like
Reactions: taglag

JaszMan

Well-Known Member
Aug 13, 2018
1,977
948
Can Mel go evil, rather very corrupt, I mean Does The Queen want Mel?, Does she want to protect her for her own selfish reasons?. Are there any other supernatural beings interested in Mel?
 

BulgariAMARA

Active Member
Apr 10, 2023
536
1,069
I don't use any mods, but the game gives me an error.
After this moment:
1735279623037.png
On my PC screen, I see this:
1735279132811.png
And there's nothing I can do about it. This happens when I make the choice not to write to Rayyan.

When I text the District, I come to this:
1735279974056.png
Can anyone tell me what I need to write here?
 
Last edited:
Nov 6, 2022
22
4
I don't use any mods, but the game gives me an error.
I've the same error, as you can see at row 5573 of v06.rpy you have this
You don't have permission to view the spoiler content. Log in or register now.

which means that for some reason there is the missing gameover function but anyway you should don't take that choice to continue the storyline.


If you call ryan to save amy you'll arrive to the terminal and you'll face with another error (maybe related to the compressed version only, because others are not having the same issue as the post above this), here is how the dev wrote the now broken code https://f95zone.to/threads/need-help-with-displaying-a-custom-textbox-for-a-password-puzzle.157458/.
for some reason this is no more working (read the end of the post), but pwd_input is still in the screens.rpy file and the screen argument is still in the renpy documentation so I'm trying to figure out the issue :/
You don't have permission to view the spoiler content. Log in or register now.

DON'T edit these files if you are able to type the password in the terminal without the game crashing due to this error, if the game start crashing for another reason restore them by undoing the changes.
This only affects compressed version released using renpy 7.1 instead of 8.2 as the original release
guess = renpy.input("Tivoli is a", length=32, exclude="{}[]", screen="pwd_input", mask="*")
TypeError: input() got an unexpected keyword argument 'screen'

This is not a fix but only a workaround to keep playing a broken version, this should not be taken as definitive fix
-------------------------------------------

The only fix I've found is edit the v06.rpy file to skip the input step (I'm sorry for the dev but I'm unable to understand this strange bug to fix it, because it crash even due to mask argument).
to do it, add this before the line 9954 of the v06.rpy file
jump v06_puzzlecleared
in the position that you see in the code below

Python:
    jump v06_puzzlecleared
    python:
        password = "raccoon"

        guess = renpy.input("Tivoli is a", length=32, exclude="{}[]", screen="pwd_input", mask="*")
        guess = guess.strip()

-------------------------------------------

to fix the v07.rpy that probably will be affected by the same bug, add before the line 7530
jump v07_mjolnersolved
in the position that you see in the code below
Python:
    jump v07_mjolnersolved
    python:
        list = ["mjölner", "Mjölner", "mjolner", "Mjolner", "mjolnir", "Mjolnir"]

        guess = renpy.input("", length=32, exclude="{}[]", screen="pwd_input", mask="*")
        guess = guess.strip()
be only aware that the jump must have the same indentation of the python word, otherwise renpy will raise an error (add / remove left spaces before the jump word to align it with the python word), more details here

-------------------------------------------------------------------

if the issue affects the compressed version only, investigate on the renpy version provided with, check if it's the same of the original version, in renpy/exports.py the input function is defined as:

def input(prompt, default='', allow=None, exclude='{}', length=None, with_none=None, pixel_width=None): # @ReservedAssignment

maybe the dev is using a newer renpy version than the compressor ?!?!

the screen parameter has been introduced with renpy 7.3.3 as reported by the changelog
the mask parameter has been introduced with renpy 7.4.5 as reported by the changelog

this could also explain the issue with the old saves but I'm not sure, I've played the compressed version in past, the v0.6

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

Can you please check it? You are releasing the compressed game with renpy 7.1 but the game is made with renpy 8.2

Of Birds and Bees [v0.8] [DiscipleOfVirginia]

COMPRESSED:

Win/Linux:
- MEGA - PIXELDRAIN - WORKUPLOAD

Mac:
- MEGA - PIXELDRAIN - WORKUPLOAD
 
Last edited:
3.30 star(s) 42 Votes