KR 6.1 updates (#123)
This commit is contained in:
parent
a428e29a8b
commit
5b1e17617b
3 changed files with 35 additions and 5 deletions
|
@ -1,11 +1,11 @@
|
||||||
# DutyPacket configuration
|
# DutyPacket configuration
|
||||||
|
|
||||||
# packet
|
# packet
|
||||||
Version=5006052
|
Version=5006100
|
||||||
Description=6.05 핫픽스 (한국판)
|
Description=6.1 (한국판)
|
||||||
OpFate=309
|
OpFate=309
|
||||||
OpDuty=758
|
OpDuty=758
|
||||||
OpMatch=346
|
OpMatch=346
|
||||||
OpInstance=338
|
OpInstance=338
|
||||||
OpZone=470
|
OpZone=470
|
||||||
OpSouthernBozja=423
|
OpSouthernBozja=0
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -120,6 +120,11 @@ namespace DutyContent.Tab
|
||||||
var p = _packet_list.ElementAt(cboPacketset.SelectedIndex);
|
var p = _packet_list.ElementAt(cboPacketset.SelectedIndex);
|
||||||
RemotePacketUpdate(p.Key);
|
RemotePacketUpdate(p.Key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
#if TESTPK
|
||||||
|
Logger.Write(Color.Red, "[TEST PK MODE]");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PluginDeinitialize()
|
public void PluginDeinitialize()
|
||||||
|
@ -1556,7 +1561,7 @@ namespace DutyContent.Tab
|
||||||
var data = message.Skip(32).ToArray();
|
var data = message.Skip(32).ToArray();
|
||||||
|
|
||||||
#if TESTPK
|
#if TESTPK
|
||||||
#if true
|
#if false
|
||||||
// 파이날 스텝으로 오는거 전부 얻기
|
// 파이날 스텝으로 오는거 전부 얻기
|
||||||
var t = IndexOfData(data, 0, new ushort[] { 169, 134, 183, 223, 637 }); // final, P1, S1, Z1, Snake
|
var t = IndexOfData(data, 0, new ushort[] { 169, 134, 183, 223, 637 }); // final, P1, S1, Z1, Snake
|
||||||
if (t > 0)
|
if (t > 0)
|
||||||
|
@ -1567,7 +1572,7 @@ namespace DutyContent.Tab
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
// 매칭 관련
|
// 매칭 관련
|
||||||
if (opcode == 183 || opcode == 371 || opcode == 754 || opcode == 372 || opcode == 322)
|
if (opcode == 548 || opcode == 288 || opcode == 880 || opcode == 460)
|
||||||
{
|
{
|
||||||
var s = DataToByteString(data);
|
var s = DataToByteString(data);
|
||||||
Logger.L("{0}({1}) => {2}", opcode, data.Length, s);
|
Logger.L("{0}({1}) => {2}", opcode, data.Length, s);
|
||||||
|
|
Loading…
Reference in a new issue