Make your own 1HK mod
Ok so to complete this tutorial, you must know how to use VZipFlip, hfssign and that you have NotePad++ on your computer.(I will not explain it here so don't beg, just look on the forums and you will find everything you need to know)
I will show you how to do your own 1 hit kill mod.(I'm not gonna make a video so don't beg for this
)
So first
1.
Find 763FD8F12D3D013194261D98B4AEF0FB0F6FBA1B.hfs in your vindictus folder and put it in your VZipFlip folder.
2.
Convert it to a .zip file (As I said, I will not show you how). Remove the stupid underscore at the end of it.
3.
Open it and extract action_table_player.txt.comp. Open it with notepad++
4.
In the file, damages are separated by classes. This means that fiona has her dmg, lann his and etc...
So for lann search for : lethita_normal_attack_
{ means the start of a function and } the end of a function (Just to let you know if you never coded)
and look for damage_factor
"eval" is where the damage is determined.
so change the previous code for :
Repeat this for lethita_normal_attack_01 , 02 and etc... It is the same thing for other characters
5.
To make smashes 1hk just search for lethita_strong_attack and it is the same thing for other chars.
(Change the damage factor again as we did before)
6.
For 1hk kicks search for lethita_kick_01 and change the damage_factor.(Same thing for other chars)
7.
Save the file when you're done and put it back in the .zip
8.
Convert it back to .hfs and don't forget to HFSSIGN it ! And put the file in your vindictus hfs folder.
***IMPORTANT NOTE !!***
Not this much important, but lol. Don't forget to do this for lethita_kick_01 - lethita_kick_02 - lethita_kick_03 and do the same thing for other type of attacks.
My english is not this good, but I hope you understand
I will show you how to do your own 1 hit kill mod.(I'm not gonna make a video so don't beg for this
)So first
1.
Find 763FD8F12D3D013194261D98B4AEF0FB0F6FBA1B.hfs in your vindictus folder and put it in your VZipFlip folder.
2.
Convert it to a .zip file (As I said, I will not show you how). Remove the stupid underscore at the end of it.
3.
Open it and extract action_table_player.txt.comp. Open it with notepad++
4.
In the file, damages are separated by classes. This means that fiona has her dmg, lann his and etc...
So for lann search for : lethita_normal_attack_
{ means the start of a function and } the end of a function (Just to let you know if you never coded)
and look for damage_factor
Code:
"damage_factor"
{
"load" "dmg_bonus1 $skill_combat_mastery.dmg_bonus"
"eval" "2 * ( 1+ dmg_bonus1 / 100)"
}
so change the previous code for :
Code:
"damage_factor"
{
"load" "dmg_bonus1 $skill_combat_mastery.dmg_bonus"
"eval" "999999 * ( 1+ dmg_bonus1 / 100)"
}
5.
To make smashes 1hk just search for lethita_strong_attack and it is the same thing for other chars.
(Change the damage factor again as we did before)
6.
For 1hk kicks search for lethita_kick_01 and change the damage_factor.(Same thing for other chars)
7.
Save the file when you're done and put it back in the .zip
8.
Convert it back to .hfs and don't forget to HFSSIGN it ! And put the file in your vindictus hfs folder.
***IMPORTANT NOTE !!***
Not this much important, but lol. Don't forget to do this for lethita_kick_01 - lethita_kick_02 - lethita_kick_03 and do the same thing for other type of attacks.
My english is not this good, but I hope you understand


