Havik79
Conversation Conqueror
- Sep 5, 2019
- 6,938
- 8,294
You? No. That's something the dev would have to do, because this is very self-explanatory:I tried using URM with Rogue Like Evolution but got this error
You don't have permission to view the spoiler content. Log in or register now.
Is there something I can do to make it work with the game ?
Exception: 0x52: This mod (x52URM) does not support Ren'Py version 6.99.13.2919. Lowest supported version is 6.99.14
So what you're saying it that currently when you ignoreI'm not exactly sure how this request would be implemented, but can you make a soft and hard ignore for variables and path detection? Or improve the current implementation?
The example I'm bringing up is Lessons in Love. The first two chapters of the game have a SFW toggle for every sexual reference in the game, hidden behind the "bonus" variable being false for the SFW version. Ignoring bonus would save someone playing the game with URM so much time, like several hours if they would otherwise read both sets of dialogue.
There are some occasions where both another variable and bonus are evaluated at the same time e.g but since bonus is on the ignore list, it's not shown to me and I don't realise there was a meaningful split there until I go back over it in the code, or notice there really should have been a decision split.
I'm not sure if making a soft and hard ignore is the way to go, or just making it so I see the rest of the decision tree with the rest of the variables that aren't ignored (So in this case I still get a prompt for "if futabalust15 == True" if I have bonus ignored and the first quote is evaluated)
bonus
the full if futabalust15 == True and bonus == True
will be ignored by URM?See:I tried using URM with Rogue Like Evolution but got this error
You don't have permission to view the spoiler content. Log in or register now.
Is there something I can do to make it work with the game ?
When you get the exception "0x52: Incompatible Ren'Py engine version" when starting a game it means that the Ren'Py version used by that game isn't supported by URM.
Workaround
There's a workaround for this where you upgrade the Ren'Py version used by the game yourself. But this is not guaranteed to work.
- Download the Ren'Py SDK (I would recommend
You must be registered to see the linksand use the "Download SDK zip" below the buttons)- From the game's folder, remove the folders lib and renpy. Also remove the .exe, .py and .sh files
- From the downloaded SDK, put the folders lib and renpy and the files renpy.exe, renpy.py and renpy.sh into the game's folder
- Now run the game by starting renpy.exe (on Windows) or renpy.sh (on Linux)
yeah it ignores the whole thingSo what you're saying it that currently when you ignorebonus
the fullif futabalust15 == True and bonus == True
will be ignored by URM?
That is correct, I don't see the path detected in the corner. I just took a few screenshots to show what it looks like.So what you're saying it that currently when you ignorebonus
the fullif futabalust15 == True and bonus == True
will be ignored by URM?
bonus
is basically always True unless I use URM to change it. It was only officially set to False in sfw downloads of the game which haven't existed for years.bonus
is ignored, because futabalust15
is a event variable and can be True or False based on my earlier choices.futabalust15 == True
, a soft ignore which I'd imagine would show me the full choice even with bonus
present, only being fully hidden if it's the only variable being evaluated, or a hard ignore which would always ignore paths with ignored variables like the current behaviour shows.thank you but her status goes back to normal even i change her statuscourage
View attachment 4825671
charm
View attachment 4825672
mood
View attachment 4825673
ritor = rhetorik
finding the right var's sucks 'cause the translation
View attachment 4825687
try to freeze the valuesthank you but her status goes back to normal even i change her status
Just retried that. Deleted the AppData\Roaming\RenPy\ Murmur and URM folders as well as the the local save folder of MurMur installation. It still keeps that behaviour. I started another RenPy Game with URM (Futas World of NTR by Scarlet) and there URM panels work as expected. I'll retry with again deleting the saves and a fresh install (deleting the game folder and extracting the rar).you have to delete the persistent files for those games too i think - at both locations game and appdata
make a backup and try
So reinstall of MurMur didn't work. I tried another renpy game I did a fresh extract on, renamed the save files so I wouldn't be found be the game and there URM (v2.60) works as expected as well. Now after already deleting Born2Breed where I encountered the issue for the first time I extracted that game again and pasted URM (v2.60) into it. There it works as expected as well. So far I only those issues with MurMur. Can someone confirm that it's only on my end?Just retried that. Deleted the AppData\Roaming\RenPy\ Murmur and URM folders as well as the the local save folder of MurMur installation. It still keeps that behaviour. I started another RenPy Game with URM (Futas World of NTR by Scarlet) and there URM panels work as expected. I'll retry with again deleting the saves and a fresh install (deleting the game folder and extracting the rar).
I will post the outcome shortly.
tested , its the game somehowSo reinstall of MurMur didn't work. I tried another renpy game I did a fresh extract on, renamed the save files so I wouldn't be found be the game and there URM (v2.60) works as expected as well. Now after already deleting Born2Breed where I encountered the issue for the first time I extracted that game again and pasted URM (v2.60) into it. There it works as expected as well. So far I only those issues with MurMur. Can someone confirm that it's only on my end?
yeah I have the same issues with murmurtested , its the game somehow
So reinstall of MurMur didn't work. I tried another renpy game I did a fresh extract on, renamed the save files so I wouldn't be found be the game and there URM (v2.60) works as expected as well. Now after already deleting Born2Breed where I encountered the issue for the first time I extracted that game again and pasted URM (v2.60) into it. There it works as expected as well. So far I only those issues with MurMur. Can someone confirm that it's only on my end?
i dive into the scripts later today , maybe i can find somethingyeah I have the same issues with murmur
This took a lot of digging, but I found the issue with A House in the Rift.I'll note down any games i get it in in the future if you'd like, as for what caused it today, a house in the rift.
Function()
20 times a second... yes!! 20 times a second!misc_utils
from:timer 0.05 action Function(periodic_callback) repeat True
timer 0.05 action Function(periodic_callback, _update_screens=False) repeat True