girogius Posted March 26, 2021 Posted March 26, 2021 (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: Important !!!! after editing and saving file open that file in Notepad++ and Convert Encoding to UCS-2 LE BOM or it will not work. Edited March 28, 2021 by girogius program updated Quote
Anarchy Posted March 27, 2021 Posted March 27, 2021 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 Quote
girogius Posted March 27, 2021 Author Posted March 27, 2021 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); Quote
Anarchy Posted March 27, 2021 Posted March 27, 2021 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 Quote
girogius Posted March 27, 2021 Author Posted March 27, 2021 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 Quote
Recommended Posts
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.