krunkDunk Posted July 1, 2019 Posted July 1, 2019 1 hour ago, Doramatsurugi said: Hi i do tutorial by ausgeek but i can't find bikini for nude like " White Lace Bikini ' or " Square Bikini " I just start today the game so i'm lost If you mean you can't find the in-game bikini. You have to spend some v-stones or tickets to roll on a gacha banner where those suits are possible rewards. I'd reccomend only spending v-stones on event gacha because they have more powerful limited time offered suits. After pulling about 20 - 30 suits you'd likely have gotten the white lace or square bikini.
gswg94 Posted July 1, 2019 Posted July 1, 2019 i want to know how i can make the mod for vv. is there any good tutorial?
adhityasensei Posted July 2, 2019 Posted July 2, 2019 12 hours ago, tks6021 said: https://doax-venusvacation.jp/info/7475.html Please cooperate with the official Twitter Follow & RT campaign. Way to participate ① Follow the official Twitter (@doax_vv_staff) ②Target Tweet Depending on the number of retweets of the target tweets, up to 20 Gacha Tickets and 30 Trend Gacha Tickets will be presented to all !!! Until 12:59 on July 4. Still need 1900 RT... I think it's still a long way to get 5000 RT
Hans Jürgen Posted July 2, 2019 Posted July 2, 2019 On 6/3/2019 at 12:34 AM, Donline- said: TextureEdit.rar 14.36 MB · 618 downloads This is very nice ! Thnx But how to fix the problem of Misaki´s face staying white/lighter ? Since Kas and Mis are sharing same body texture ? Did I just miss something ?
debbysaurus Posted July 3, 2019 Posted July 3, 2019 On 6/29/2019 at 8:08 PM, Ghost-writer said: Magic mirror_v1.4.1(Sailor Body Marie) Reveal hidden contents C key Z key X key ※ It is possible to change the key assignment of .ini in Panty folder [KeyCycle] Key = x type = cycle Reveal hidden contents ※Fix the gap of Common body Cat ear v1.0.0 Ctrl + G Cat_ear_v1.0.0.7z 1.01 MB · 257 downloads Magic mirror_v1.4.1.7z 23.18 MB · 133 downloads Where did you get the Cat tail mod? 1
debbysaurus Posted July 3, 2019 Posted July 3, 2019 On 6/29/2019 at 8:08 PM, Ghost-writer said: Magic mirror_v1.4.1(Sailor Body Marie) Reveal hidden contents C key Z key X key ※ It is possible to change the key assignment of .ini in Panty folder [KeyCycle] Key = x type = cycle Reveal hidden contents ※Fix the gap of Common body Cat ear v1.0.0 Ctrl + G Cat_ear_v1.0.0.7z 1.01 MB · 257 downloads Magic mirror_v1.4.1.7z 23.18 MB · 133 downloads Where did you get the Cat tail mod?
Donline- Posted July 3, 2019 Posted July 3, 2019 PhenomonalReshadePreset(v1.0f).rar @Hans Yürgun (^_^ ).. Mesh+Texture.rar All characters meshed.. Textures.rar <- other textures -------------------------------------------------- Still assuming the blatantly more detailed .mesh vb.file is extractable from certain garvure panels.. Have not attempted pulling ..zach island source material accurately enough(?).. Might be a camera issue(?).. 2
s1k2y37st Posted July 4, 2019 Posted July 4, 2019 Having question on the body mesh. There are high heels on the suit I'm modding now. So the ankle parts have problem when I use the None high heels body. How can I fix this?
Hans Jürgen Posted July 4, 2019 Posted July 4, 2019 11 hours ago, Donline- said: PhenomonalReshadePreset(v1.0f).rar 29.26 kB · 13 downloads @Hans Yürgun (^_^ ).. Mesh+Texture.rar All characters meshed.. Textures.rar <- other textures -------------------------------------------------- Still assuming the blatantly more detailed .mesh vb.file is extractable from certain garvure panels.. Have not attempted pulling ..zach island source material accurately enough(?).. Might be a camera issue(?).. Thanks for the awesome body textures !!!! But now ALL faces (except Tamaki and Kasumi) don´t hold up to the rest of the body.... And mybe it´s possible to shave Nagisa.... ;-) since I have no program to load and edit .dds files. No even my version of PS can do it !?!
gswg94 Posted July 4, 2019 Posted July 4, 2019 On 11/17/2017 at 6:24 AM, C3S4RFC1 said: For use Ninja Ripper: 1. Select the exe (DOAX_VV.exe) 2. Select opcion D3D11 wrapper 3. Dont press Run botton. Start the game as usually you do. 4. In the game when you want capture the models (see capture2.jpg) press F10. The game slow for seconds and later run normally. The capture is finished. 5. Check the folder _NinjaRipper inside Doax game folder. A folder named for example "2017.11.16_00.57.36_DOAX_VV.exe_7872" must appeared. In this folder are the RIP files and DDS textures files. i followed your way. and nijaripper foler appeared after i run the vv. but when i press the f10. just mouse stopped little bit. and nothing changed. game just goes well as like before. and no change on the ninjaripper folder on vv folder there is just txt file only. could you help me?
KuroKaze78 Posted July 4, 2019 Posted July 4, 2019 @s1k2y37st - So when I've done this, I've spliced the meshes together where they overlapped correctly (usually somwehere above the ankle/lower shin. Then rather than performing transfer weights, reorder the vertex groups so they match for equivalent body parts between the old foot and the new foot. It should only be a few vertex groups involved in the feet/shin (i think about 3-5 per leg). The important part is that when exporting a mesh, the vertex group order matches the original, the names/id numbers of the vertex groups are irrelevant. Once all of it is together and has the proper vertex groups/weight paint, then I'll make a mesh of just the body mesh, and just the shoes and transfer weights from the combined mesh i created to the individual pieces. This is so that there aren't any discrepancies between the two separate meshes. Note, that this will mean that the shoes are using the body's skeleton/vs-cb2 buffer (this is unavoidable since the original suit doesn't cover the feet). This will get you vertex groups can work, however the other issue is getting the shoes drawn correctly (because the shoes need the body's vs-cb2 buffer). The easiest compromise is to just let the feet draw using the body's pixel shader (replace the body mesh, then also draw the new shoes in the same TextureOverride), but note it may have some drawbacks like the tan settings altering the coloring of the shoes. You could attempt to use a custom pixel shader for the second draw call, just make sure you only use the custom shader when $shader_type == 2 (skin shader), so you don't override the shadow pixel shader. It would look something like this: [TextureOverrideBody] hash=... match_first_index=... handling = skip ; Draw custom body vb0=CustomBodyVB ib=CustomBodyIB draw_indexed = auto ; Draw Shoes vb0 = CustomShoesVB ib = CustomShoesIB ps-t0 = CustomShoesPS0 if $shader_type == 2 ; Draw shoes using custom shader ps-t1 = CustomShoesPS1 ps-t2 = CustomShoesPS2 run = CustomShaderClothing else ; Draw shadow draw_indexed = auto endif Alternatively, you would need to capture/store the vs-cb2 buffer from the body draw call and then re-use it later in a clothing replacement TextureOverride. There's a lot of considerations that need to be made when doing this (multiple characters, draw order, etc.), both my CostumeCustomizer and minazuki's Swimsuit Swapper mods include similar logic to accomplish this, but its a bit-much to set it up as a one-time thing. If you want to do it using CostumeCustomizer feel free to DM me, and I'll try to help you more. EDIT: I just realized, if you are trying to remove the high-heel shoes rather than add them, the first part still applies about how to correct the vertex groups, however you'll have a much easier time with drawing them since the body mesh's vs-cb2 does include the feet (even though they were partial) since they weren't anything like boots or stockings. So just perform a normal body mesh replacement as normal. 1
minazuki Posted July 4, 2019 Posted July 4, 2019 2 hours ago, gswg94 said: there is just txt file only. could you help me? You don't need NinjaRipper for modding. All you need is watch the first post video, this is the only English tutorial as far as I know. If you can read Japanese you can check on below http://mygame.blog.jp/archives/14387912.html But this tutorial is less information than the first post video.
Donline- Posted July 4, 2019 Posted July 4, 2019 6 hours ago, Hans Jürgen said: Thanks for the awesome body textures !!!! But now ALL faces (except Tamaki and Kasumi) don´t hold up to the rest of the body.... And mybe it´s possible to shave Nagisa.... ? since I have no program to load and edit .dds files. No even my version of PS can do it !?! Stopped using the facial expression mod after noticing some of the hair files were outdated.. Erm.. don' think the Tamaki .dds is shared anymore.. will redo Have been waiting for HiMetal too do some more upscaling. ^_^ TamakiTexture.rar 1
gswg94 Posted July 4, 2019 Posted July 4, 2019 2 hours ago, minazuki said: You don't need NinjaRipper for modding. All you need is watch the first post video, this is the only English tutorial as far as I know. If you can read Japanese you can check on below http://mygame.blog.jp/archives/14387912.html But this tutorial is less information than the first post video. oh very thanks. i thought it is just video about using 3dmigoto cause of the name of video. i will watch and learn about the modding. and thanks about japanese link too. i could try it.
TonyPeng Posted July 4, 2019 Posted July 4, 2019 I remove the skirt and underwear by @zc32swift 's mod for Nagisa SSR Wild Wind. Nagisa_SSR_WildWind.rar 7
Donline- Posted July 5, 2019 Posted July 5, 2019 @HI-METAL.. apart from the camera being closer than normal, have you tried pulling multiple textures?.. ReshadePreset(v1.0g).rar (Cleaner menu(s).. but no moving shadows) Edit: Requesting any modded/ported random .dds file or map.. (the spray bottle effects bordering transparent).. then injecting 3+ altered maps into UV layer(s) mesh data or... unfathomable scripting scenario. And if anyone can export every single .scene texture, could maybe balance the entire zone for ReShade purposes only ^_^ )..
Fatdaddy69 Posted July 5, 2019 Posted July 5, 2019 finally got Nagisa feelsgoodman. I think minazuki is busying with the ranking event so i made this btw I got the frame analysis of a fully capped event costume from a match but idk how to made the fully capped whitetop and the bot mesh into the mod it end up either bounce to outside the body or the .dds file not work, if anyone available to teach please pm me and to me. ill much appreciate fatdaddy69_SSR_Wairudouindo (Nagisa).zip fatdaddy69_SSR_Wairudouindo (Tamaki).zip Ctrl + 1/2 to activate O key - Blacktop Spoiler P key - White top Spoiler I key - Bot Spoiler L key - Bell On/Off K key - Panty On/Off J key - Lace On/Off 16
VonVolx Posted July 5, 2019 Posted July 5, 2019 Meh couldn't get Nagisa or Tamaki in 2 rolls, but thats all i got. Used all my stones on Marie Devil one. To bad too i like the mod.
minazuki Posted July 5, 2019 Posted July 5, 2019 8 hours ago, Fatdaddy69 said: I think minazuki is busying with the ranking event so i made this I couldn't get the suit by a few rolls, and I'm not really like the suit. So, I think I will not mod this.
minamoto_soki Posted July 6, 2019 Posted July 6, 2019 On 6/28/2019 at 5:35 PM, aki320 said: マッスルスキンAyane_MuscleSkin.zipもみじ_MuscleSkin.zip I made it for personal enjoyment, but I will share it. Only now and this two people. I think that there are many differences from the actual muscle structure. Created based on HI-METAL's skin. Thank you This is awesome. Thank you 1
rakka74 Posted July 6, 2019 Posted July 6, 2019 On 6/25/2019 at 6:53 AM, izumiya said: SSR.Marie.MinuetteNormal for BREAK SSR.Marie.MinuetteNormal.zip 566.19 kB · 405 downloads The sunburn mark seems to be a little weird. ↓ your mod ↓ knight77_FullNude_Square_Bikini 1
Popular Post minazuki Posted July 6, 2019 Popular Post Posted July 6, 2019 Swimsuit Swapper (Common) 003.Sweety (Kasumi) Released Quote Please go to the SS thread to download: 30
Popular Post minazuki Posted July 6, 2019 Popular Post Posted July 6, 2019 SSR Birthday 2019 Stella Cancer (Misaki) Quote Tamaki is for preview only, there is NO Tamaki version on the real game, please don't ask me about it. You should add this in d3dx.ini to use this mod [ShaderOverrideClothesPS14] ; Martini, Misaki BD 2019 hash = 5c8cb360ba8afa6d run = CommandListShadowMap Press Ctrl + 1 or Ctrl + 2 to turn on the variation switch first. You can also edit the ini file and replace "global $slot_active = 0" to "global $slot_active = 1" to turn on the variation switch by default. Also, you can save the variation settings by press F10. Bra Variation (Shift + X) Quote Spoiler Top Variation (Shift + Z) Quote Spoiler Panty Variation (Ctrl + X) Quote Spoiler Skirt Variation (Ctrl + Z) Quote Spoiler Bra Parts Switch (Shift + S) Quote Spoiler Top Parts Switch (Ctrl + S) Quote Spoiler Belt Variation (Alt + X) Quote Spoiler Collar Variation (Alt + Z) Quote Spoiler Color Variation (Ctrl + Shift + X) Quote Spoiler Mix & Match Quote Spoiler IMPORTANT This mod needs Hi-res body Skin Texture, e.g. HI-METAL's Skin You must update 3Dfix-DOAX-VenusVacation to 1.9 or latest to use this mod. Download Quote V1.0 SSR.Birthday.2019.Stella.Cancer.Misaki.zip 21
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