Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

DFS->XLS converter

Moderator
Staff member
Moderator
Joined
Oct 8, 2006
Messages
647
Reaction score
369
Hey there sorry its taken me so long.
Here is the release of my DFS->XLS converter.

Its pretty simple. load the dfs file of your choosing (I.E. questtext_table.dfs)
load an xls (I.E. Text.xls)
Select the worksheet corresponding to your dfs file your trying to open(I.E. Questtext)

Click convert.

If it for some reason comes back with an error pertaining to record size, it will tell you the size your xls si and the dfs is. This is because one of the varibles in the dfs has changed from the XLS.
I.E. Text_Monster_Table.dfs in english has a STRING(150) instead of STRING(50)
you can do some basic bitmath to find what the new one should be, also you have to change it in your client source if you change the size in the xls(Or just want to use the other language dfs)

No support will be given on this :) You got the mini tutorial, thats the best your getting :)

PLEASE pay attention to the post i responded to adamastin
This will tell you exactly how to use the translations i provided.





Russian Translations
https://mega.co.nz/#!xYBykSpJ!NvX6iEprFIwg7D-qRo6qkXbf9YDPTSnJtDaCvFazilw

English Translations
https://mega.co.nz/#!JQRwBRQT!E-Nqfx39YgezsEX8VWdVFDHir9qqDH2Mc5hqFOs8J_s

PT-BR Translations
https://mega.co.nz/#!QBBXnIjb!7DWaccRyMbDhEDKaL9Zps8urv5xGxY8U4y0JoV19RjM
(unfortunately i dont have the correct text.xls for this one. But i added an Edits.txt which holds the correct structs
to use the pt-br translations as well as the couple lines of code to comment out to remove the error message)

 
Last edited:
Elite Diviner
Joined
Sep 28, 2005
Messages
419
Reaction score
105
Download the full source, the one that it's split in 8 archives. tw.part01.rar->tw.part08.rar
 
Moderator
Staff member
Moderator
Joined
Oct 8, 2006
Messages
647
Reaction score
369
They do work adastmin.

Look in the excel file in this rar

lets do GUITextTable

In the excel file it says STRING(1200)
You need to change
GUITextTable.h in PostService\GameSource\Common\BaseSystem\Dfs

Code:
TCHAR		OutputText[612];

to

Code:
TCHAR		OutputText[1200];

This modification only works on the client side.

Since there are more entries in the text files than in the corresponding files.(IE text_skill_table vs Skill table, they dont match so server will crash)
So build your server first. then make the edits for the client.

It goes the same for all the other text_ files
QuestText table.. same thing.

The rar file you can just drop the new dfs files in your data/l10n/cht/dfs folder and have russian translations
Do the same for your gui folder.

there will be an error in the client that you can either ignore or comment out about mismatched text<->actual files


https://mega.co.nz/#!xYBykSpJ!NvX6iEprFIwg7D-qRo6qkXbf9YDPTSnJtDaCvFazilw

Have fun with Dragona fully translated.
 
Experienced Elementalist
Joined
Jan 11, 2010
Messages
244
Reaction score
43
DFS->XLS non support rus character's

Results:
SanGawku - DFS->XLS converter - RaGEZONE Forums
 
Back
Top