コード例 #1
0
ファイル: MapClient.cs プロジェクト: x3sphiorx/SagaRO2
 /// <summary>
 /// Send invetory slot count.
 /// Default value 254
 /// </summary>
 public void SendMaxInvSlots()
 {
     Packets.Server.SetInventorySlotCount p1 = new SagaMap.Packets.Server.SetInventorySlotCount();
     p1.SetSlotCount((byte)this.Char.inv.invMaxSlots);
     this.netIO.SendPacket(p1, this.SessionID);
 }
コード例 #2
0
ファイル: MapClient.cs プロジェクト: Willyham/SagaRO2
 /// <summary>
 /// Send invetory slot count.
 /// Default value 254
 /// </summary>
 public void SendMaxInvSlots()
 {
     Packets.Server.SetInventorySlotCount p1 = new SagaMap.Packets.Server.SetInventorySlotCount();
     p1.SetSlotCount((byte)this.Char.inv.invMaxSlots);
     this.netIO.SendPacket(p1, this.SessionID);
 }