Skip to content

Commit

Permalink
Text corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
karashiiro committed Dec 1, 2020
1 parent c8480de commit feadabe
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions PacketDetection/ScannerRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private void DeclareScanners()
BitConverter.ToUInt32(packet.Data, Offsets.IpcData + 20) == 0 &&
BitConverter.ToUInt32(packet.Data, Offsets.IpcData + 24) == 0);
//=================
RegisterScanner("ActorControlTarget", "Please mark 1 to self.",
RegisterScanner("ActorControlTarget", "Please mark yourself with the \"1\" marker.",
PacketSource.Server,
(packet, _) => packet.PacketSize == 64 &&
BitConverter.ToUInt32(packet.Data, Offsets.IpcData + 0x04) == 0 &&
Expand Down Expand Up @@ -341,7 +341,7 @@ private void DeclareScanners()
BitConverter.ToUInt64(packet.Data, Offsets.IpcData + 0x18) != 0 &&
BitConverter.ToUInt32(packet.Data, packet.Data.Length - 4) == 0);
//=================
RegisterScanner("PrepareZoning", "Please find an Aetheryte and teleport to Lancers' Guild.",
RegisterScanner("PrepareZoning", "Please find an Aethernet Shard and teleport to Lancers' Guild.",
PacketSource.Server,
(packet, _) =>
{
Expand All @@ -358,7 +358,8 @@ private void DeclareScanners()
fadeOutTime == 14 &&
packet.SourceActor == packet.TargetActor;
});
RegisterScanner("ActorSetPos", "Please teleport to Mih Khetto's Amphitheatre via the Aetheryte.",
//=================
RegisterScanner("ActorSetPos", "Please teleport to Mih Khetto's Amphitheatre via the Aethernet Shard.",
PacketSource.Server,
(packet, _) =>
{
Expand All @@ -372,7 +373,7 @@ private void DeclareScanners()
}
);
//=================
RegisterScanner("PlaceFieldMarker", "Please target the Aetheryte and type /waymark A <t>",
RegisterScanner("PlaceFieldMarker", "Please target the Mih Khetto's Amphitheatre Aethernet Shard and type /waymark A <t>",
PacketSource.Server,
(packet, _) => packet.PacketSize == 48 &&
packet.SourceActor == packet.TargetActor &&
Expand Down Expand Up @@ -405,7 +406,7 @@ private void DeclareScanners()
PacketSource.Server,
(packet, _) => packet.PacketSize == 156 && BitConverter.ToUInt16(packet.Data, Offsets.IpcData + 8) == 16533);
//=================
RegisterScanner("EffectResult", "Please use Dia.",
RegisterScanner("AddStatusEffect", "Please use Dia.",
PacketSource.Server,
(packet, _) =>
packet.PacketSize == 128 && BitConverter.ToUInt16(packet.Data, Offsets.IpcData + 30) == 1871 ||
Expand Down

0 comments on commit feadabe

Please sign in to comment.