コード例 #1
0
ファイル: MapClient.cs プロジェクト: x3sphiorx/SagaRO2
 /// <summary>
 /// Send a shortcut list to the client aka 'Quick Page'.
 /// </summary>
 public void SendShortcutsList()
 {
     Packets.Server.SendShortcutList packet2 = new SagaMap.Packets.Server.SendShortcutList();
     packet2.SetQuickPageType(0, 0);
     packet2.SetEntries(this.Char.ShorcutIDs);
     this.netIO.SendPacket(packet2, this.SessionID);;
 }
コード例 #2
0
ファイル: MapClient.cs プロジェクト: Willyham/SagaRO2
 /// <summary>
 /// Send a shortcut list to the client aka 'Quick Page'.
 /// </summary>
 public void SendShortcutsList()
 {
     Packets.Server.SendShortcutList packet2 = new SagaMap.Packets.Server.SendShortcutList();
     packet2.SetQuickPageType(0, 0);
     packet2.SetEntries(this.Char.ShorcutIDs);
     this.netIO.SendPacket(packet2, this.SessionID); ;
 }