This guide will introduce basic editing of LaTale client files to modify existing graphics and sound effects. It explains the contents of various client files and provides two examples for editing assets to get you started.
What you need
The LaTale client comes with a bunch of .SPF archives that can be unpacked and repacked by the "Packer2" tool.
The following list may serve as a reference for where to look for what:
Editing graphics assets (sprites)
As an example, we will modify some weapon sprites which are part of "ZENNE.SPF" (see list above).
This demonstrates how to adjust sound effects and their timings for attacks. As an example we will fix the heavy attack of crossbows in the S1 client* because their sound effect plays a little too late.
The sound effect and timing definitions are part of "ROWID.SPF" in LDT format which we need to convert.
* S1 client refers to the v7 NA client as found here:
What you need
- "LaTaleTool.exe" and "Packer2" from the "ToolsLDT_Editing" folder of Fantasy Tale: https://forum.ragezone.com/f521/release-fantasy-tale-season-2-a-1203153/
- for editing images, a suitable image editor, e.g.
To view the content, you need to sign in or register
- for editing values, a suitable text editor of your choice, e.g. Notepad++
The LaTale client comes with a bunch of .SPF archives that can be unpacked and repacked by the "Packer2" tool.
The following list may serve as a reference for where to look for what:
- AJJIYA.SPF contains folders: ANITABLE
- animation stuff? binary .DRG and .SEQ files
- BANX.SPF contains folders: GLOBALRES
- NPC portraits, item icons, mob portraits (PNG)
- BARY.SPF contains folders: CURSOR, INTERFACE, LOADING, LOBBY, LOGGIN
- UI textures, loading screens, login screen (PNG)
- CLAIRE.SPF contains folders: LOGO, PROLOGUE
- initial loading screen, game start story pages (PNG)
- CVOICE.SPF contains folders: CP_IMAGE, STORY
- some icons, story pages (PNG)
- DALBONG.SPF contains folders: BGM
- soundtrack (MP3)
- HOSHIM.SPF contains folders: FX
- .FXM, .FXG, .PNG files, effect sprites and animation
- JINSSAGA.SPF contains folders: BGFORMAT
- stages files and minimaps (mostly custom binary formats, some PNG)
- JOOX3.SPF contains folders: BGM
- more soundtrack (MP3)
- MAKO1298.SPF contains folders: BACKGROUND
- stages background sprites (PNG)
- METALGENI.SPF contains folders: SOUND
- sound effects (WAV)
- ROWID.SPF contains folders: LDT
- values of monsters, items, skills etc. like HP, attack, stats, loot tables, rates etc. (LDT format)
- RYUMS.SPF contains folders: TERRAIN
- stages foreground sprites (PNG)
- ZENNE.SPF contains folders: CHAR\CHARLAYER, CHAR\MONSTER
- monster sprites, item sprites, character sprites, fashion sprites, weapon sprites (PNG)
Editing graphics assets (sprites)
As an example, we will modify some weapon sprites which are part of "ZENNE.SPF" (see list above).
- from the client copy "ZENNE.SPF" to "Tools\LDT_Editing\Packer2"
- unpack "ZENNE.SPF" by dragging & dropping it on "UP_P_Unpack.bat"
- as an example go to "Unpacked\DATA\CHAR\CHARLAYER\40_WEAPON_001"
- open affected sprite sheet with image editor, e.g. "WEAPON_001_004.PNG"
- edit the image and save it using the same name, i.e. overwriting the original file
- go back to "Tools\LDT_Editing\Packer2", drag "ZENNE.SPF" and drop it on "UP_P_Pack.bat"
- copy the rebuilt "ZENNE.SPF" to the client directory
- restart the client
This demonstrates how to adjust sound effects and their timings for attacks. As an example we will fix the heavy attack of crossbows in the S1 client* because their sound effect plays a little too late.
The sound effect and timing definitions are part of "ROWID.SPF" in LDT format which we need to convert.
- from the client copy "ROWID.SPF" to "Tools\LDT_Editing\Packer2"
- unpack "ROWID.SPF" by dragging & dropping it on "UP_P_Unpack.bat"
- open LaTaleTool.exe, click "Choose File" and select "Unpacked\DATA\LDT\SOUND_EFFECT.LDT"
- use "Tools" > "LDT to TXT" and save it somewhere as "SOUND_EFFECT.LDT.TXT"
- open up "SOUND_EFFECT.LDT.TXT "in a suitable editor, e.g. Notepad++
- search for "bow" in the file, ignore the first two matches (which are actual bow effects), the third one is for crossbow and is located at ID 1009 (at least for the S1 v7 client*)
- change the third column ('_DelayTime1') of the line with ID 1009 from 9 to 4, use "File" > "Save as ..." and save the file as "SOUND_EFFECT.LDT.patched.TXT"
- open LaTaleTool.exe, use "Tools" > "TXT to LDT", load the "SOUND_EFFECT.LDT.patched.TXT" and save it as "Unpacked\DATA\LDT\SOUND_EFFECT.LDT" from where your "ROWID.SPF is", overwrite the existing "SOUND_EFFECT.LDT" file
- drag the "ROWID.SPF" and drop it on "UP_P_Pack.bat"
- insert "ROWID.SPF" into the client and server (the modification has no actual effect on the server, but client and server "ROWID.SPF" should always be in sync!)
- restart client and server
* S1 client refers to the v7 NA client as found here:
To view the content, you need to sign in or register