diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 25 | ||||
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 3 |
3 files changed, 31 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index ab643ae..62918a7 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -8701,6 +8701,31 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
8701 | OutPacket(muteListUpdate, ThrottleOutPacketType.Task); | 8701 | OutPacket(muteListUpdate, ThrottleOutPacketType.Task); |
8702 | } | 8702 | } |
8703 | 8703 | ||
8704 | public void SendPickInfoReply(UUID pickID,UUID creatorID, bool topPick, UUID parcelID, string name, string desc, UUID snapshotID, string user, string originalName, string simName, Vector3 posGlobal, int sortOrder, bool enabled) | ||
8705 | { | ||
8706 | PickInfoReplyPacket pickInfoReply = (PickInfoReplyPacket)PacketPool.Instance.GetPacket(PacketType.PickInfoReply); | ||
8707 | |||
8708 | pickInfoReply.AgentData = new PickInfoReplyPacket.AgentDataBlock(); | ||
8709 | pickInfoReply.AgentData.AgentID = AgentId; | ||
8710 | |||
8711 | pickInfoReply.Data = new PickInfoReplyPacket.DataBlock(); | ||
8712 | pickInfoReply.Data.PickID = pickID; | ||
8713 | pickInfoReply.Data.CreatorID = creatorID; | ||
8714 | pickInfoReply.Data.TopPick = topPick; | ||
8715 | pickInfoReply.Data.ParcelID = parcelID; | ||
8716 | pickInfoReply.Data.Name = Utils.StringToBytes(name); | ||
8717 | pickInfoReply.Data.Desc = Utils.StringToBytes(desc); | ||
8718 | pickInfoReply.Data.SnapshotID = snapshotID; | ||
8719 | pickInfoReply.Data.User = Utils.StringToBytes(user); | ||
8720 | pickInfoReply.Data.OriginalName = Utils.StringToBytes(originalName); | ||
8721 | pickInfoReply.Data.SimName = Utils.StringToBytes(simName); | ||
8722 | pickInfoReply.Data.PosGlobal = new Vector3d(posGlobal); | ||
8723 | pickInfoReply.Data.SortOrder = sortOrder; | ||
8724 | pickInfoReply.Data.Enabled = enabled; | ||
8725 | |||
8726 | OutPacket(pickInfoReply, ThrottleOutPacketType.Task); | ||
8727 | } | ||
8728 | |||
8704 | public string Report() | 8729 | public string Report() |
8705 | { | 8730 | { |
8706 | LLPacketHandler handler = (LLPacketHandler) m_PacketHandler; | 8731 | LLPacketHandler handler = (LLPacketHandler) m_PacketHandler; |
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index 82d0198..5bd9412 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -1067,6 +1067,9 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
1067 | { | 1067 | { |
1068 | } | 1068 | } |
1069 | 1069 | ||
1070 | public void SendPickInfoReply(UUID pickID,UUID creatorID, bool topPick, UUID parcelID, string name, string desc, UUID snapshotID, string user, string originalName, string simName, Vector3 posGlobal, int sortOrder, bool enabled) | ||
1071 | { | ||
1072 | } | ||
1070 | #endregion | 1073 | #endregion |
1071 | } | 1074 | } |
1072 | } | 1075 | } |
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index a2ca008..0b0c55d 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -1067,6 +1067,9 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
1067 | { | 1067 | { |
1068 | } | 1068 | } |
1069 | 1069 | ||
1070 | public void SendPickInfoReply(UUID pickID,UUID creatorID, bool topPick, UUID parcelID, string name, string desc, UUID snapshotID, string user, string originalName, string simName, Vector3 posGlobal, int sortOrder, bool enabled) | ||
1071 | { | ||
1072 | } | ||
1070 | #endregion | 1073 | #endregion |
1071 | } | 1074 | } |
1072 | } | 1075 | } |