Create your AI Cum Slut -70% for Mother's Day
x

Mod Ren'Py Universal Ren'Py Mod / URM [2.6.1] (mod any Ren'Py game yourself)

5.00 star(s) 46 Votes
Sep 30, 2020
96
256
I am unable to save URM files.
  • URM version 2.6.1
  • Game: Fetish Locator SM v0.7.11 (however, happens with all games as well).
  • Issue: occurs when trying to save URM file.
  • I noticed that the issue started after updating mac OS x from 14.7.4 to 14.7.5.
  • This occurs on all my games now with and without any mods.

Screenshot 2025-05-05 at 10.11.17 AM.jpg
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,601
7,995
Probably a permissions issue. (I'm not very familiair with MacOs)
When you press the "?" button it will show you the path it's trying to save to.
Ren'Py also creates a "log.txt" file. That file will contain a line starting with "0x52:" showing more details about the error.
I am unable to save URM files.
  • URM version 2.6.1
  • Game: Fetish Locator SM v0.7.11 (however, happens with all games as well).
  • Issue: occurs when trying to save URM file.
  • I noticed that the issue started after updating mac OS x from 14.7.4 to 14.7.5.
  • This occurs on all my games now with and without any mods.

View attachment 4809615
 
  • Heart
Reactions: 0x52

Havik79

Conversation Conqueror
Sep 5, 2019
6,852
8,134
Curious doesn't seem to work for the game Him. Usually, when there are paths/choices to make, it shows me info for each option, but for him, nothing pops up.
https://f95zone.to/threads/him-v0-2-3-kabuki.235471/

So, for example, in Isekai Paradise, I get this.
You don't have permission to view the spoiler content. Log in or register now.

Yet for the game Him, I have had several choices, and nothing shows up.
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,601
7,995
Curious doesn't seem to work for the game Him. Usually, when there are paths/choices to make, it shows me info for each option, but for him, nothing pops up.
https://f95zone.to/threads/him-v0-2-3-kabuki.235471/

So, for example, in Isekai Paradise, I get this.
You don't have permission to view the spoiler content. Log in or register now.

Yet for the game Him, I have had several choices, and nothing shows up.
that's because the choices are behind labels , not actual used variables (no if/else)

char1 "But more importantly, you're a hero! You bested the ogre that's plagued our city for a decade!"
scene 2_s5 with Dissolve(0.4)
mcn "I did?"
scene 2_s6 with Dissolve(0.4)
char1 "You defeated this monster, did you not?"
scene 2_s6_2 with Dissolve(0.4)
""
scene 2_s10 with dissolve
mcn "..."
call screen scene2_choice1 with dissolve

label scene2_choice1_truth:
$ mc_truth = True

scene 2_s8 with Dissolve(0.7)
mcn "Honestly, I didn't do a thing. A falling cage took the ogre out—pure luck, really."
$ mc_karma += 5
$ karma_more = True

(hope i am not wrong with it :ROFLMAO: )
 
Last edited:

Tiur

Well-Known Member
Nov 13, 2021
1,308
3,604
that's because the choices are behind labels , not actual used variables (no if/else)

char1 "But more importantly, you're a hero! You bested the ogre that's plagued our city for a decade!"
scene 2_s5 with Dissolve(0.4)
mcn "I did?"
scene 2_s6 with Dissolve(0.4)
char1 "You defeated this monster, did you not?"
scene 2_s6_2 with Dissolve(0.4)
""
scene 2_s10 with dissolve
mcn "..."
call screen scene2_choice1 with dissolve

label scene2_choice1_truth:
$ mc_truth = True

scene 2_s8 with Dissolve(0.7)
mcn "Honestly, I didn't do a thing. A falling cage took the ogre out—pure luck, really."
$ mc_karma += 5
$ karma_more = True

(hope i am not wrong with it :ROFLMAO: )
Nope, you're right. But it's not because they're behind labels, it's because they use custom choice screens instead of the Ren'Py choice system. See this line instead for the smoking gun:
Code:
    call screen scene2_choice1 with dissolve
That's why. Custom choice screens are completely non-standardized, so there's no possible way URM can extract the choices from them.
 
5.00 star(s) 46 Votes