Ok ok even with no help I could manage to advance on this problem, and i'm halfway there ! Since I think this project can not go far without
sharing I will give the community my findings.
So, first thing was to find the NPC list of the Zone, this is easy with POLutils.
In my case the area is Bastok Markets, the DAT file is ROM/27/44.DAT
There i had to understand how it was written
The first set of numbers is the name of the NPC in hex, pretty straightforward
The second set of numbers is the NPC' ID, but you have to write it backward (wtf, cant remember how i even found this) so it's 010EB004 which is 17739780 in decimal, and is the ID of Malene in the SQL table npc_list
The third set is the NPC i created, there were some IDs with empty NPC names so i just put it here, but you could insert more strings at the end i guess.
So, now the game knows there is a npc called Vay Hem with ID = 010EB0B4 or 17739956
then I added
Code: Select all
INSERT INTO `npc_list` VALUES ('17739956', 'Vay_Hem', '1', '-200.003', '-9.998', '0.956', '27', '40', '40', '0', '0', '0', '0', '27', 0x01000A0100100520163005400750006000700000, '32', '235');
in the npc_lsit.sql
'-200.003', '-9.998', '0.956' is the pos of the npc, i just typed @where in the game to check my position.
'27', '40', '40', '0', '0', '0', '0', '27', i have no fucking clue what this does, just copied it from another non-quest NPC.
0x01000A0100100520163005400750006000700000 is the look of the NPC, i havent had time to decrypt it yet, but it's pretty sure it's the HEX code for Race/Gender/Face/Gear, in this case it's a hume male with dreadlocks and dino jerkin set.
'32', '235' dont know what it does.
Next I created Vay_Hem.lua in \scripts\zones\Bastok_Markets\npcs and pasted some other NPC script in it to see if it worked.
IT WORKS

so i have that totally new NPC that I can target and trigger.
Now to make him talk something custom, my first headhache of the day
I had to find the Dialogs DAT, samething than with the NPC dat, use POLutils and it's in ROM/25/44.DAT
Here comes the twist, you can read it in POLutils but when you open it with an HEX editor it's all messed up.
That's when i tumbled on that thread
http://polutils.7.forumer.com/viewtopic.php?t=147 and I had no bloody clue what the whole thing was about XORed ? 0x80 ?
Nontheless i'm adventurous lol so I decided to first see if I could encrypt myself a word jsut like FFXI does. A way to check if my encoding was right was if i cuold match my result with what's in the DAT, so i had to translate a word said by some NPC. But if the word was too common i would have had too many results.
I then spoke with a crapload of NPC to see if they said some special word. It happened to be Aquillina, she uses the word "stepfather", and it's the only occurence of the word in Bastok Market. To find that I exported the dialogs dat (25/44.DAT) to xml via POLutils, then i could search the word.
I used that table
http://unicode.org/Public/MAPPINGS/VEND ... /CP932.TXT to type "stepfather" in hex. Then applyed a XOR of 80808080808080 (or whatever the fuck that is) with that wonderful tool
http://www.darkfader.net/toolbox/convert/ and it gave me a string of hex code.
Then i did a search for this string in the dialogs' DAT and fount the exact same one.
I then converted some custom text the same way, encrypted it and replaced the word stepfather.
Next thing i had to do was replace the EVENT ID of Vay_Hem.lua to be the same as Aquillina so when i clic my npc it says her sentence.
and TADAAA
Now there are two more problems,
How do you tell the game that it's the CUSTOM NPC that is the ACTOR of the EVENT instead of the other NPC ?
I dont know if ACTORS are directly coded in the CS, in this case it's very very difficult to do, or if they are CALLED via another event, like use THAT actor with THAT event, in which case we would still keep the event but just change its actor.
How could you script your own EVENTs ? I dont know how these are encrypted yet.
One more thing, the process of converting the DAT's encrypted HEX into readable TEXT then re-encrypt the new text is very long to do manually, anyone with some coding knowledge could write a simple tool to READ/WRITE/ENCRYPT dialog DATs ?
By the way i'm a CG Artist so
