base.WriteString(UnixTimestamp.FromUnixTimestamp(Convert.ToInt32(Row["timestamp"])).ToShortTimeString());
@Sledmore I downloaded Plus Emu ***** and replaced this files in the folder and not fixed...
And when I turn on another plus emu build its works
Don't host a retro as that isn't noon friendly. He gave you more than needed, and you don't even know how to use his help. You should be more than happy.I dont know how to do what you said, can explain noob friendly way? @Sledmore
The Packet Structure has been changed. This means that the incoming/outgoing handlers have been updated.I'm using Plus Emulator, the emulator is fixed for all but when I open roomchatlog or any chatlog, i'm disconnect.
How can I fix it?
Sorry for my bad english, my language is portuguese
base.WriteInteger(Row(["timestamp"]));
base.WriteString(UnixTimestamp.FromUnixTimestamp(Convert.ToInt32(Row["timestamp"])).ToShortTimeString());
He should be lucky there are people like you but what's bad is that people like you wont be there all the way that's why he should learn alittle himselfThe Packet Structure has been changed. This means that the incoming/outgoing handlers have been updated.
These 3 Classes need to be updated:
You can find them by typing their names in the Search Bar provided by Visual Studio. Double click on it and open the file
- ModeratorRoomChatlogComposer.cs
- ModeratorTicketChatlogComposer.cs
- ModeratorUserChatlogComposer.cs
Next search for the part where it will say (or something similar as I did not reference this, I used my memory)
Code:base.WriteInteger(Row(["timestamp"]));
Replace with:
Code:base.WriteString(UnixTimestamp.FromUnixTimestamp(Convert.ToInt32(Row["timestamp"])).ToShortTimeString());
The packet now wants a(n) String instead of an Integer, so when you are attempting to open the mod tools (A.K.A Sending the Packet Request) , its saying wait a minute, I want a string, you are sending an integer and its disconnecting you because its invalid data.
Do this with all 3 files, and then it should work fine.
Credits @Sledmore for that code^