Jump to content

Dead Or Alive Xtreme Venus Vacation - Modding Thread and Discussion -


Recommended Posts

Posted
15 hours ago, Pachino said:

 

It's an my old mod, but it still works

 

For Honoka and Common Body

 

Press F10 to refresh mods

Press Ctrl + 1 or Ctrl + 2 to turn on the variation switch first.

Press Ctrl + Left key or Ctrl + Right key or Ctrl + x or Ctrl + z or Shift + x or Shift + z to change variations

Also, you can save the variation settings by press F10.

 

 

SR.Orange.Shirt.zip 4.25 MB · 134 downloads

Its lovely<3Appreciate it very much,Thank you!

Posted

@Gugligo - That's likely an older custom Tan mod which were known to cause problems if they replaced "ps-t1" or "ps-t3" directly instead of the newer keyword "this" when matching texture hashes. The pink texture is definitely a "tan" mask texture file so check what's in Mods/Tan and try disabling them.

Posted
11 hours ago, Blarraven said:

I already did, that's the result

hash = 931ad0b5
match_first_index = 8076
vb0 = ResourceBraVB
ib = ResourceBraIB

handling = skip
drawindexed = auto

The bra files (*.vb and *.ib) may not be exported properly. Check the *.vb and *.ib files of the bra you edited by re-opening them in blender.

Posted
58 minutes ago, KuroKaze78 said:

That's likely an older custom Tan mod which were known to cause problems if they replaced "ps-t1" or "ps-t3" directly instead of the newer keyword "this" when matching texture hashes.

I'm sorry, can you please elaborate on that(maybe with example)?

Posted
3 hours ago, KuroKaze78 said:

@Gugligo - That's likely an older custom Tan mod which were known to cause problems if they replaced "ps-t1" or "ps-t3" directly instead of the newer keyword "this" when matching texture hashes. The pink texture is definitely a "tan" mask texture file so check what's in Mods/Tan and try disabling them.

Thank you very much, I just disabled the Tan mods and it worked. The only problem I have now is that the Girl in the Shower is still looking at me.

Posted

@etsorhtt - The skin shader and the tanning shader both use the the tan mask textures, but for different channels. The body/skin shaders only look at the Green and Blue channels of the texture file while the tanning shader looks at the Red Channel. This means both shaders use the same texture file (and hash), however the skin/body shader puts the texture in the ps-t3 slot while the tanning shader put the texture in the ps-t1 slot. If a TextureOverride is used to match the this tan mask texture file, it would have to know when to properly replace ps-t1 or ps-t3 depending on which shader is currently drawing. Initially that was all that was known and available so the tan mods always replaced I think ps-t1 everytime (I don't exactly remember because I've long since fixed my copies), combine this assumption with the fact that the game only reloads a texture if thinks it needs to and you can easily get replaced resources spilling into other render calls.

 

The moral of the story is if you want to match and replace texture files individually, use the "this" keyword as it'll correlate to whichever resource slot matched the hash. If ps-t1 had the match, "this" will correspond to ps-t1. If ps-t3 had the match, "this" will correspond to ps-t3. If you are matching a ib/vb0 hash, you must use ps-t# which is fine in those cases (NOTE: "this" might correspond to the ib or vb0 in this case. I'm not sure, but generally isn't as helpful compared to when matching texture hashes)

 

; Bad Practice

[TextureOverrideBadTextureReplacement]

; Hash of Original Texture DDS

hash=12345678

ps-t1 = ResourceCustomTexture

 

; Recommended

[TextureOverrideRecommendedReplacement]

; Hash of Original Texture DDS

hash=12345678

this = ResourceCustomTexture

 

Spoiler

image.png.a2e6ca2ed97444732f348f2f37817697.png

ps-t3 texture from skin shaders

 

image.png.2df68ba326c2322dabd0974c1f4ad695.png

Red Channel (Used only during Tan shader, when Increase/Decrease Tan selected)

 

 

image.png.7f04ba1a6167272f623a267f1da8f35d.png

Green Channel ( Used during Body/Skin Shader)

 

image.png.7e7316c697f2e25514db077ea2cb2fc0.png

Blue Channel ( Used during Body/Skin Shader)

 

 

Posted
46 minutes ago, KuroKaze78 said:

@etsorhtt - The skin shader and the tanning shader both use the the tan mask textures, but for different channels. The body/skin shaders only look at the Green and Blue channels of the texture file while the tanning shader looks at the Red Channel. This means both shaders use the same texture file (and hash), however the skin/body shader puts the texture in the ps-t3 slot while the tanning shader put the texture in the ps-t1 slot. If a TextureOverride is used to match the this tan mask texture file, it would have to know when to properly replace ps-t1 or ps-t3 depending on which shader is currently drawing. Initially that was all that was known and available so the tan mods always replaced I think ps-t1 everytime (I don't exactly remember because I've long since fixed my copies), combine this assumption with the fact that the game only reloads a texture if thinks it needs to and you can easily get replaced resources spilling into other render calls.

 

