• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.

hofuldig

Member
Jul 5, 2017
233
268
i really like this game, as the developer has said he needs to wait a whole week to get ahold of his coder to make changes and fixes, the only thing i can recommend happens like ASAP to the dev is drop his current coder and hire someone who he can communicate with and get changes applied much faster, waiting a week just to fix a bug is not good business.
 

Meko

Newbie
Jun 20, 2017
43
30
I made a few local fixes in order to be able to see all the content in this version. Here is each fix and what it does, you can reproduce it yourself with a text editor. Lines with '-' at the start were removed and lines with '+' at the start were added.

game/scripts/bookshop/elion_action.rpy:
I removed two levels of indentation from the check_action() shown here. This seems to fix the bug where the 'Action' dialog options have no effect.
Code:
                 if brayanGuyEleon == 0 and complicate_life_elion > 0:
                     if not (label in can_use_actions_after_lost_brayan):
                         complicate_life_elion = 2
                         renpy.say(cedrick_sprite, "(Elyon doesn’t need that much money to help her parents. Perhaps it is necessary to figure out how to worsen her financial situation... Maybe it's worth to get rid of her parents .. I need to find someone to whom it can be assigned..)")
                         renpy.jump('dialog_elion')
-                        check_action()
+                check_action()
         renpy.jump('dialog_elion')
game/scripts/bookshop/elion_actions/blowjob.rpy:
I renamed a label, this fixes a crash when the blowjob scene starts.
Code:
label elion_blowjob_reject:
     "Elion has no mood"
     jump first_brayan
-label elion_blowjob_brayan_accept:
+label elion_blowjob_accept:
     show elion_norm
     cedrick_sprite 'Elyon..'
     hide elion_norm
     show elion_kosi_izv_2
     with Dissolve(.5)
game/sprites.rpy:
Some of the blowjob cg files are jpgs but the code was looking for pngs. This fixes a crash partway through the scene.
Code:
image cg_elion_blowjob_4='scenes/cg_elion_blowjob_4.jpg'
 image cg_elion_blowjob_5='scenes/cg_elion_blowjob_5.jpg'
 image cg_elion_blowjob_52='scenes/cg_elion_blowjob_52.jpg'
 image cg_elion_blowjob_6='scenes/cg_elion_blowjob_6.jpg'
-image cg_elion_blowjob_7='scenes/cg_elion_blowjob_7.png'
-image cg_elion_blowjob_8='scenes/cg_elion_blowjob_8.png'
-image cg_elion_blowjob_9='scenes/cg_elion_blowjob_9.png'
-image cg_elion_blowjob_8s ='scenes/cg_elion_blowjob_8s.png'
-image cg_elion_blowjob_9s ='scenes/cg_elion_blowjob_9s.png'
-image cg_elion_blowjob_9vnez ='scenes/cg_elion_blowjob_9vnez.png'
+image cg_elion_blowjob_7='scenes/cg_elion_blowjob_7.jpg'
+image cg_elion_blowjob_8='scenes/cg_elion_blowjob_8.jpg'
+image cg_elion_blowjob_9='scenes/cg_elion_blowjob_9.jpg'
+image cg_elion_blowjob_8s ='scenes/cg_elion_blowjob_8s.jpg'
+image cg_elion_blowjob_9s ='scenes/cg_elion_blowjob_9s.jpg'
+image cg_elion_blowjob_9vnez ='scenes/cg_elion_blowjob_9vnez.jpg'
 image cg_elion_podstol='scenes/cg_elion_podstol.jpg'
 image cg_elion_podstol2='scenes/cg_elion_podstol2.jpg'
 image cg_elion_podstol3='scenes/cg_elion_podstol3.jpg'
 image cg_elion_podstol4='scenes/cg_elion_podstol4.jpg'
game/scripts/fight/fight.rpy:
In order to complete the new branch, you need to:
Get 200 gold by clicking the area on the horizon in Meridian to the far left to fight bandits and slowly get gold
Talk to the creature at the inn
Get 200 more gold
Talk to Miranda and ask for her panties. She asks for a scorpion tail.
Click the area on the horizon in Meridian just left of the castle to fight monsters. Run away until you fight a scorpion. If you are lucky, you will only need 3 potions (bought for 100 gold each from Miranda) to win the fight. If you win the fight, there is a 1/5 chance of getting a tail...even if you cheat to get infinite gold this takes so long I decided to change it so the tail always drops:
Code:
         jump send_brayan_to_meridian
     else:
         'You won'
         if (rEnemy['item']):
             if (rEnemy['name'] == 'Morpion'):
