Ren'Py Lab Rats 2 - Reformulate [v2024.09 Beta] [Tristim/LZ_Starbuck/Trollden]

4.60 star(s) 69 Votes

ibnarabi

Member
May 21, 2021
149
626
I think mods are really not these standalone MODules anymore that can be swapped in and out, like they really should be. These devs are cowboys ;P
I compile all the mods together, the code ends up in an .rpa package, not the mod folder... He's deleting all the videos in the mod folder, not the actual mod itself which is now in scripts.rpa, so the mod is still running, but everything it references is gone, so it breaks, that is definitely pebkac. :eek:
 
  • Like
Reactions: oldshoe

Darkmind

New Member
Jan 27, 2019
4
6
I don't have a mac, I'm not gonna compile things I can't test, that would be weird... the files are over here :)
Just as another option: The game runs fine under Wine, so Whisky gets your compiles running in a couple of minutes:
 

TS2016

Member
May 7, 2017
465
250
I compile all the mods together, the code ends up in an .rpa package, not the mod folder... He's deleting all the videos in the mod folder, not the actual mod itself which is now in scripts.rpa, so the mod is still running, but everything it references is gone, so it breaks, that is definitely pebkac. :eek:
Ok then how do I remove or disable Realporn mod?
 

ibnarabi

Member
May 21, 2021
149
626
More fixes from Kina and Elkrose... latest Dev version with all the working mods;




Dev version without any mods;


 
Last edited:

YSumlj

New Member
Nov 18, 2022
4
4
The RPmod doesnt seem to work on linux. when running the game through
LabRats2-Reformulate.sh the movies dont show. According to the logs:
found 15 for category grope_ass
found 9 for category grope_vagina
found 15 for category grope_tits_clothed
found 20 for category orgasm_generic
the movies get found. But they dont show. when running the .exe through wine they work no problem.
 

TS2016

Member
May 7, 2017
465
250
download the version i just posted without any mods.
I don't know what is going on. I downloaded the version without any mods and ran as it is (no mods added) started new game and still got same errors with AttributeError: 'MainCharacter' object has no attribute 'log_notification' when interacting with girls. (Small talk, complimenting her, etc)
 

YSumlj

New Member
Nov 18, 2022
4
4
The RPmod doesnt seem to work on linux. when running the game through
LabRats2-Reformulate.sh the movies dont show. According to the logs:
found 15 for category grope_ass
found 9 for category grope_vagina
found 15 for category grope_tits_clothed
found 20 for category orgasm_generic
the movies get found. But they dont show. when running the .exe through wine they work no problem.
Fix from :

edit the file game/mods/RealPornMod/RPImageDefinitions.rpy
from
Python:
if renpy.exists("Mods/RealPornMod/{}".format(path)):
    RPPrefixClips.append(Movie(play="../Mods/RealPornMod/{}".format(path), size=(768,432)))
to
Python:
if renpy.exists("mods/RealPornMod/{}".format(path)): 
    RPPrefixClips.append(Movie(play="mods/RealPornMod/{}".format(path), size=(768,432)))
if you have ibnarabi's release with mods, frop this into game/mods/RealPornMod/

 
  • Like
Reactions: Draakaap23

ibnarabi

Member
May 21, 2021
149
626
I don't know what is going on. I downloaded the version without any mods and ran as it is (no mods added) started new game and still got same errors with AttributeError: 'MainCharacter' object has no attribute 'log_notification' when interacting with girls. (Small talk, complimenting her, etc)
You should install into a new folder, and you might want to nuke everything in ..\AppData\Roaming\RenPy\LabRats
 
4.60 star(s) 69 Votes