VN Others Completed Violated Hero II ~A Throbbing Hardon Even Though I Lost~[Dieselmine]

3.00 star(s) 1 Vote

yesz

Active Member
Jul 11, 2019
623
319
when i try to extract it says:

unexpected end of data
there are some data after the end of the payload data
data error : ViolatedHero2/data.xp3.backup

how to fix?
 

jetalpha

Member
Aug 11, 2017
219
85
why is violated hero 4-5-6 only H-scene tanslated and not the story ? have someone have a full translate ?
 

Sieglinnde

Let the Nightshine in - Developer
Game Developer
Dec 2, 2019
2,189
4,603
Links are mine, so I'm the one to blame! Even though honestly, I didn't share that version because.. It's nothing new, only some small lines changed! That being said, it's not fair after all, so here's the link for the version 1.02



I apologize for my behavior! ç_ç
the image of your profile picture is from some game?
 

johndoe2

Newbie
Jul 29, 2018
47
35
It keeps saying "syntax error" with random symbols when I start... I've tried like 3 different links whats going on??
 

Ferghus

Engaged Member
Aug 25, 2017
2,616
4,013
It keeps saying "syntax error" with random symbols when I start... I've tried like 3 different links whats going on??
If I had to guess, you're not playing on Japanese locale. Try changing your system to it before extracting and launching. It's the most common problem with Japanese games.
 

hypnoses_talon

New Member
Jul 15, 2021
4
5
Violated Hero II

Original Size Windows: 2.76GB
Compressed Size Windows: 343MB MEGA

You don't have permission to view the spoiler content. Log in or register now.
A Compression By LDX REPACKS
This one is broken. Some images were changed from png to jpg. The game expects png.
Can be fixed by adding the code to load jpg if png is not found.

in file
data/scenario/extension/image_list.ks

just after line
Code:
    output.loadLayer = function(filename, _layer_no, _z, _left, _top, _opacity, page, root_layer){
insert code
Code:
        var tmp = [];
        try{
            tmp.load(filename);
        }
        catch(e){
            var re = new global.RegExp('.png');
            filename = filename.replace(re, '.jpg');
        }


in file
data/scenario/game/03_battle.ks

just before lines
Code:
[endscript]
@bg f=&bg_name
insert code
Code:
var tmp = [];
try{
    tmp.load(bg_name);
}
catch(e){
    var re = new global.RegExp('.png');
    bg_name = bg_name.replace(re, '.jpg');
}
 

Yuimara

New Member
Feb 20, 2018
12
0
This one is broken. Some images were changed from png to jpg. The game expects png.
Can be fixed by adding the code to load jpg if png is not found.

in file
data/scenario/extension/image_list.ks

just after line
Code:
    output.loadLayer = function(filename, _layer_no, _z, _left, _top, _opacity, page, root_layer){
insert code
Code:
        var tmp = [];
        try{
            tmp.load(filename);
        }
        catch(e){
            var re = new global.RegExp('.png');
            filename = filename.replace(re, '.jpg');
        }


in file
data/scenario/game/03_battle.ks

just before lines
Code:
[endscript]
@bg f=&bg_name
insert code
Code:
var tmp = [];
try{
    tmp.load(bg_name);
}
catch(e){
    var re = new global.RegExp('.png');
    bg_name = bg_name.replace(re, '.jpg');
}
so when i try to do what you said to in the image.ks it crashes when i load up the game
 

Mizukipon

Well-Known Member
Mar 30, 2020
1,207
588
So Just want to ask how do you save at this game? Only Autosave is there is there any button that i should press?
 

MattKZ707

New Member
Sep 8, 2020
3
8
how i can kill her?
You must absorb the powers of the three demon generals. To do this after defeating them, choose the "finish her off" option. and first you need to have chosen the correct dialogue options with amu and when you defeat her choose to receive her power. With this, in the second round of the fight against Xueli your hp and status will increase
 

hypnoses_talon

New Member
Jul 15, 2021
4
5
so when i try to do what you said to in the image.ks it crashes when i load up the game
You probably messed up at some point because my explanation is a bit confusing.
I didn't want to post edited scripts from an account which was just created, so I tried to explain it.
If anyone still has problems with compressed version, here are those 2 edited script files.
 
3.00 star(s) 1 Vote