The moral of the story is if you want to match and replace texture files individually, use the "this" keyword as it'll correlate to whichever resource slot matched the hash. If ps-t1 had the match, "this" will correspond to ps-t1. If ps-t3 had the match, "this" will correspond to ps-t3. If you are matching a ib/vb0 hash, you must use ps-t# which is fine in those cases (NOTE: "this" might correspond to the ib or vb0 in this case. I'm not sure, but generally isn't as helpful compared to when matching texture hashes)

 

; Bad Practice

[TextureOverrideBadTextureReplacement]

; Hash of Original Texture DDS

hash=12345678

ps-t1 = ResourceCustomTexture

 

; Recommended

[TextureOverrideRecommendedReplacement]

; Hash of Original Texture DDS

hash=12345678

this = ResourceCustomTexture

 

  Reveal hidden contents

image.png.a2e6ca2ed97444732f348f2f37817697.png

ps-t3 texture from skin shaders

 

image.png.2df68ba326c2322dabd0974c1f4ad695.png

Red Channel (Used only during Tan shader, when Increase/Decrease Tan selected)

 

 

image.png.7f04ba1a6167272f623a267f1da8f35d.png

Green Channel ( Used during Body/Skin Shader)

 

image.png.7e7316c697f2e25514db077ea2cb2fc0.png

Blue Channel ( Used during Body/Skin Shader)

 

 

Thanks for so thorough explanation! I was working on tan mod and had problems, amazing info.

Posted
6 hours ago, avenger54 said:

If the "Show new mods first" option is on, the recently uploaded mods will be highlighted in the list now. Currently it shows mods uploaded in last 7 days, I'll probably add more options in the future.

This mod manager is going to be one of the most useful tools i have. Thank you very much.

Highlighting the last updates is a very nice option but its not working for me, what can be the problem, any ideas?

 

vmm.thumb.jpg.bd8e28dc3d43075c5dcd36382c1b6452.jpg

Posted
2 minutes ago, avenger54 said:

Is your system time correct?

Yep, its correct. 5th of July 2020, and also the timezone. clock  etc. are correct too.

Posted
2 minutes ago, avenger54 said:

Is your system time correct?

Yep, its correct. 5th of July 2020, and also the timezone. clock  etc. are correct too.

Posted

I made a hotfix for Mod Manager version 1.2, if you have issues with new highlight feature - please redownload, hopefuly it should fix the problem.

Posted
14 hours ago, tk2004 said:

The bra files (*.vb and *.ib) may not be exported properly. Check the *.vb and *.ib files of the bra you edited by re-opening them in blender.

Thanks, you're right.

It's good now.

1862067000_Screenshot2020-07-0605_27_58.png.c56b71cd578f68d564dd667a35955671.png

Posted
On 7/4/2020 at 1:01 AM, 007ns said:

But this mod is not compatible with the latest V4 skin

As a result, the shortcut key for skin switching cannot be used

Tattoo mod overrides the skin so those are usually aren't compatible. Disable Tattoo mod to cycle between skins.

Posted
5 hours ago, avenger54 said:

I made a hotfix for Mod Manager version 1.2, if you have issues with new highlight feature - please redownload, hopefuly it should fix the problem.

Now its working. Thank you again for the amazing job :)

 

vmm2.thumb.jpg.a9a58dd143845e55e9df521193f9665d.jpg

Posted
On 6/16/2020 at 8:20 PM, Donline- said:

WARNING REDOING HAIR BETTERER..

 

erfef.png.7464b319c4b93103f4d7f3c9d6b26c61.png

 

  Reveal hidden contents

Phase 4 Fashion..

Will every vert group work ingame merged onto one mesh(?)..

 

hkhkh.png.3cc8e60d32eada9a9623008d401272b2.png

  Reveal hidden contents

Starting Again..

 

 
I have a lightprism mod but with a different name. I tried with disabling it but nothing changed, also disabled all costume mods and again nothing changed, the problem continues. I think there is problem with hitomi eye dds files in make up mod folder.
Posted

Does anyone have an update for Nepafu's Cheatengine slider btw? Mine has stopped working since the last update it seems. Couldnt find anything DOAVV related on his twitter page. 

Posted

Could somebody please make a hairy pubic part for each character like this MOD?

I have no skills...

I would like more hairy pubic if possible.

2.jpg

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