-                $ giveItem = renpy.random.choice([0,0,0,0,1])
+                $ giveItem = renpy.random.choice([1,1,1,1,1])
                 if (giveItem):
                     $ inventory.items.append(rEnemy['item'])
                     $ hasHvostScorp = 1
                     "You got the tail of a Morpion"
Hope this helps somebody.

Edit: I've made a zip of the modified files, you can extract it into the directory with the .exe

here's the hotfix it's on page 9
 

Ysp22

Newbie
Jul 16, 2017
75
83
Getting a crash right after talking to Miranda giving her the tail.
Anybody else too?
 

Aveonics

Newbie
Jan 15, 2018
39
3
shall i do this before or after i get the phone of bryan friend? thank you in advance
To get the sleeping potion you have to get the boyfriend event after you harass her by asking to see her tits or something along those lines and then go to Miranda. She will then tell you to go get 2 items (forgot the names, but easy to find) and after you're done go back to Miranda and she'll tell you to wait 2-3 days, then -boom- sleep potion.
 
Sep 4, 2017
471
708
Bug after first bj scene with Elyon:
"
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 178, in script call
    call call_label('poisoning') from _call_call_label_4
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/elion_actions/blowjob.rpy", line 135, in script
    Will "Hello.."
Exception: Sayer 'Will' is not defined.

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

Full traceback:
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 178, in script call
    call call_label('poisoning') from _call_call_label_4
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/elion_actions/blowjob.rpy", line 135, in script
    Will "Hello.."
  File "C:\Users\len\Desktop\WITCH_HUNTER_02_ENG_WIN_LINUX\game-1.0-pc\renpy\ast.py", line 615, in execute
    who = eval_who(self.who, self.who_fast)
  File "C:\Users\len\Desktop\WITCH_HUNTER_02_ENG_WIN_LINUX\game-1.0-pc\renpy\ast.py", line 528, in eval_who
    raise Exception("Sayer '%s' is not defined." % who.encode("utf-8"))
Exception: Sayer 'Will' is not defined.

Windows-8-6.2.9200
Ren'Py 6.99.14.1.3218
hui 0.0
Wed May 09 12:31:17 2018
"
 

Taijahop

New Member
Mar 5, 2018
2
0
stuck right after repair the room for Elyon. Have waiting after a couple of days but nothing happens. Is this the end of this Version ´cause no information about whats next?
 

piales

Member
Jun 17, 2017
268
212
stuck right after repair the room for Elyon. Have waiting after a couple of days but nothing happens. Is this the end of this Version ´cause no information about whats next?
same here any idea?
also i cant press on the actions like breast of anything
 
Jul 6, 2017
74
58
shall i do this before or after i get the phone of bryan friend? thank you in advance
If you havent done it already, you can do the steps either way, it doesnt affect the outcome since the potion is something you have to gift her, so you can give her the potion whenever you want.
 
  • Like
Reactions: Aveonics
Sep 4, 2017
471
708
Bug after first bj scene with Elyon:
"
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 178, in script call
    call call_label('poisoning') from _call_call_label_4
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/elion_actions/blowjob.rpy", line 135, in script
    Will "Hello.."
Exception: Sayer 'Will' is not defined.

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

Full traceback:
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 56, in script call
    call call_label('wipes_the_shelves') from _call_call_label
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 178, in script call
    call call_label('poisoning') from _call_call_label_4
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/dialog_elion.rpy", line 150, in script call
    call call_label('dialog_elion') from _call_call_label_3
  File "game/scripts/bookshop/elion_actions/blowjob.rpy", line 135, in script
    Will "Hello.."
  File "C:\Users\len\Desktop\WITCH_HUNTER_02_ENG_WIN_LINUX\game-1.0-pc\renpy\ast.py", line 615, in execute
    who = eval_who(self.who, self.who_fast)
  File "C:\Users\len\Desktop\WITCH_HUNTER_02_ENG_WIN_LINUX\game-1.0-pc\renpy\ast.py", line 528, in eval_who
    raise Exception("Sayer '%s' is not defined." % who.encode("utf-8"))
Exception: Sayer 'Will' is not defined.

Windows-8-6.2.9200
Ren'Py 6.99.14.1.3218
hui 0.0
Wed May 09 12:31:17 2018
"
Second error that showed after I tried to click on "Ignore" button to ignore the first one:
You don't have permission to view the spoiler content. Log in or register now.

After it, the ending screen showed up. Anybody knows how to fix it?
 
3.50 star(s) 78 Votes