This commit is contained in:
kshman 2021-04-14 10:02:44 +09:00
parent 3e69d5d29e
commit 1cfb6658a4
3 changed files with 19 additions and 9 deletions

View file

@ -95,12 +95,12 @@ namespace DutyContent
public class PacketConfig public class PacketConfig
{ {
// Packet // Packet
public string Version { get; set; } = "5.45 HotFix"; public string Version { get; set; } = "5.5";
public ushort OpFate { get; set; } = 0x3D5; public ushort OpFate { get; set; } = 960;
public ushort OpDuty { get; set; } = 0x307; public ushort OpDuty { get; set; } = 181;
public ushort OpMatch { get; set; } = 0x26E; public ushort OpMatch { get; set; } = 372;
public ushort OpInstance { get; set; } = 0x10C; public ushort OpInstance { get; set; } = 724;
public ushort OpSouthernBozja { get; set; } = 0x1F5; public ushort OpSouthernBozja { get; set; } = 743;
// //
public void Save(string filename = null) public void Save(string filename = null)

View file

@ -1,6 +1,17 @@
Duty Content for FFXIV Duty Content for FFXIV
Reminder: ***Not working on 5.5***
* Duty finding codes from https://github.com/purutu/ACT.DFAssist * Duty finding codes from https://github.com/purutu/ACT.DFAssist
* Network analyzer codes from https://github.com/Noisyfox/ACT.FFXIVPing * Network analyzer codes from https://github.com/Noisyfox/ACT.FFXIVPing
5.5 Packets (Modify DutyPacket.config)
<pre><code>
# DutyPacket configuration
# packet
Version=5.5
OpFate=960
OpDuty=181
OpMatch=372
OpInstance=724
OpSouthernBozja=743
</code></pre>

View file

@ -1434,7 +1434,6 @@ namespace DutyContent.Tab
if (ss.Length > 0) if (ss.Length > 0)
{ {
DcConfig.Duty.PingDefAddr = ss[0].Trim(); DcConfig.Duty.PingDefAddr = ss[0].Trim();
MesgLog.L("sel defip: {0}", ss[0]);
SaveConfig(); SaveConfig();