- Nov 29, 2020
- 823
- 601
Got this error with Corrupted love I know it was reported already and it's because of renpy version just wanted to let you know
URM v1.7 is affected as well it seems
Ok, here's the weird part. Check out the lines numbers in ch5s29cassiamakeupsex.rpyc (will attach the decompiled .rpy).
Lines 230 and 242. They both had an error when I tried to save.
But after rolling back, both points saved correctly and did not error out.
I saw the "function startReplay" in the traceback so maybe it's because of that?
I'll keep an eye out on the next lewd scene for the replay thing and will try to save after the .rpy started with $ setReplay() but before it has a chance to write into persistent or do $ renpy.end_replay()
You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.EDIT: I have attached the decompiled versions of the .rpyc's that I have provided tracebacks for so far in my posts. Maybe it'll help.You don't have permission to view the spoiler content. Log in or register now.
EDIT: So I switched back to v1.9.2 and loaded a save which I saved using v.1.7.0. Upon trying to save using v1.9.2, I instantly got an error. Here are the tracebacks from the v1.9.2 errors (.rpy decompiled file attached as well/post updated):
You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.
Thanks for gathering all this information.Ok, I did some experimenting. I will attach the save file I am loading, the corresponding decompiled .rpy from the game, and the different scenarios and URM versions while I tried loading the attached save:
You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.No pickles.rpyc, with URM 1.7.0: Loads fine, save was made while using URM 1.7.0 with pickles.rpyc.You don't have permission to view the spoiler content. Log in or register now.
With pickles.rpyc, with URM 1.7.0: Same as above.
With pickles.rpyc, with URM 1.9.2: Same as above.
After loading with pickles.rpyc and URM 1.9.2, I still can't save in the exact spot the save was loaded, I get the following traceback error:
You don't have permission to view the spoiler content. Log in or register now.Saving in the exact spot with pickles.rpyc and URM 1.7.0 works as intended.You don't have permission to view the spoiler content. Log in or register now.
Hope these help somehow. Let me know if there's more I can help you with.
Happy to help, and just so you know, you deserve it, because this is some awesome work you did with URM.Thanks for gathering all this information.
I've just published 1.9.3 in the bèta channel. You can get it from within URM by switching to the bèta channel or you can manuallyYou must be registered to see the links.
I really hope this resolves the issues. It's hard to fix those strange issues without an easy way to reproduce them. I could reproduce the last one with the save you provided, so that should definitely be solved.
It supports this since 0.7 (2020-12-30). There's also aHey 0x52, is it possible to add an option to search for lists or classes?
Sorry, I should've been more clear. I meant to search for items that are inside a list.It supports this since 0.7 (2020-12-30). There's also aYou must be registered to see the linksshowing this.
I've did this on a few games and it worked without any problems.I see that this is a Ren'py version error. is there a workaround? I love the mod and refuse to play any gave withour it.. Lol. Never had an issue before. Will recompiling the game using newer Ren'py version work?
The dashes and dots are not part of the variable name. I use this in URM to make it more obvious you're looking at a variable inside a variable. So you can not search for them. For example,Sorry, I should've been more clear. I meant to search for items that are inside a list.
E.g View attachment 1860066
I can search for "state" but I can't search for "-state.girls" neither "--state.girls[0]".
girls[0]
means girls
is a list and [0]
means you're looking at the first item from that list.I've noted it. So it should get added some dayHowdy 0x52 - got a question for ya.
Besides the watchpanel, is there any option or some way of only displaying the current label being played in a game?
If not, is there any non-intrusive way to add that or any plans on it?
Thanks a bunch!
Thanks, I appreciate itHi 0x52! This morning I read through this whole thread -- yes, I read each and every message! And it again blew my mind how fast and professional you answer all the questions and provide fixes for almost every bug report within a couple of days! You're amazing, and that's why I like URM so much (and that's why you got yourself a new supporter on Patreon)!
Two years ago, in my very first post on this thread, I asked for a feature to sort "search results / remembered variables etc. by name or value" and you put it on your todo list. And although you introduced sort buttons in v1.3 of URM for (remembered!) variable names, I'm still missing it for search results, and as a bonus for sorting by values! Couldn't this be done, or is there still hope this can be added for search results as well? (Also: those sort buttons -- if they just had arrows pointing up-/downwards this would suffice, it feels weird to see two downwards pointing arrows with those little "AZ" and "ZA" next to it; I would prefer simpler buttons ).
False
comes after a string containing Example
Is was on my list, but I check it off after this post.In my 2nd post on this thread, I talked about sometimes having black screens as a preview of saved labels, and you explained how this could happen (and later in the thread you mentioned another reason that could cause this), and you wanted to put "skip black screens" onto your todo list as well. It's not on your todo list anymore, but you also did not implement it, right? I still get a black screen as a preview under certain conditions. Again, it would be nice to see an option to "edit" the preview image, which maybe will just start a replay of the selected label and you can hit a certain hotkey/button at any point, so URM will save that image as a preview for the selected scene...?!
I've look into this and it's because in this game they use the variableCan't rename the Main Character for Midlife Crisis
https://f95zone.to/threads/midlife-crisis-v0-29-nefastus-games.20427/
You don't have permission to view the spoiler content. Log in or register now.
This error pops up as soon as I click the "rename character" icon. (Mostly, I want to rename "Me" to the actual name of the MC)
I've waited for a few versions of URM and I missed if it's a known issue with this game.
t_name
for a characters name (Tracy), but this variable has no default value, which makes it crash. There are a couple of options:t_name
is set and then try renamingt_name
through the console.rpy
. Add the content: default t_name = "???"
, start the gameThis worked perfectly. Thank you. It will also likely solve a problem I have with Deadlocked in Time which invokes a variable that doesn't exist (the Dev has yet to respond). Now I know how to create variables!Create a file in the game folder, you can pick whatever filename you want as long as it has the extension.rpy
. Add the content:default t_name = "???"
, start the game
Greetings.This worked perfectly. Thank you. It will also likely solve a problem I have with Deadlocked in Time which invokes a variable that doesn't exist (the Dev has yet to respond). Now I know how to create variables!
I really appreciate the time you take to help others.
EDIT = Ok, so it's pretty obvious that I'm pretty incompetent. So what worked for Midlife Crisis didn't work for Deadlocked in Time. As per
https://f95zone.to/threads/deadlocked-in-time-v0-4-neko-hime.72562/page-87#post-8295647
I've tried
-making the variable ch4_claude_futa = False
-addChoice ('ch4_claude_futa', False)
-action addChoice ('ch4_claude_futa', False)
-SetVariable ('ch4_claude_futa', False)
Would you please assist me in finding how to write this (and future paths) so it chooses the top option.
You don't have permission to view the spoiler content. Log in or register now.
I'm sorry I'm so much trouble.
menu:
"Both would be great":
$ renpy.fix_rollback()
$ addChoice('ch4_claude_futa', True)
$ incKarma()
...
"Stay as you are":
$ renpy.fix_rollback()
$ addChoice('ch4_claude_futa', False)
$ incKarma()
...
init 999 python:
config.developer = True
config.console = True
$ ch4_claude_futa = False
$ variable_name_here = 69/True/False/etc
This is haunting me. It seems like some of the changes in 1.9.3 didn't have the expected/hoped result.Greetings again.
Back with another title and some more tracebacks when trying to save a game, this time with URM 1.9.3, title is The DeLuca Family 0.08.0.2 (latest bugfix patch), using Ren'Py 7.4.11.2266 (again). The highlighted saves from the screenshot are from "saves.rar" and are before the save error occured. Tracebacks below:
You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.You don't have permission to view the spoiler content. Log in or register now.I shared this information in the game's Discord as well, but after I removed URM the game seems to be running fine, and the save function does not error out anymore, so I decided to post here as well. I will continue the game without URM and report back if the save function decides to spit out an error again.You don't have permission to view the spoiler content. Log in or register now.
Sorry .This is haunting me. It seems like some of the changes in 1.9.3 didn't have the expected/hoped result.
Strange thing is, I've played The DeLuca Family for a couple of hours with URM 1.9.3 without any issues.
I have one more idea I can think off to try.
I guess the developer of Pale Carnation likes to be ahead of the curve then. I just saw this running the compressed version of PaleCarnations-Ch3Up4 with URM 1.9.2:Thanks you for the details. This issue only seems to occur with Ren'Py 7.4.11.2266.
I have some questions about this:
- Are you able to reproduce this or is it random?
- Did you get the error with exactly URM 1.9.2? (not an earlier version)
- Have you used URM before 1.9 on this exact game without any issues?
URM isn't Ren'Py 8 compatible yet. This Ren'Py is a prerelease version not meant for production only for testing
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/0x52/classes/settings.rpy", line 45: invalid syntax
except Exception, e:
^
File "game/0x52/framework/API.rpy", line 95: invalid syntax
except Exception, e:
^
Ren'Py Version: Ren'Py 8.0.0.22052602n
Mon Jun 13 14:28:18 2022