Guest Posted January 2, 2020 Posted January 2, 2020 Hi, modders! Happy Manager: Shiawase-sou no Kanrinin-san (PS4) is one of the best sexy PSVR games ever. Today I'm gonna show you a simple tutorial to enable Underwear costumes even on PSVR (because the last 1.04 patch disables it)!     ## Requirements  PS4 modding knowledge u4pak Uasset Renamer Noesis  ## [Tutorial] Step 1: Unpack Pak File  In this tutorial, I assume that you've extracted raw game files in /WORK/GAME/ directory. Run these commands for unpacking: > cd /WORK/GAME/mansion/content/paks/ > python u4pak.py unpack mansion-ps4.pak You'll get many uasset files in current directory.  ## [Tutorial] Step 2: Search Costume Models to Swap  In /WORK/GAME/mansion/content/paks/mansion/Content/CharacterModel/GirlsModel/ folder, you can search and view model files using Noesis. Costume models have the names "*_SKM.uasset".  ## [Tutorial] Step 3: Prepare Files to Swap  We're going to swap gl00_cos00_SKM.uasset (default costume) with gl00_naked00_SKM.uasset (underwear costume). Keep in mind that this costume have also variant files: gl00_cos00_skirtleg_SKM.uasset (sitting ver) and gl00_cos00_skirtup_SKM.uasset (flipping ver).   =>  Run these commands for getting new swapped files: > cd /WORK/GAME/mansion/content/paks/mansion/Content/CharacterModel/GirlsModel/gl00_mdl/ > UassetRenamer gl00_cos00/gl00_cos00_SKM.uasset gl00_naked00/gl00_naked00_SKM.uasset > UassetRenamer gl00_cos00/gl00_cos00_skirtleg_SKM.uasset gl00_naked00/gl00_naked00_SKM.uasset > UassetRenamer gl00_cos00/gl00_cos00_skirtup_SKM.uasset gl00_naked00/gl00_naked00_SKM.uasset  You'll get these new files in current directory: gl00_cos00_SKM-new.uasset gl00_cos00_skirtleg_SKM-new.uasset gl00_cos00_skirtup_SKM-new.uasset  Now, outside the GAME folder, create new empty directory "/WORK/mansion/Content/CharacterModel/GirlsModel/gl00_mdl/gl00_cos00". Then put above "-new" files into it, and remove "-new" from the their file names.  Don't confuse the new "/WORK/mansion/" folder with the existing "/WORK/GAME/mansion/" folder. You should have only new files in /WORK/mansion/.   ## [Tutorial] Final Step: Create Pak File to Override Contents  Run these commands for creating pak file: > cd /WORK/ > python u4pak.py pack mansion-ps4mod_p.pak mansion You'll get new mansion-ps4mod_p.pak file, which overrides game contents.  Let's confirm that pak contents are valid: > python u4pak.py list mansion-ps4mod_p.pak It should output only these lines: mansion\Content\CharacterModel\GirlsModel\gl00_mdl\gl00_cos00\gl00_cos00_SKM.uasset mansion\Content\CharacterModel\GirlsModel\gl00_mdl\gl00_cos00\gl00_cos00_skirtleg_SKM.uasset mansion\Content\CharacterModel\GirlsModel\gl00_mdl\gl00_cos00\gl00_cos00_skirtup_SKM.uasset Is it correct? Congratulations, enjoy the game in PSVR!   ## Bonus Tips for Advanced Modders  You can replace mesh data in uasset files. For data structure, refer the python plugin source of Noesis.   Â
Raven_Dono Posted August 6, 2020 Posted August 6, 2020 Hi, I'm really happy I found this! but where can I find the fpkg for this game please?
travis707 Posted January 2, 2021 Posted January 2, 2021 On 1/2/2020 at 11:34 PM, Guest said: Hi, modders! Happy Manager: Shiawase-sou no Kanrinin-san (PS4) is one of the best sexy PSVR games ever. Today I'm gonna show you a simple tutorial to enable Underwear costumes even on PSVR (because the last 1.04 patch disables it)!     ## Requirements  PS4 modding knowledge u4pak Uasset Renamer Noesis  ## [Tutorial] Step 1: Unpack Pak File  In this tutorial, I assume that you've extracted raw game files in /WORK/GAME/ directory. Run these commands for unpacking: > cd /WORK/GAME/mansion/content/paks/ > python u4pak.py unpack mansion-ps4.pak You'll get many uasset files in current directory.  ## [Tutorial] Step 2: Search Costume Models to Swap  In /WORK/GAME/mansion/content/paks/mansion/Content/CharacterModel/GirlsModel/ folder, you can search and view model files using Noesis. Costume models have the names "*_SKM.uasset".  ## [Tutorial] Step 3: Prepare Files to Swap  We're going to swap gl00_cos00_SKM.uasset (default costume) with gl00_naked00_SKM.uasset (underwear costume). Keep in mind that this costume have also variant files: gl00_cos00_skirtleg_SKM.uasset (sitting ver) and gl00_cos00_skirtup_SKM.uasset (flipping ver).   =>  Run these commands for getting new swapped files: > cd /WORK/GAME/mansion/content/paks/mansion/Content/CharacterModel/GirlsModel/gl00_mdl/ > UassetRenamer gl00_cos00/gl00_cos00_SKM.uasset gl00_naked00/gl00_naked00_SKM.uasset > UassetRenamer gl00_cos00/gl00_cos00_skirtleg_SKM.uasset gl00_naked00/gl00_naked00_SKM.uasset > UassetRenamer gl00_cos00/gl00_cos00_skirtup_SKM.uasset gl00_naked00/gl00_naked00_SKM.uasset  You'll get these new files in current directory: gl00_cos00_SKM-new.uasset gl00_cos00_skirtleg_SKM-new.uasset gl00_cos00_skirtup_SKM-new.uasset  Now, outside the GAME folder, create new empty directory "/WORK/mansion/Content/CharacterModel/GirlsModel/gl00_mdl/gl00_cos00". Then put above "-new" files into it, and remove "-new" from the their file names.  Don't confuse the new "/WORK/mansion/" folder with the existing "/WORK/GAME/mansion/" folder. You should have only new files in /WORK/mansion/.   ## [Tutorial] Final Step: Create Pak File to Override Contents  Run these commands for creating pak file: > cd /WORK/ > python u4pak.py pack mansion-ps4mod_p.pak mansion You'll get new mansion-ps4mod_p.pak file, which overrides game contents.  Let's confirm that pak contents are valid: > python u4pak.py list mansion-ps4mod_p.pak It should output only these lines: mansion\Content\CharacterModel\GirlsModel\gl00_mdl\gl00_cos00\gl00_cos00_SKM.uasset mansion\Content\CharacterModel\GirlsModel\gl00_mdl\gl00_cos00\gl00_cos00_skirtleg_SKM.uasset mansion\Content\CharacterModel\GirlsModel\gl00_mdl\gl00_cos00\gl00_cos00_skirtup_SKM.uasset Is it correct? Congratulations, enjoy the game in PSVR!   ## Bonus Tips for Advanced Modders  You can replace mesh data in uasset files. For data structure, refer the python plugin source of Noesis.    Thank you for great info! I understand the tutorial steps. How do we build modded pkg file? 7
CuteSabinaVassily Posted January 9, 2021 Posted January 9, 2021 Some modder shares mod on the Discord channel. It works in PS4 and/or PSVR. Â Â Â On 1/2/2021 at 4:49 PM, travis707 said: How do we build modded pkg file? Â Have you tried PS4 Patch Builder? https://www.youtube.com/watch?v=C1EmHMgSfdM Â 8
blueweb Posted March 3, 2021 Posted March 3, 2021 Does anyone have the fake PKG file for this game. Can anyone upload it via google drive? Zippy File? Cheers would much be appreciated.
dmitri.pietrina0 Posted March 8, 2021 Posted March 8, 2021 Pirating is strictly prohibitted in LoversLab. Â Buy the retail game disc in eBay or Amazon. It's very cheap. 3
luminon Posted March 9, 2021 Posted March 9, 2021 On 3/8/2021 at 3:22 AM, dmitri.pietrina0 said: Pirating is strictly prohibitted in LoversLab.  Buy the retail game disc in eBay or Amazon. It's very cheap.  I didn't realize that the price of a new AAA retail game or more was "cheap". Very obviously didn't look up any pricing before posting this. Â
blueweb Posted March 10, 2021 Posted March 10, 2021 Lol it is not cheap at all. If someone has it PM me.
KoryRodolphe Posted March 10, 2021 Posted March 10, 2021 On 1/9/2021 at 11:27 PM, CuteSabinaVassily said: Some modder shares mod on the Discord channel. It works in PS4 and/or PSVR. Â Â Â Â Have you tried PS4 Patch Builder? https://www.youtube.com/watch?v=C1EmHMgSfdM Â Â thanks for invitation, I found her mods on the Discord channel. Â Â Â Â On 3/8/2021 at 6:22 PM, dmitri.pietrina0 said: Pirating is strictly prohibitted in LoversLab. Â Buy the retail game disc in eBay or Amazon. It's very cheap. Â good, i agree with you. it's important to buy the game and support game devs. Â there are so many poor guys here, lol just ignore these guys! Â 7
luminon Posted March 11, 2021 Posted March 11, 2021 On 3/10/2021 at 7:32 AM, KoryRodolphe said:  thanks for invitation, I found her mods on the Discord channel.     Where were you able to find them on Discord? Having trouble locating them. Already have the digital version so would be interested in giving them a go. Thanks!
MeikoDunois Posted March 25, 2021 Posted March 25, 2021 On 3/11/2021 at 4:28 PM, luminon said:  Where were you able to find them on Discord? Having trouble locating them. Already have the digital version so would be interested in giving them a go. Thanks!  You found it ?, i don't find the mod anywhere.
MeikoDunois Posted March 26, 2021 Posted March 26, 2021 On 3/11/2021 at 4:28 PM, luminon said:  Where were you able to find them on Discord? Having trouble locating them. Already have the digital version so would be interested in giving them a go. Thanks! Nevermind, the guy who said "i found the mod on Discord" is lying, there's nothing there, he is just trolling, that explains why he only wrote 1 reply, and he never used the account again. This happened with a Doax3 Scarlet post, there's a guy who said almost the same thing, and the same pattern, these guys are just trolling, and they want to presume/show off that they have the mod, but they don't have any intention to share anything.
Danyfury Posted April 8, 2021 Posted April 8, 2021 Hello guys, no one have nude mods for this game? If anyone have it can send me it in private please?
Gaido Posted October 9, 2021 Posted October 9, 2021 Excuse me. Would someone please send me an invitation to the Discord channel? Or point me who should i talk to? Thank you very much.
cincau31 Posted October 31, 2021 Posted October 31, 2021 please send me an invitation to the Discord channel?
Jigsy Posted December 11, 2021 Posted December 11, 2021 (edited) On 3/8/2021 at 9:22 AM, dmitri.pietrina0 said: It's very cheap. Â I actually do own this game, but it certainly wasn't cheap... Â Anyway, wouldn't it have been easier to modify the model used when they're showering? Â Â Also censored screenshots. Boo! Edited December 11, 2021 by Jigsy 1
Rewrisk Posted December 16, 2021 Posted December 16, 2021 On 3/27/2021 at 8:25 AM, MeikoDunois said: Nevermind, the guy who said "i found the mod on Discord" is lying, there's nothing there, he is just trolling, that explains why he only wrote 1 reply, and he never used the account again. This happened with a Doax3 Scarlet post, there's a guy who said almost the same thing, and the same pattern, these guys are just trolling, and they want to presume/show off that they have the mod, but they don't have any intention to share anything. That sucks. I didn't find a discord channel for it after a quick look. But I think I will try to learn how to mod my ps4? I don't expect it will be easy but hopefully not so difficult that I can not do it?  Frankly I wish the dev's would release it for pc with full VR. I enjoyed the way you had to work for the pleasure of the girls company but I'm not a fan of pancake gaming.
Rewrisk Posted December 16, 2021 Posted December 16, 2021 On 12/12/2021 at 9:49 AM, Jigsy said: Â I actually do own this game, but it certainly wasn't cheap... Â Anyway, wouldn't it have been easier to modify the model used when they're showering? Â Â Hide contents Also censored screenshots. Boo! Do they use a model for that? I figured it was just a video.
Jigsy Posted December 17, 2021 Posted December 17, 2021 (edited) I assume so? I know the glass on the shower door becomes "frosted" during the shower scenes (noticable if you press the help menu during the event). Â They're either naked or wearing a towel, it's difficult to tell. Edited December 17, 2021 by Jigsy
Desire Killer Posted February 1, 2022 Posted February 1, 2022 Can anyone share the nude mod? I have bought the game.
NameIsNobody Posted May 10, 2022 Posted May 10, 2022 Could someone send me an invitation for the discord please?
Nudemodplz Posted February 1, 2024 Posted February 1, 2024 Hopefully someone can post the fpkg to dlpsgame, so that it can be played on PS5 with PSVR 1 + nude mods.
NameIsNobody Posted May 20, 2025 Posted May 20, 2025 This game deserves more attention. I hope some day another modder picks it up. Or someone finds the mods shown in here somewhere and reuploads them.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now