2.80 star(s) 10 Votes

Nhenta-_-

New Member
Sep 26, 2024
4
0
I just been killed by Lucretia and after I did the enigma to get a new body when I try to get out It's bugged and I'm in my orc body with no mission to do. is there something I can do about it?
 

The void club

Member
Game Developer
Nov 21, 2018
397
155
I just been killed by Lucretia and after I did the enigma to get a new body when I try to get out It's bugged and I'm in my orc body with no mission to do. is there something I can do about it?
I'll look it up, you're on 0.12.4? (just making sure if the bug was not already fixed)
 

stoke88

New Member
Sep 1, 2020
7
1
The void club
A couple of possible bug fixes, in case you missed them

Fix for trying to leave the manor basement, most likely what Nhenta-_- is experiencing
Python:
$ bl_manhal = [b_manhl1,b_manhl2,b_manhl3,b_manhl4]

#instead of

$ bl_manhall = [b_manhl1,b_manhl2,b_manhl3,b_manhl4]

Fix for sleeping in the coffin


Python:
call screen locations with dissolve

#instead of

$ renpy.call_screen("%s"%(mapjump)) #(story label p8cryptnight)]
Missing buttons for the heist quest

Python:
$ bl_outinn = [b_wormap, b_outin1, b_outin2]

#instead of

$ bl_outinn = [b_wormap]
Multiple locations, im guessing you changed the array describing monsters to an object, but forgot to change these instances to reference the new definitions

Python:
[m_zombie1,m_zombie2,m_zombie3,m_zombie4,m_zombie5]

#instead of

[xzombie1,xzombie2,xzombie3,xzombie4,xzombie5]
i've attempted to make a bugfix.rpy that everyone can use. But as i'm not versed in renpy i've not managed to get the config_overrides to work.
 
Last edited:

Johnotron1223

Newbie
Sep 13, 2023
53
6
you have to fight a slime with Zana, then it will unlock a path game in the deep swamp region (you have to find the right way, which is not the one the red slime is using)
"The red slime is avoiding death, but we're looking for a necromancer" what is this hint supposed to mean? Where do i go in the deep swamp?
 

The void club

Member
Game Developer
Nov 21, 2018
397
155
The void club
A couple of possible bug fixes, in case you missed them

Fix for trying to leave the manor basement, most likely what Nhenta-_- is experiencing
Python:
$ bl_manhal = [b_manhl1,b_manhl2,b_manhl3,b_manhl4]

#instead of

$ bl_manhall = [b_manhl1,b_manhl2,b_manhl3,b_manhl4]

Fix for sleeping in the coffin


Python:
call screen locations with dissolve

#instead of

$ renpy.call_screen("%s"%(mapjump)) #(story label p8cryptnight)]
Missing buttons for the heist quest

Python:
$ bl_outinn = [b_wormap, b_outin1, b_outin2]

#instead of

$ bl_outinn = [b_wormap]
Multiple locations, im guessing you changed the array describing monsters to an object, but forgot to change these instances to reference the new definitions

Python:
[m_zombie1,m_zombie2,m_zombie3,m_zombie4,m_zombie5]

#instead of

[xzombie1,xzombie2,xzombie3,xzombie4,xzombie5]
i've attempted to make a bugfix.rpy that everyone can use. But as i'm not versed in renpy i've not managed to get the config_overrides to work.
Hey! Thanks! I think I got all the other, except the one for the Outland Inn (not sure what is this bug yet, I'll check it.

I just learned how to use object and it makes 1000x more sens than array haha, so yeah lot of changes, but with all the current code to review, that's a crazy job.

Anyway, like someone above suggested, from now on I will only upload the code part fixed, so no more bug download (I'll make another post bellow)

Thanks for the help! If you find more let me know (check in 0.12.5, i also fixed other stuff in the parts around the orc body change and some more little fixes
 

The void club

Member
Game Developer
Nov 21, 2018
397
155
Okay so, after CeeNux great suggestion, I've checked how to make a patch only for the bug fix, that means from now on, if you have 0.12.5 and up, no need to download the full game all the time there's a fix, I will upload a fill name scripts.rpa and you only have to drop it in the game folder (to replace the present one). Online version will be changed, so no need to do anything. The scripts file will be in a folder with a game version (let say 0.12.6) so even if you downloaded 0.12.5 just take 0.12.6 script and drop it in.

This is only for fixes, when there will be a new update it will still require a full download (Don't expect me to make miracles yet)

 

stoke88

New Member
Sep 1, 2020
7
1
Hey! Thanks! I think I got all the other, except the one for the Outland Inn (not sure what is this bug yet, I'll check it.

I just learned how to use object and it makes 1000x more sens than array haha, so yeah lot of changes, but with all the current code to review, that's a crazy job.

Anyway, like someone above suggested, from now on I will only upload the code part fixed, so no more bug download (I'll make another post bellow)

Thanks for the help! If you find more let me know (check in 0.12.5, i also fixed other stuff in the parts around the orc body change and some more little fixes
It's part of the purrfect heist quest. The thieves should be at the inn, but the buttons aren't registered in the array for the screen / zone / maptarget. Not sure what to call it.

The change to use objects is a very good one, much easier to keep track of and it makes it much easier to create functions just for that type.

Another good object would be Teammate. On which you can register which attacks they have. Maybe even some specific actions in maps if they are your teammate
 

Nhenta-_-

New Member
Sep 26, 2024
4
0
yes, now it should show 0.12.5 in the in game menu and it should be fixed
I have a new bug since I left the crypt I have errors that appear and when I do "ignore" it makes me advance directly in the story, I arrived at the point where the ants make a tunnel to counter the rebellion from the zombie lady but this time I only chain the errors without being able to continue the story. What can I do for this?
Thanks in advance.
 

The void club

Member
Game Developer
Nov 21, 2018
397
155
I have a new bug since I left the crypt I have errors that appear and when I do "ignore" it makes me advance directly in the story, I arrived at the point where the ants make a tunnel to counter the rebellion from the zombie lady but this time I only chain the errors without being able to continue the story. What can I do for this?
Thanks in advance.
The first time leaving the crypt (after being killed?) there's was a bug in .4 but i think it was fixed, can you send me the error code if it's possible?
 

The void club

Member
Game Developer
Nov 21, 2018
397
155
It's part of the purrfect heist quest. The thieves should be at the inn, but the buttons aren't registered in the array for the screen / zone / maptarget. Not sure what to call it.

The change to use objects is a very good one, much easier to keep track of and it makes it much easier to create functions just for that type.

Another good object would be Teammate. On which you can register which attacks they have. Maybe even some specific actions in maps if they are your teammate
Yep, the teammate would also be on my list, but I'm thinking about upgrading the fight process to make it more dynamic, if my skills allow it
 

stoke88

New Member
Sep 1, 2020
7
1
Yep, the teammate would also be on my list, but I'm thinking about upgrading the fight process to make it more dynamic, if my skills allow it
If you need a review or stuck in code, i'm a developer as my day job, so i could be of some assistance. F95 has a messaging service i believe
 
  • Like
Reactions: The void club
2.80 star(s) 10 Votes