Effects packets (#308)
- [X] Changes effect packets - [X] Updates playing sounds - [X] Updates Effects class to have more options so there are less direct calls to building the packets - [X] Changes bonding status packet
This commit is contained in:
parent
1c9439e4fd
commit
361ec4dba4
53 changed files with 958 additions and 833 deletions
|
|
@ -27,19 +27,6 @@ namespace Server.Network
|
|||
}
|
||||
}
|
||||
|
||||
public sealed class BondedStatus : Packet
|
||||
{
|
||||
public BondedStatus(Serial serial, bool bonded) : base(0xBF)
|
||||
{
|
||||
EnsureCapacity(11);
|
||||
|
||||
Stream.Write((short)0x19);
|
||||
Stream.Write((byte)0);
|
||||
Stream.Write(serial);
|
||||
Stream.Write((byte)(bonded ? 1 : 0));
|
||||
}
|
||||
}
|
||||
|
||||
public sealed class MobileMoving : Packet
|
||||
{
|
||||
public MobileMoving(Mobile m, int noto) : base(0x77, 17)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue