Create and Fuck your AI Cum Slut -70% Summer Sale
x

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

5.00 star(s) 46 Votes

9537

Newbie
Feb 18, 2024
45
43
may i have a question how can i to change the font size of games,some game's font size it's too small.
about this i don't know how to do.

and the other question how could i set QUICK KEY about to start and shot Quick menu's function.
the last thanks for this mod.
i like this mod but i don't understand it too much,
 

cpdp11

Newbie
Jul 5, 2020
75
97
I found a weird bug.
In Power Vacuum(main game - Ch. 12), you can't rollback after events with URM.
Of course, you can rollback (after events) without URM.

It works fine on the first run, but if you save once, then restart the game and load the save again, you will get this bug (only with URM)
 

cpdp11

Newbie
Jul 5, 2020
75
97
i tested it
cant reproduce this "bug"
Start a new game, save, then exit and restart the game.
Load your save and play an event. After completing the event, try to roll back. (Mouse wheel)
does not work.

(This is a bug I got from someone else as well)
 

cpdp11

Newbie
Jul 5, 2020
75
97
i did a new install with new game (i dont play it for myself)
i did as you told at the first post
what kind of event are you talking about?
upload a save?
Let me clarify: I don't play this game either (I was just testing it out at someone's request)
Start a new game and play(or skip) until you get this screen.

screenshot0001.png

Save the game now, quit and restart. (Make sure URM loaded now)
Then click that face icon and play the scene.

screenshot0002.png

After you come back here, try to rollback. (It should work if you don't have URM)
But if you have URM, rollback doesn't work here.
I tested it several times.
 

cpdp11

Newbie
Jul 5, 2020
75
97
Here're also 3 saves,

1-1. I just started a new game and saved it.
1-2. Saved after playing an event with URM (you can't rollback with/without URM with this save)
1-3. Saved after playing an event(the same event) without URM (you can rollback without URM with this save but you can't with URM)
 

cpdp11

Newbie
Jul 5, 2020
75
97
And I just noticed that the 1-3 save file size is larger than the other two.
(1-1, 1-2 saved with URM and only 1-3 saved without URM)

*The only difference between 1-2 and 1-3 save files is URM.
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,838
8,520
And I just noticed that the 1-3 save file size is larger than the other two.
(1-1, 1-2 saved with URM and only 1-3 saved without URM)
well

you need the uncensor patch for sandbox first ...
and idk why urm would block this
obove my knowledge
0x52
 

Enlight432

Active Member
Jan 4, 2024
958
1,555
So, is there a way to scroll left to right or anything? Because some games now do a "phone resolution" and this happens if I try to use URM there... :x

View attachment 4781191
The developer hasn't solved this problem yet, but if you or anyone else finds an indirect solution for it, please share it here. The number of phone-centric games has greatly increased these days
 

IBreedWives

Newbie
Jan 11, 2025
34
10
does anybody know why text replacement only works sometimes within a game? i try to replace any dialogue that refers to incest out of my games, and it works sometimes but other times it will show the incest dialogue

i have case insensitive and replace parts of words turned on for all the replacements
 
  • Like
Reactions: Enlight432

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,838
8,520
does anybody know why text replacement only works sometimes within a game? i try to replace any dialogue that refers to incest out of my games, and it works sometimes but other times it will show the incest dialogue

i have case insensitive and replace parts of words turned on for all the replacements
which game?
which version?
using a other mod?
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,838
8,520
This issue also occurs for me in 3 percent of games. I don't recall any specific game names at the moment, but if it happens again, I'll let you know, thanks
the point is
if the chars are declared with a unique id such as [momname] the replacement does not work
there has to be a additional replacement set for this name
define m = Character ("mom")
define m = Character ("[momname]"

example

i talked to my mom - here the replacement works for mom
i talked to my [momname] - here not
 
  • Like
Reactions: Enlight432

Sether0

Newbie
Apr 16, 2024
98
245
The developer hasn't solved this problem yet, but if you or anyone else finds an indirect solution for it, please share it here. The number of phone-centric games has greatly increased these days

I usually look at the game's settings files (options.rpy / gui.rpy) and play around with resolution values to fit the URM interface.
Python:
define config.screen_width = xxx
define config.screen_height = yyy

init python:
    gui.init(xxx, yyy)

For example, if the game has such settings:
Python:
define config.screen_width = 730
define config.screen_height = 1368

init python:
    gui.init(730, 1368)

I change them to the following:
Python:
define config.screen_width = 1368
define config.screen_height = 1368

init python:
    gui.init(1368, 1368)

However, this makes the game interface a bit crooked.
 
  • Heart
Reactions: Enlight432

Sether0

Newbie
Apr 16, 2024
98
245
if the images and backgrounds are at 400x300 (for example)
the changes at the gui does nothing but get you "black bars" ,exept you zoom every image
like this (ori 1980x1080 changed to 2560x1440)
View attachment 4874305
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.
 
  • Heart
Reactions: Enlight432
Nov 23, 2020
152
87
Unfortunately this dev caused an issue within Ren'Py itself. I could only fix this by overruling Ren'Py's build-in function SetLocalVariable(), which I don't want to do.

I have a work-around for you:
  1. Open the file renpy/common/00action_data.rpy
  2. Find the line def SetLocalVariable(name, value): (line 161)
  3. Add a line bellow that one containing: import sys
You don't have permission to view the spoiler content. Log in or register now.

Details:
They assigned a character to the variable sys, which is a because it's use by Ren'Py internally.
Be doing this they broke a function inside Ren'Py that URM needs.
hi, when i do this on pale carnation data i obtain this
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00action_data (1).rpy", line 182: indentation mismatch.

Ren'Py Version: Ren'Py 7.3.5.606
Sun May 25 18:37:22 2025
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00action_data (1).rpy", line 182: indentation mismatch.

Ren'Py Version: Ren'Py 7.3.5.606
Sun May 25 18:41:59 2025
hi, doing what you say do I get this, how do I solve?
 

Boehser Onkel

Forum Fanatic
Modder
Feb 20, 2021
4,838
8,520
hi, when i do this on pale carnation data i obtain this
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00action_data (1).rpy", line 182: indentation mismatch.

Ren'Py Version: Ren'Py 7.3.5.606
Sun May 25 18:37:22 2025
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


File "renpy/common/00action_data (1).rpy", line 182: indentation mismatch.

Ren'Py Version: Ren'Py 7.3.5.606
Sun May 25 18:41:59 2025
hi, doing what you say do I get this, how do I solve?
renpy/common/00action_data (1).rpy

should be

renpy/common/00action_data.rpy

you made a duplicate of the file , right?
 

unclemati

New Member
Sep 24, 2023
12
2
I have two games that should have "Skip" enabled but it's not working, even with 'Skip Unread'. If I enable quickmenu from URM and add skip, it's not working as well.

Is there a way to manually enable this command and if there is, how to do it?
 
5.00 star(s) 46 Votes