Slash Enable flag

This commit is contained in:
Serge
2024-05-26 12:41:26 +02:00
parent 696f6f046f
commit 740a10fed8

View File

@@ -94,10 +94,16 @@ namespace GHelper.AnimeMatrix
public void Init()
{
SetEnabled(true);
Set(Packet<SlashPacket>(0xD7, 0x00, 0x00, 0x01, 0xAC), "SlashInit");
Set(Packet<SlashPacket>(0xD2, 0x02, 0x01, 0x08, 0xAB), "SlashInit");
}
public void SetEnabled(bool status = true)
{
Set(Packet<SlashPacket>(0xD8, 0x02, 0x00, 0x01, status ? (byte)0x00 : (byte)0x80), $"SlashEnable {status}");
}
public void Save()
{
Set(Packet<SlashPacket>(0xD4, 0x00, 0x00, 0x01, 0xAB), "SlashSave");