fix(core): Adds object help response packets (#336)
This commit is contained in:
parent
c77b5b1462
commit
4b2e4fbd36
5 changed files with 44 additions and 59 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue