Zanurah

Member
Jul 10, 2022
321
732
193
Soundtrack
Where's the track that pays homage to the original lost village?



On a side note, after listening to the tracks you have uploaded, I'm definitely confused now how I thought the sequel's soundtrack was better than the original's. Worse, what was Nennai thinking when he replaced the swamp boss's demo track with that average generic track instead? The demo track nailed the atmosphere, so I'm scratching my head over that one.

That's not to say the sequel has some great tracks, but the original's sound superior as a whole.
 

mk40

Member
Jul 23, 2018
331
536
298
Where's the track that pays homage to the original lost village?



On a side note, after listening to the tracks you have uploaded, I'm definitely confused now how I thought the sequel's soundtrack was better than the original's. Worse, what was Nennai thinking when he replaced the swamp boss's demo track with that average generic track instead? The demo track nailed the atmosphere, so I'm scratching my head over that one.

That's not to say the sequel has some great tracks, but the original's sound superior as a whole.
I agree that the style he was going for with the demo soundtrack was way better. The release soundtrack is more "ambiance" like which isn't as good in comparison. The Vampiric Swamp track was perfect in the demo.
 

Crackgear

Member
Oct 14, 2018
395
285
214
It's a shame there's no lust crest event in town like there is one for having the zombification debuff when speaking to the other sister. Maybe one day as DLC or an added event in the future.
There are lust crest events lmao. Its just that it is only limited to the Cathedral Priests level.
 
  • Like
Reactions: ZX7H

redbulllx6

Newbie
Sep 18, 2018
91
609
207
:KEK:
..i just...i can't dude...i was preparing my explanation...but at this point...think whatever you want...
i can't comment this.....it says all about the quality of player you are...
1. You kinkshaming is breaking site rules. Hence why I told you, for your own good, don't share your opinion.
2. If my opinion on two games I enjoyed and played through multiple times because they were fun - but being able to note and state their shortcomings from my viewpoint and stating that SiNiSistar 2 doesn't share these flaws makes you question "the quality of player I am", then you do you. Unlike you, I don't deny your opinion.
3. I'd rather have read your explanation (as painful as it would've been to read thanks to your writing style), because even with this reply, you do yourself no favors. Still all "they are the issue, not me" mentality, living in a bubble.


Laugh all you want. Ignorance is bliss, as they say.
 

Henry1887

Active Member
Aug 2, 2020
696
943
287
Would you mind to share what method you did to decrypt them? I want to learn in case other games encrypt their files.
1744919239017.png
The game uses this class for AES encryption and decryption inside the SiNiSistar2.dll(generated). I simply wrote a BepInEx Plugin that goes over every File inside the StreamingAssets and decrypted them using the already implemented "Util.OutDeCreateByte" Method and wrote them somewhere else.
Like this:
Code:
string assetBundlePath = System.IO.Path.Combine(Application.dataPath, "StreamingAssets", "game_bin");
string[] assetBundleFiles = System.IO.Directory.GetFiles(assetBundlePath);
foreach (string assetBundleFile in assetBundleFiles)
{
    byte[] fileBytes = System.IO.File.ReadAllBytes(assetBundleFile);
    byte[] processedBytes = Util.OutDeCreateByte(fileBytes, fileBytes.Length);
    string outputFile = System.IO.Path.Combine(Application.dataPath, "dump", System.IO.Path.GetFileName(assetBundleFile));
    System.IO.File.WriteAllBytes(outputFile, processedBytes);
}
 

Henry1887

Active Member
Aug 2, 2020
696
943
287
I needed to use Ghidra to see the native code of the methods to figure out that this Util Class is used for decrypting the assetbundles.
 

Mod Learner

Active Member
Dec 1, 2019
546
408
198
View attachment 4754752
The game uses this class for AES encryption and decryption inside the SiNiSistar2.dll(generated). I simply wrote a BepInEx Plugin that goes over every File inside the StreamingAssets and decrypted them using the already implemented "Util.OutDeCreateByte" Method and wrote them somewhere else.
Like this:
Code:
string assetBundlePath = System.IO.Path.Combine(Application.dataPath, "StreamingAssets", "game_bin");
string[] assetBundleFiles = System.IO.Directory.GetFiles(assetBundlePath);
foreach (string assetBundleFile in assetBundleFiles)
{
    byte[] fileBytes = System.IO.File.ReadAllBytes(assetBundleFile);
    byte[] processedBytes = Util.OutDeCreateByte(fileBytes, fileBytes.Length);
    string outputFile = System.IO.Path.Combine(Application.dataPath, "dump", System.IO.Path.GetFileName(assetBundleFile));
    System.IO.File.WriteAllBytes(outputFile, processedBytes);
}
So this need some coding knowledge, it's beyond my ability then, but thank for explain. Sorry for waste your time.:ROFLMAO:
 
  • Like
Reactions: Henry1887

Seracjuze

Member
Jan 16, 2018
250
288
82
1. You kinkshaming is breaking site rules. Hence why I told you, for your own good, don't share your opinion.
2. If my opinion on two games I enjoyed and played through multiple times because they were fun - but being able to note and state their shortcomings from my viewpoint and stating that SiNiSistar 2 doesn't share these flaws makes you question "the quality of player I am", then you do you. Unlike you, I don't deny your opinion.
3. I'd rather have read your explanation (as painful as it would've been to read thanks to your writing style), because even with this reply, you do yourself no favors. Still all "they are the issue, not me" mentality, living in a bubble.


Laugh all you want. Ignorance is bliss, as they say.
Sounds to me like the guy simply prefers vector graphics over pixel art and simply doesn't have the skill to properly communicate with other human beings. :p
 
  • Haha
Reactions: PixelLewd

Henry1887

Active Member
Aug 2, 2020
696
943
287
I finished unpacking all the AssetBundles now.
Zipping all the Assets will take about 1 1/2 hours now o_O
1744921257048.png
 
  • Like
Reactions: mk40

GarithosPurge

New Member
Jan 13, 2020
6
52
81
Just realised the Egg boss you face with the many bodies around it might be a reference to what you saw on Nier Automata where the machines go crazy and form an egg to give birth to Adam View attachment 4754730
It's a direct reference to Castlevania SoTN's Legion boss. It's a near perfect 1:1 comparison in both presentation and gameplay. A similar reference of the era would be the boss behind the curtains in the first game, which is a reference to Clocktower SNES.
Legion.gif
 
4.70 star(s) 123 Votes