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

Is there away to unlock focus both Saiko and Monica in Stor?
https://www.xmoonproductions.org/viewtopic.php?f=27&t=6143
Page 1 of 1

Author:  vipbibo [ Sat Jul 25, 2020 6:15 pm ]
Post subject:  Is there away to unlock focus both Saiko and Monica in Stor?

Is there away to remove focus both Saiko and Monica in a story mode?
Does anyone know how to do it. Would you share it please! Thank you.
Sorry because my english is bad.

Attachments:
saiko.png
saiko.png [ 3.23 MiB | Viewed 12287 times ]

Author:  Thanny [ Wed Jul 29, 2020 2:54 am ]
Post subject:  Re: Is there away to unlock focus both Saiko and Monica in S

Not sure what you're asking for, but if you mean anything like having more options to interact with the girls during the story, check out this mod.

Author:  vipbibo [ Thu Jul 30, 2020 7:50 pm ]
Post subject:  Re: Is there away to unlock focus both Saiko and Monica in S

Thanny wrote:
Not sure what you're asking for, but if you mean anything like having more options to interact with the girls during the story, check out this mod.

Thank you for reply me. But this is not what im looking for. I wanna be free to drag Monica or Saiko in any positions. I can't figure out how to do that. My english is very bad. Hope you get what i means.

Author:  Eskarn [ Fri Jul 31, 2020 5:00 pm ]
Post subject:  Re: Is there away to unlock focus both Saiko and Monica in S

You can make them ragdoll or use an animation but you can't pose them.
If you are interested in learning modding this is the best place to start.
http://wiki.xmoonproductions.org/index.php?title=Getting_started_with_modding

Author:  someonewith [ Wed Dec 09, 2020 1:26 pm ]
Post subject:  Re: Is there away to unlock focus both Saiko and Monica in S

there you go:
open pack\tentacle_dreams\init\std\base\char\init.dat and edit those strings :

spring_x = (number)
spring_z = (number)
spring_q = (number)

and any other spring_* you can find in poses and gestures

e.g we have got this by default:


(that gesture beigns at line 1148)

Code:
 gesture[28]
   {
     type = LIFTUP_DOWN;
     name = "*liftup_0";
    
     spring_x    = 0.0;
    spring_r    = 0.5;
    spring_fade = true;
   
    spring_hx    = 0.5;
    spring_hr    = 0.1;
    spring_hfade = true;
   
    spring_q = 0.3;
   
    damp = 0;
   
    fade_in = 2.0;
   
    rem_ready = false;
  }


then we set it to

Code:
 gesture[28]
   {
     type = LIFTUP_DOWN;
     name = "*liftup_0";
    
     spring_x    = 0.0;
    spring_r    = 0;
    spring_fade = true;
   
    spring_hx    = 0;
    spring_hr    = 0;
    spring_hfade = true;
   
    spring_q = 0;
   
    damp = 0;
   
    fade_in = 2.0;
   
    rem_ready = false;
  }


voila, girls dont stuck when taking this gesture/pose anymore. Some strange physics effects have place, beware

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