Example #1
0
 private void AgentSitHandler(Packet packet, LLAgent agent)
 {
     AgentSitPacket sit = (AgentSitPacket)packet;
 }
Example #2
0
 /// <summary>
 /// Follows a call to <seealso cref="RequestSit"/> to actually sit on the object
 /// </summary>
 public void Sit()
 {
     AgentSitPacket sit = new AgentSitPacket();
     sit.AgentData.AgentID = Client.Self.AgentID;
     sit.AgentData.SessionID = Client.Self.SessionID;
     Client.Network.SendPacket(sit);
 }
Example #3
0
 /// <summary>
 /// Follows a call to <seealso cref="RequestSit"/> to actually sit on the object
 /// </summary>
 public void Sit()
 {
     AgentSitPacket sit = new AgentSitPacket();
     sit.AgentData.AgentID = Network.AgentID;
     sit.AgentData.SessionID = Network.SessionID;
     Network.SendPacket(sit);
 }