xmoonproductions.org
https://www.xmoonproductions.org/

[OUTFIT] Bathing Suit for Saiko
https://www.xmoonproductions.org/viewtopic.php?f=27&t=3628
Page 1 of 2

Author:  modderman [ Wed Jan 21, 2015 8:52 pm ]
Post subject:  [OUTFIT] Bathing Suit for Saiko

Attachment:
x1.jpg
x1.jpg [ 110.89 KiB | Viewed 27605 times ]

This is bathing suit for Saiko. It include state files to start in poses STAND SIT KNEEL.

To use unzip into pack and edit init.dat for Saiko. For dungeon: pack_dungeon\init\stories\dungeon\chars\saiko\init.dat

Add this with other cloth_item entry.
Code:
cloth_item[3] {
   name = "BathingSuit";
   file_name = "scenes/character6/BathingSuitShape.obj";
}


Add this with other cloth_elem entry.
Code:
cloth_elem[+] {
   cloth_type = BATHING_SUIT;
      
   pose_type = STAND;
   pose_id = 0;
      
   show_glasses = true;
   show_shoes = false;
      
   items[0] {
      item = 3;
      state = "state/saiko/bathingSuitStand_0.dat";
   }
}
   
cloth_elem[+] {
   cloth_type = BATHING_SUIT;
      
   pose_type = SIT;
   pose_id = 0;
      
   show_glasses = true;
   show_shoes = false;
      
   items[0] {
      item = 3;
      state = "state/saiko/bathingSuitSit_0.dat";
   }
}
   
cloth_elem[+] {
   cloth_type = BATHING_SUIT;
      
   pose_type = KNEEL;
   pose_id = 0;
      
   show_glasses = true;
   show_shoes = false;
      
   items[0] {
      item = 3;
      state = "state/saiko/bathingSuitKneel_0.dat";
   }
}


Set cloth_type in code or change in pose section of init.dat from CASUAL to BATHING_SUIT.

Attachments:
bathingSuit.zip [158.07 KiB]
Downloaded 1138 times

Author:  bartux [ Wed Jan 21, 2015 9:20 pm ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

nice one thanks !

Author:  xpadmin [ Wed Jan 21, 2015 9:20 pm ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

looks great! :)

Author:  tomahawk308 [ Wed Jan 21, 2015 10:17 pm ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

thanks :D

Author:  modderman [ Thu Jan 22, 2015 12:10 am ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

To use in dungeon.

In pack_dungeon\init\stories\dungeon\settings\stat_saiko.dat

Find "s11" and add v3 line.
Code:
s11 {
   name = "Cloth *";
   
   v0 = "All";
   v1 = "Underwear";
   v2 = "Nude";
   v3 = "Bathing Suit";
   
   obj  = SAIKO;
   type = CLOTH_TYPE;
}


In pack_dungeon\init\std\base\char\brain\code\ref\setting_ref.dat

Find "me.set_cloth_type" add cloth_type lines and Bathing Suit section

Code:
me.set_cloth_type = {
   case (event.par) {
      [] {
         loc.cs.show_cloth0 = true;
         loc.cs.show_cloth1 = true;
         loc.cs.show_cloth2 = true;
         loc.cs.show_cloth3 = false;
         loc.cs.cloth_type = CASUAL;
      }
      
      ["Underwear"] {
         loc.cs.show_cloth0 = false;
         loc.cs.show_cloth1 = true;
         loc.cs.show_cloth2 = true;
         loc.cs.show_cloth3 = false;
         loc.cs.cloth_type = CASUAL;
      }
      
      ["Nude"] {
         loc.cs.show_cloth0 = false;
         loc.cs.show_cloth1 = false;
         loc.cs.show_cloth2 = false;
         loc.cs.show_cloth3 = false;
         loc.cs.cloth_type = CASUAL;
      }
      
      ["Bathing Suit"] {
         loc.cs.show_cloth0 = true;
         loc.cs.show_cloth1 = false;
         loc.cs.show_cloth2 = false;
         loc.cs.show_cloth3 = false;
         loc.cs.cloth_type = BATHING_SUIT;
      }
   }
   
   SetCharState(loc.cs);
   
   state.dyn.settings.need_apply = true;
}

Author:  Inquisitor [ Thu Jan 22, 2015 7:15 am ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

Nice work! Thanks a lot. xD

Author:  drong33 [ Fri Jan 23, 2015 4:49 pm ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

For ''Dungeon Ex Mod Pack'' i found pack_dungeon\init\stories\dungeon\settings\stat_monicasaiko.dat and added ''v8 = "Bathing Suit";'' in ''s12''. Otherwise, it doesn't work.

Author:  Munky [ Fri Jan 23, 2015 6:34 pm ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

Talking about the Dungeon Ex mod pack, I've just released a new version which includes the swimsuit.

Author:  modderman [ Fri Jan 23, 2015 7:11 pm ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

:( Maybe should ask before take someone work. Guess it okay this time.

Author:  Munky [ Fri Jan 23, 2015 7:34 pm ]
Post subject:  Re: [OUTFIT] Bathing Suit for Saiko

I was asked to add it + you've been credited for your work, so I'd hardly call it taking. If I'd tried to pass it off as my own work then I would have agreed with you.

Page 1 of 2 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
http://www.phpbb.com/