diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs index 9ca5a0a..7cf8f7e 100644 --- a/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs +++ b/OpenSim/Region/OptionalModules/World/NPC/NPCAvatar.cs | |||
@@ -379,6 +379,26 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
379 | public event AvatarInterestUpdate OnAvatarInterestUpdate; | 379 | public event AvatarInterestUpdate OnAvatarInterestUpdate; |
380 | 380 | ||
381 | public event PlacesQuery OnPlacesQuery; | 381 | public event PlacesQuery OnPlacesQuery; |
382 | |||
383 | public event FindAgentUpdate OnFindAgentEvent; | ||
384 | public event TrackAgentUpdate OnTrackAgentEvent; | ||
385 | public event NewUserReport OnUserReportEvent; | ||
386 | public event SaveStateHandler OnSaveStateEvent; | ||
387 | public event GroupAccountSummaryRequest OnGroupAccountSummaryRequest; | ||
388 | public event GroupAccountDetailsRequest OnGroupAccountDetailsRequest; | ||
389 | public event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest; | ||
390 | public event FreezeUserUpdate OnParcelFreezeUserEvent; | ||
391 | public event EjectUserUpdate OnParcelEjectUserEvent; | ||
392 | public event ParcelBuyPass OnParcelBuyPass; | ||
393 | public event ParcelGodMark OnParcelGodMark; | ||
394 | public event GroupActiveProposalsRequest OnGroupActiveProposalsRequest; | ||
395 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | ||
396 | public event SimWideDeletesDelegate OnSimWideDeletes; | ||
397 | public event SendPostcard OnSendPostcard; | ||
398 | public event MuteListEntryUpdate OnUpdateMuteListEntryEvent; | ||
399 | public event MuteListEntryRemove OnRemoveMuteListEntryEvent; | ||
400 | public event GodlikeMessage onGodlikeMessageEvent; | ||
401 | public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent; | ||
382 | 402 | ||
383 | #pragma warning restore 67 | 403 | #pragma warning restore 67 |
384 | 404 | ||
@@ -1108,5 +1128,17 @@ namespace OpenSim.Region.OptionalModules.World.NPC | |||
1108 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) | 1128 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) |
1109 | { | 1129 | { |
1110 | } | 1130 | } |
1131 | |||
1132 | public void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt) | ||
1133 | { | ||
1134 | } | ||
1135 | |||
1136 | public void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier) | ||
1137 | { | ||
1138 | } | ||
1139 | |||
1140 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) | ||
1141 | { | ||
1142 | } | ||
1111 | } | 1143 | } |
1112 | } | 1144 | } |