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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock