View unanswered posts | View active topics It is currently Sat Apr 27, 2024 12:15 pm



Reply to topic  [ 18 posts ]  Go to page 1, 2  Next
 [OUTFIT] Bathing Suit for Saiko 
Author Message
Rank 14
Rank 14
User avatar

Joined: Fri Jun 27, 2014 2:57 pm
Posts: 169
Attachment:
x1.jpg
x1.jpg [ 110.89 KiB | Viewed 22198 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 917 times
Wed Jan 21, 2015 8:52 pm
Profile
Rank 15
Rank 15

Joined: Sat Sep 14, 2013 10:43 pm
Posts: 216
nice one thanks !


Wed Jan 21, 2015 9:20 pm
Profile
Site Admin
Site Admin

Joined: Thu Feb 07, 2013 11:16 am
Posts: 1865
looks great! :)


Wed Jan 21, 2015 9:20 pm
Profile
Rank 18
Rank 18

Joined: Sun Jun 22, 2014 3:46 pm
Posts: 1094
thanks :D


Wed Jan 21, 2015 10:17 pm
Profile
Rank 14
Rank 14
User avatar

Joined: Fri Jun 27, 2014 2:57 pm
Posts: 169
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;
}


Thu Jan 22, 2015 12:10 am
Profile
Rank 13
Rank 13
User avatar

Joined: Sun Mar 31, 2013 2:37 pm
Posts: 117
Location: Ordo Malleus
Nice work! Thanks a lot. xD


Thu Jan 22, 2015 7:15 am
Profile
Rank 1
Rank 1

Joined: Fri Jan 23, 2015 4:39 pm
Posts: 1
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.


Fri Jan 23, 2015 4:49 pm
Profile
Rank 15
Rank 15
User avatar

Joined: Tue Dec 03, 2013 9:29 pm
Posts: 212
Talking about the Dungeon Ex mod pack, I've just released a new version which includes the swimsuit.


Fri Jan 23, 2015 6:34 pm
Profile
Rank 14
Rank 14
User avatar

Joined: Fri Jun 27, 2014 2:57 pm
Posts: 169
:( Maybe should ask before take someone work. Guess it okay this time.


Fri Jan 23, 2015 7:11 pm
Profile
Rank 15
Rank 15
User avatar

Joined: Tue Dec 03, 2013 9:29 pm
Posts: 212
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.


Fri Jan 23, 2015 7:34 pm
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 18 posts ]  Go to page 1, 2  Next

Who is online

Users browsing this forum: No registered users and 175 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group.
Designed by X-Moon Productions.