There was an update to the RealPornMod today, 0.62, which is about 1.75 gigs larger than 0.61. Here it is, other than that change, essentially the same code as the last build. 3.82 gigs versus 2.08 gigs for the previous upload.
There was an update to the RealPornMod today, 0.62, which is about 1.75 gigs larger than 0.61. Here it is, other than that change, essentially the same code as the last build. 3.82 gigs versus 2.08 gigs for the previous upload.
Which is why people bitching about the code is a bit hard to take seriously, it all so frigging simple to mod on your own, if you have a functioning brain and a bit of curiosity.
To be honest, I'm personally insulted by that, since I have in the past put extensive effort into modding this game and it went very badly. I guess that means you don't think I have a functioning brain, but I'm pretty sure I do. PM me if you want details. I'll send you a link to the Discord discussion where I was trying to get troubleshooting help, so you can see how not-simple it was. Maybe changing one single variable somewhere is "so frigging simple," but making substantial, meaningful changes to this game is way more complicated than most any other Renpy game I've encountered.
To be honest, I'm personally insulted by that, since I have in the past put extensive effort into modding this game and it went very badly. I guess that means you don't think I have a functioning brain, but I'm pretty sure I do. PM me if you want details. I'll send you a link to the Discord discussion where I was trying to get troubleshooting help, so you can see how not-simple it was. Maybe changing one single variable somewhere is "so frigging simple," but making substantial, meaningful changes to this game is way more complicated than most any other Renpy game I've encountered.
Lol, I wasn't talking about personal drama, I was talking about a transcript that gives a blow-by-blow of how complicated it actually is to mod this game. Apparently you don't even pass your own test on the "a bit of curiosity" criterion. Whatever you gotta do to feel superior to other people, I guess.
Be careful when using UnRen as it's not always 100% effective at decompiling. A few games have resulted in corrupted/broken files after unpacking, and with how large LR2 is it's safer to download the master branch from the git page (~1.7 GB).
I'm quoting you but this applies to anyone who wants to download the source code from the git page. Every file mentioned can be found following this link:
You must be registered to see the links
Go to the Git page. You should see the source code for the "develop" branch
Click the dropdown tab and select "master"
Click on the "Code" tab
Select "zip" for the file format
Extract the file into the folder and open it
Look for the "LR2-Runtime.zip" file and "extract here"
Note: This zip file contains the executables and libraries for the game so you don't need to redownload or modify older versions
Repeat the above steps for downloading the "develop" branch except making sure you're looking at the "develop" branch instead of the "master"
You can technically edit any .py or .rpy file with Notepad, but Notepad++ contains the format for the Python language which will make editing way easier. Also keep in mind that you cannot use tab characters in .rpy files (i.e. pressing "tab" on your keyboard) as it will always result in an error on load.
I'm quoting you but this applies to anyone who wants to download the source code from the git page. Every file mentioned can be found following this link:
You must be registered to see the links
Go to the Git page. You should see the source code for the "develop" branch
Click the dropdown tab and select "master"
Click on the "Code" tab
Select "zip" for the file format
Extract the file into the folder and open it
Look for the "LR2-Runtime.zip" file and "extract here"
Note: This zip file contains the executables and libraries for the game so you don't need to redownload or modify older versions
Repeat the above steps for downloading the "develop" branch except making sure you're looking at the "develop" branch instead of the "master"
You can technically edit any .py or .rpy file with Notepad, but Notepad++ contains the format for the Python language which will make editing way easier. Also keep in mind that you cannot use tab characters in .rpy files (i.e. pressing "tab" on your keyboard) as it will always result in an error on load.
Always happy to pass some knowledge on! This game alone took about a year for me to grasp somewhat competently to make personal edits, but I'm by no means versed enough to write mods like Elkrose or zenupstart.
That also triggered another event, where she just walks into the office and starts sucking MC cock while still completely virgin and innocent.
I think the order of story-events (and triggers) got borked.
That also triggered another event, where she just walks into the office and starts sucking MC cock while still completely virgin and innocent.
I think the order of story-events (and triggers) got borked.
I can't recall if I had one at that time. I have made some random my HR director after letting Sarah go (this fucks with certain dialog on the screen btw) But i am not sure if I had already done that when Ellie's events triggered.
I can't recall if I had one at that time. I have made some random my HR director after letting Sarah go (this fucks with certain dialog on the screen btw) But i am not sure if I had already done that when Ellie's events triggered.
Sluttiness is handled a bit differently in the code compared to love and obedience (idk why). It can be referenced two ways, but only one of them can actually be changed in .rpy scripts (see spoiler 1).
The location that the error log points to is in the second spoiler, but the only reference is to the current HR director (which could be where the error comes from). According to PyTom regarding this specific error, it occurs when passing one thing when whatever the target is meant to be something else (i.e. you're expecting to get a banana but instead you get an apple).
As to how this can happen, I honestly have no idea. Someone way smarter than me could figure it out, but this might be worth posting to the bug report section on the discord for Tristim to fix.
Sluttiness is handled a bit differently in the code compared to love and obedience (idk why). It can be referenced two ways, but only one of them can actually be changed in .rpy scripts (see spoiler 1).
The location that the error log points to is in the second spoiler, but the only reference is to the current HR director (which could be where the error comes from). According to PyTom regarding this specific error, it occurs when passing one thing when whatever the target is meant to be something else (i.e. you're expecting to get a banana but instead you get an apple).
As to how this can happen, I honestly have no idea. Someone way smarter than me could figure it out, but this might be worth posting to the bug report section on the discord for Tristim to fix.
The thing is, sluttiness is a computed attribute, or property of an object. If a class doesn't have a special setter that sets a value affecting sluttiness (I think it's the _sluttiness attribute), it's impossible to set it with the assign (attr=value) operator. As far as I remember, sluttiness is the sum of this variable (_sluttiness) and situational sluttiness, which is also calculated.