Antanarau

Newbie
Dec 15, 2018
19
8
Is it possible to select scenes ?
Yes.
For that, install the Shophack from the modder thread.
This will make an additional NPC appear in the first jail cell area (the one near the school).
There , buy either the golden cap or the golden glasses (or both), and equip the one you bought.
After that, when you initiate sex, you will be able to select a scene.
 

Jeroy Lenkins

Newbie
May 17, 2017
71
46
Yes.
For that, install the Shophack from the modder thread.
This will make an additional NPC appear in the first jail cell area (the one near the school).
There , buy either the golden cap or the golden glasses (or both), and equip the one you bought.
After that, when you initiate sex, you will be able to select a scene.
Do you have the link ? or is the thread in this one ?
 

Ghoulash

New Member
May 5, 2022
7
10
Is the clothing system still nerfed compared to the previous game?
Yes, but it's an easy fix.

With the .dat editing tool previously posted, all you have to do is change one line in the data_scenario.dat

Code:
  "dontGetCostume": true,
Change the 'true' to 'false' and it works exactly the same as the previous game. :)
 
  • Like
Reactions: Antanarau

katariya

Member
Apr 19, 2022
299
133
Yes, but it's an easy fix.

With the .dat editing tool previously posted, all you have to do is change one line in the data_scenario.dat

Code:
  "dontGetCostume": true,
Change the 'true' to 'false' and it works exactly the same as the previous game. :)
Costume have some you can't get in game.
because they are twohorns clothes, some can use summon Staff to get it, some you need edit savedata(only twohorns unique chara have it) to make chara who in jail dress it
 

lord911

New Member
Jan 14, 2022
3
1
Is it possible to make the player wear the outfits in costume section? Or like is there a way to use character editor on urself?
 
Last edited:

katariya

Member
Apr 19, 2022
299
133
Is it possible to make the player wear the outfits in costume section? Or like is there a way to use character editor on urself?
it's possible by edit data_item.dat, you can make a new equip or edit old equip to make it(if create a new equip, you need add this equip to shop menu or edit savedata to get it...)
Code:
{
    "category": "ITEM_CLOTHES",
    "description": "看護師が身に着けている服だ。装備するとSPが1アップする。ワタシがこれを着るのは・・・あまり気が乗らないな。",
    "description_localized": {
      "en": "This is the clothing worn by nurses. When equipped, it increases SP by 1. I don't really feel comfortable wearing this.",
      "zh": "这是护士们穿的衣服。装备后,它可以增加1的SP。我觉得穿这个不是很舒服..."
    },
    "id": 90.0,
    "itemEffect": [],
    "name": "ナース服",
    "name_localized": {
      "en": "Nurse Uniform",
      "zh": "护士服"
    },
    "recover_sp": 1.0,
    "thumb": "item_89", show what icon in item box
    "volume": 1.0,
    "weaponImgId": 7.0, read which one CU's ID(if item is hat is read CH's ID,and glasses is CG)
    "weaponImgId2": 7.0 read which one CD's ID(if item is hat or glasses this walue useless,it should be 0)
  },
CU、CD、CG and CH's ID can check data_costume.dat to know it.
and thumb you can see Resources\ScenarioData\02_of_the_dead\item, here's dat after decode is png file.
 
Last edited:
  • Like
Reactions: lord911
Jul 2, 2020
21
6
it's possible by edit data_item.dat, you can make a new equip or edit old equip to make it(if create a new equip, you need add this equip to shop menu or edit savedata to get it...)
Code:
{
    "category": "ITEM_CLOTHES",
    "description": "看護師が身に着けている服だ。装備するとSPが1アップする。ワタシがこれを着るのは・・・あまり気が乗らないな。",
    "description_localized": {
      "en": "This is the clothing worn by nurses. When equipped, it increases SP by 1. I don't really feel comfortable wearing this.",
      "zh": "这是护士们穿的衣服。装备后,它可以增加1的SP。我觉得穿这个不是很舒服..."
    },
    "id": 90.0,
    "itemEffect": [],
    "name": "ナース服",
    "name_localized": {
      "en": "Nurse Uniform",
      "zh": "护士服"
    },
    "recover_sp": 1.0,
    "thumb": "item_89", show what icon in item box
    "volume": 1.0,
    "weaponImgId": 7.0, read which one CU's ID(if item is hat is read CH's ID,and glasses is CG)
    "weaponImgId2": 7.0 read which one CD's ID(if item is hat or glasses this walue useless,it should be 0)
  },
CU、CD、CG and CH's ID can check data_costume.dat to know it.
and thumb you can see Resources\ScenarioData\02_of_the_dead\item, here's dat after decode is png file.
And what application did you use to edit these data files good sir/madam?
 
Feb 11, 2020
285
415
Would be great if we had a hero make a mod that brought back all these outfits to this game and made restricted outfits (torn outfits) accessible
 
  • Like
Reactions: lord911

katariya

Member
Apr 19, 2022
299
133
Would be great if we had a hero make a mod that brought back all these outfits to this game and made restricted outfits (torn outfits) accessible
it still can not change lingerie, equip system will not change CI(lingerie) ...(seems only can change by edit savedata)
and it's only for miyako...
and for other npc(only can change clothes in jail):
make this value("dontGetCostume": true, in data_scenario.dat) false then add all unique chara in some map(such as Police Detention Room)
but be careful, chara have it's faction different faction will fight each other...
add an unique chara in map's code(edit map_***.dat,can check map ID in data_mapName.dat):
Code:
    <object id="35" name="u" type="chara" x="1080" y="450" width="288" height="192">
            <properties>
                <property name="csb" value="empty"/>
                <property name="data" value="onig"/>
                <property name="data2" value="0"/>
                <property name="depth" value="default"/>
                <property name="depthFront" value="0"/>
                <property name="detail" value="mother"/> here is which one unique chara(mother is twohorns village head)
                <property name="direction" value=""/>
                <property name="if_false" value=""/>
                <property name="if_true" value=""/>
                <property name="tag" value="u"/> only use to check this unique is in jail or not, do not use the same value to different chara
            </properties>
    </object>
 
Last edited:
Jul 2, 2020
21
6
So is there a chance that we can mod to add generic futa character into the world (with the potential that some of them being rapish)?

I looked into the CharGenerator .DAT file, and it looks like it contains both generic and unique characters.

The question now is how can we spawn them in different areas of the game?
 

katariya

Member
Apr 19, 2022
299
133
So is there a chance that we can mod to add generic futa character into the world (with the potential that some of them being rapish)?

I looked into the CharGenerator .DAT file, and it looks like it contains both generic and unique characters.

The question now is how can we spawn them in different areas of the game?
maybe it's this code(I have no tool to decode that, and it's in map_XXX.dat)
and it change value everymap...
Code:
    <layer id="98" name="enemy" width="50" height="13">
        <data encoding="base64" compression="zlib">
   eJztwYEAAAAAw6D5Ux/gClUBAMAbCigAAQ==
  </data>
    </layer>
 

katariya

Member
Apr 19, 2022
299
133
please name the cheate code for this game.
if you want free cheat, use shop hack.
if you want to upgrade to special ver, it's binding account, special ver must online, when you offline, auto down to retail ver.
so if you want to use special ver, you can't avoid sign in server, and account(and pass) is issued by dev manual.
 
3.20 star(s) 6 Votes