BulgariAMARA

Active Member
Apr 10, 2023
536
1,071
I've the same error, if you call ryan to save amy you'll arrive to the terminal and you'll face with another 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
But how did others play this update?
 

weareelectric

New Member
Jan 30, 2021
3
2
Last edited:

gilgamesh9

Well-Known Member
Sep 10, 2019
1,291
2,110
The dev has always taken about a year per update, nothing new there. I enjoyed the lore of the first one now it's interesting but kinda over the top way to much. Just like the first game imo way to much focus scene wise for all the other characters and not enough of the FMC. So many character to corrupt her but rarely see them. For instance one girl meets with Gerald like 4 or 5 times to Mels 1 time....
 
Nov 6, 2022
22
5
Can anyone tell me what I need to write here?
the first terminal password is
raccoon

the second terminal password is once of these (they are all corrects) ["mjölner", "Mjölner", "mjolner", "Mjolner", "mjolnir", "Mjolnir"]


I've posted a workaround for a mine issue, not yours, my game crash when I try to open the terminal
 

DiscipleOfVirginia

(ノ◕ヮ◕)ノ*:・゚✧
Game Developer
Oct 2, 2018
825
3,494
I don't use any mods, but the game gives me an error.
After this moment:
View attachment 4380463
On my PC screen, I see this:
View attachment 4380443
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:
View attachment 4380468
Can anyone tell me what I need to write here?
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 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?
So, the error that happened, is that I misspellt the label name. It should be game_over, not gameover. The doll puzzle is fixed, and I had no reports from my Patreons. Yet, I did forget to put it in for the Bimbo Badend (When Amy becomes ginger bimbo). So for that screen, nothing happens after that. You just get taken to the title screen. There is no more content for that ending.

If you guys are using the compressed version on this site, not the one I officially release, I cannot help, as I have no idea what could go wrong. But to speculate, there is a high probability for errors, as I use Swedish characters "å,ä, ö" that the compressor can not translate as the compressor was written in English. This update also uses Chinese characters. And the password puzzle, one of the correct words is "Mjölner".


Unfortunately this dev is all about the lore and not so much on the lewd scenes.
And I will fucking do it again inshallmao

v06 trey_armybase 3e.png

No more butt. Only bunny
 

BulgariAMARA

Active Member
Apr 10, 2023
536
1,071
An interesting, thrilling psychedelic story. But damn it, there's so little sexual content. In my opinion, this game should not just contain more sexual content, the sexual content in this story should be especially perverted. In general, unfortunately, we have to admit that there is too little sexual content in the game, especially with Melanie.:(
 

Spyderwraith

Well-Known Member
Jul 21, 2017
1,195
939
```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/v06.rpy", line 8835, in script
jump gameover
ScriptError: could not find label 'gameover'.

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "game/v06.rpy", line 8835, in script
jump gameover
File "D:\XXXgames\OfBirdsandBees-v08-win\OfBirdsandBees-v08-win\renpy\ast.py", line 1698, in execute
rv = renpy.game.script.lookup(target)
File "D:\XXXgames\OfBirdsandBees-v08-win\OfBirdsandBees-v08-win\renpy\script.py", line 1103, in lookup
raise ScriptError("could not find label '%s'." % str(original))
ScriptError: could not find label 'gameover'.

Windows-10-10.0.19045 AMD64
Ren'Py 8.2.0.24012702
Of Birds and Bees v08
Fri Dec 27 02:27:51 2024
```
 

BulgariAMARA

Active Member
Apr 10, 2023
536
1,071
So, the error that happened, is that I misspellt the label name. It should be game_over, not gameover. The doll puzzle is fixed, and I had no reports from my Patreons. Yet, I did forget to put it in for the Bimbo Badend (When Amy becomes ginger bimbo). So for that screen, nothing happens after that. You just get taken to the title screen. There is no more content for that ending.

If you guys are using the compressed version on this site, not the one I officially release, I cannot help, as I have no idea what could go wrong. But to speculate, there is a high probability for errors, as I use Swedish characters "å,ä, ö" that the compressor can not translate as the compressor was written in English. This update also uses Chinese characters. And the password puzzle, one of the correct words is "Mjölner".




And I will fucking do it again inshallmao

View attachment 4380851

No more butt. Only bunny
No, I'll tell you anyway. Without the obscene scenes, this story will lose a lot of its appeal and become much less interesting.
 
  • Like
Reactions: paddyo73
Nov 6, 2022
22
5
If you guys are using the compressed version on this site, not the one I officially release, I cannot help, as I have no idea what could go wrong.
Yeah, as I see you are using renpy 8.2 while the compressor is using renpy 7.1 so this is where the issue comes from
:LOL: I discovered today that the compressed one not always matches the original renpy version
 

DiscipleOfVirginia

(ノ◕ヮ◕)ノ*:・゚✧
Game Developer
Oct 2, 2018
825
3,494
Yeah, as I see you are using renpy 8.2 while the compressor is using renpy 7.1 so this is where the issue comes from
:LOL: I discovered today that the compressed one not always matches the original renpy version
Woh thanks good to know! I only compress the images and video files anyway, so I never put the whole document into the thing lol
 

DiscipleOfVirginia

(ノ◕ヮ◕)ノ*:・゚✧
Game Developer
Oct 2, 2018
825
3,494
If it's not a joke, then it's sad.
You're the author and it's up to you, but...
there are no more words for a comment. One can only regret. In any case, good luck to you, to do exactly what you want.
My guy, I am yanking your chain lmao. Ofc there will be a lot of content. But, the original v0.8 was really long (Almost like 75% of Holly Smiles at The End). And the super long updates was not viable anymore. So I had to divide it into three updates. And sadly, the majority of the content was in the last part of v0.8, which will now be v1.0. Which is why I added a Klaudia scene in v0.9.

But if you want I can take it out, and add in Klaudia playing with bunnies instead of Mel's pussy
 

gekk0z

Member
Nov 6, 2017
205
789
Yet another Dev who has mastered the art of "... sadly, the majority of the content was in the last part of v0.8, which will now be v1.0 ". If you were waiting for Melanie content, you will be disappointed. On the other hand, if you like snarky remarks, you're in for a treat.
 
Last edited:
  • Like
Reactions: gilgamesh9

BulgariAMARA

Active Member
Apr 10, 2023
536
1,071
My guy, I am yanking your chain lmao. Ofc there will be a lot of content. But, the original v0.8 was really long (Almost like 75% of Holly Smiles at The End). And the super long updates was not viable anymore. So I had to divide it into three updates. And sadly, the majority of the content was in the last part of v0.8, which will now be v1.0. Which is why I added a Klaudia scene in v0.9.

But if you want I can take it out, and add in Klaudia playing with bunnies instead of Mel's pussy
You caught me, I thought you seriously didn't want to add obscene content to the game. I'm glad I was wrong. Thanks for the wonderful game. Good luck to you and Happy New Year!
 
  • Heart
Reactions: DiscipleOfVirginia

Gearz24

Member
Apr 25, 2021
169
518
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.
So after waiting a year Melanie didn't get fucked that's o.k. looks like the supporters did.
 
3.30 star(s) 42 Votes