Re: [Tutorial] Custom proportions by editing the database
New discovery while I was trying to make custom bosses:
0, 2, null, c1 (skin main), c2 (skin shadow), c3 (eye color)
null is face ID possible values:
10 fiona
20 evy
50 vella
70 lynn
80 arisha
100 delia (it may work depending on client version)
0 lann
30 karok
40 kay
60 hurk
90 hagie
Note that eyebrows are that of the old character. There's 2 ways of using the correct eyebrows: either change the character class to the one that has the face you want and change its eyebrows, or copy the right row from one character to another
EDIT: SQL query to change faces faster
Change Player1234 with player name and 10 with the desired ID
Code:
DECLARE @player1 bigint = (SELECT ID FROM dbo.CharacterInfo WHERE Name LIKE 'Player1234');
UPDATE dbo.Costume SET CostumeSN = 10 WHERE CID = @player1 AND "Type" = 0 AND "Key" = 2;
Example: fiona with evie face
http://i.imgur.com/52AsFYUh.jpg
Re: [Tutorial] Custom proportions by editing the database
Nice, can you take some screenshots for it? So we all got a clue how it is look like.
Re: [Tutorial] Custom proportions by editing the database
Added an image and a fast sql query.
Re: [Tutorial] Custom proportions by editing the database
Wow! Nice nice. It's very interesting experiences for Vindictus lol. Can we add Delia faces to any girls?
Re: [Tutorial] Custom proportions by editing the database
Quote:
Originally Posted by
john007
Wow! Nice nice. It's very interesting experiences for Vindictus lol. Can we add Delia faces to any girls?
I made a delia face on vella in 1.69. Does that ake it a velia or a della? :D
Re: [Tutorial] Custom proportions by editing the database
Delia face works with this BD trick as long as the .mdl is in the hfs. I run the 1.65 so it appears invisible, it may work in 1.69. You can also give delia emotions in town by switching motion files with the hacked .dll (delia emotions are retarded btw)
Re: [Tutorial] Custom proportions by editing the database
Has anyone found where the class-specific limits for height/bust are stored?
Re: [Tutorial] Custom proportions by editing the database
FYI
Female Kai, looks to somewhat work (still trying to work out).
- I changed the body values manually in the DB.
- added a face swap (to Vella).
- added default inner (the female default).
- added default hair (which was female).
- didn't notice any attack animation issues.
Issues:
1) the eyes are a tad lower, so barely see the pupil.
2) the hands are a little deformed, but not that eye noticing.
3) the voice needs to be swapped (since there's a JP or KR versions of Fiona/Evie, got another set of female voices).
Re: [Tutorial] Custom proportions by editing the database
Quote:
Originally Posted by
alcaster42
FYI
Female Kai, looks to somewhat work (still trying to work out).
- I changed the body values manually in the DB.
- added a face swap (to Vella).
- added default inner (the female default).
- added default hair (which was female).
- didn't notice any attack animation issues.
Issues:
1) the eyes are a tad lower, so barely see the pupil.
2) the hands are a little deformed, but not that eye noticing.
3) the voice needs to be swapped (since there's a JP or KR versions of Fiona/Evie, got another set of female voices).
It may be easier to just create a new female character and then simply edit Class in CharacterInfo before doing any quests or using AP. I tried doing that to turn Lynn into a Kai/Karok; the issues with the former are as you said and the latter is absolutely terrifying.