fix(core): Adds object help response packets (#336)

This commit is contained in:
Kamron Batman 2020-12-07 21:19:21 -08:00 committed by GitHub
parent c77b5b1462
commit 4b2e4fbd36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 44 additions and 59 deletions

View file

@ -141,4 +141,15 @@ namespace Server.Network
Stream.Write((short)0);
}
}
public sealed class ObjectHelpResponse : Packet
{
public ObjectHelpResponse(Serial e, string text) : base(0xB7)
{
EnsureCapacity(9 + text.Length * 2);
Stream.Write(e);
Stream.WriteBigUniNull(text);
}
}
}