Jump to content

[PSVR] Happy Manager: Shiawase-sou no Kanrinin-sa - Moddingn


Guest

Recommended Posts

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)!

 

0_pic.jpg.c428e3d4cfb8faa22a616157a1328946.jpg  4_pic01.jpg.2374a776edd42179d325bc9a02690830.jpg

 

4_pic02.jpg.e5778f9e0d309240aa16b3ca4f280eed.jpg4_pic03.jpg.ebc301469985136ea3fe34ed48f8d9cd.jpg

 

## Requirements

 

 

## [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).

 

1_cos00.jpg.4f6bd8a57a2267209972b9b1893c5db8.jpg  => 2_cosUnder.jpg.0b91095ed3b47c063e4a715aa0634c2b.jpg

 

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/.

3_files.jpg.a481077adf914efb61b533ceb1545c03.jpg

 

 

## [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.

 

5_1.jpg.8ce7ecb313754827a3c95bef31d99b25.jpghima_01.jpg.8713e3e131a58e6512ad5f60421a7c8a.jpg

 

 

Link to comment
  • 7 months later...
  • 4 months later...
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)!

 

0_pic.jpg.c428e3d4cfb8faa22a616157a1328946.jpg  4_pic01.jpg.2374a776edd42179d325bc9a02690830.jpg

 

4_pic02.jpg.e5778f9e0d309240aa16b3ca4f280eed.jpg4_pic03.jpg.ebc301469985136ea3fe34ed48f8d9cd.jpg

 

## Requirements

 

 

## [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).

 

1_cos00.jpg.4f6bd8a57a2267209972b9b1893c5db8.jpg  => 2_cosUnder.jpg.0b91095ed3b47c063e4a715aa0634c2b.jpg

 

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/.

3_files.jpg.a481077adf914efb61b533ceb1545c03.jpg

 

 

## [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.

 

5_1.jpg.8ce7ecb313754827a3c95bef31d99b25.jpghima_01.jpg.8713e3e131a58e6512ad5f60421a7c8a.jpg

 

 

Thank you for great info!

I understand the tutorial steps.
How do we build modded pkg file?

Link to comment
  • 1 month later...
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.

 

Link to comment
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.

 

hm001.jpg

 

 

 

Have you tried PS4 Patch Builder?
https://www.youtube.com/watch?v=C1EmHMgSfdM

 

 

thanks for invitation, I found her mods on the Discord channel.

 

aVJu3L.jpg

 

mK8d7r.jpg

 

wZejex.jpg

 

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!

 

Link to comment
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!

Link to comment
  • 2 weeks later...
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.

Link to comment
  • 2 weeks later...
  • 6 months later...
  • 4 weeks later...
  • 1 month later...
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 by Jigsy
Link to comment
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.

Link to comment
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.

Link to comment

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 by Jigsy
Link to comment
  • 1 month later...
  • 3 months later...
  • 1 year later...
  • 6 months later...
  • 2 weeks later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use