![]() |
|
Read . ba - Printable Version +- LCKB (https://lckb.dev/forum) +-- Forum: ** OLD LCKB DATABASE ** (https://lckb.dev/forum/forumdisplay.php?fid=109) +--- Forum: Programmers Gateway (https://lckb.dev/forum/forumdisplay.php?fid=196) +---- Forum: Coders Talk (https://lckb.dev/forum/forumdisplay.php?fid=192) +---- Thread: Read . ba (/showthread.php?tid=4546) |
- ucaff - 01-18-2016 someone could give me a hand with this? as I can do to read "ejm. Data / NPC / pet / gatsby.smc" and if you find the line " ANIMSET TFNM "Data\Npc\pet\catsbi.ba"; you open the reader .ba ...... - Karmel - 01-19-2016 Oh man.. is english is tu hard is for mi is ? .. at least the basics or Google Translate .ba is serious binary animation set You can use Serious Ska Studio to open this. - ucaff - 01-20-2016 Solved, Close the topic ![]() - ucaff - 01-20-2016 IniFile ini = new IniFile(INI); string Path = ini.IniReadValue("cfg - MySQL", "Path"); string[] lineas = File.ReadAllLines(@Path + a_smcFileName_1.Text); string[] file = null; foreach (string linea in lineas) { if (linea.Contains("ANIMSET")) { file = linea.Split('"'); break; } } Aeditor Ventana_editor = new Aeditor(); Ventana_editor.Path = Path + file[1]; if (Ventana_editor.ShowDialog() == DialogResult.OK) a_ani_idle1_1.Text = Ventana_editor.Resultado; |