Jump to content

Recommended Posts

Posted (edited)

Hi all, I created soft "Buff time editor" for GF and Epilogue, I don't know how other chronicles skilldata looks like 😄 if syntax is the same then it will work on other chronicles too.

 

Download

 

Screens: 

s2.png

 

s1.png

 

Important !!!!

after editing and saving file open that file in Notepad++ and Convert Encoding to UCS-2 LE BOM or it will not work.

 

Untitled3.jpg

 

Edited by girogius
program updated
Posted
17 minutes ago, Anarchy said:

why not just save it as unicode in the program? looks like c# in which case it's super easy you can set the output encoding for the stream when you save it

im saving it as unicode but its not exacly UCS-2 LE BOM i think idk , file not working until you convert it from notepad ++

Encoding enc = Encoding.Unicode;

 byte[] buffer = enc.GetBytes(l.Data);
await myStream.WriteAsync(buffer, 0, buffer.Length);

 

Posted
1 hour ago, girogius said:

im saving it as unicode but its not exacly UCS-2 LE BOM i think idk , file not working until you convert it from notepad ++


Encoding enc = Encoding.Unicode;

 byte[] buffer = enc.GetBytes(l.Data);
await myStream.WriteAsync(buffer, 0, buffer.Length);

 

use

Encoding enc = new UnicodeEncoding(false, true);

this will create unicode encoding, little endian, with byte order mark, then should work fine

Posted
2 hours ago, Anarchy said:

use


Encoding enc = new UnicodeEncoding(false, true);

this will create unicode encoding, little endian, with byte order mark, then should work fine

trid this but it gave me same result... 

Encoding.Unicode 

is also little endian like microsoft docs says, idk why its not working

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...