diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index 89e7747..086103b 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -273,6 +273,26 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
273 | public event AvatarInterestUpdate OnAvatarInterestUpdate; | 273 | public event AvatarInterestUpdate OnAvatarInterestUpdate; |
274 | 274 | ||
275 | public event PlacesQuery OnPlacesQuery; | 275 | public event PlacesQuery OnPlacesQuery; |
276 | |||
277 | public event FindAgentUpdate OnFindAgentEvent; | ||
278 | public event TrackAgentUpdate OnTrackAgentEvent; | ||
279 | public event NewUserReport OnUserReportEvent; | ||
280 | public event SaveStateHandler OnSaveStateEvent; | ||
281 | public event GroupAccountSummaryRequest OnGroupAccountSummaryRequest; | ||
282 | public event GroupAccountDetailsRequest OnGroupAccountDetailsRequest; | ||
283 | public event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest; | ||
284 | public event FreezeUserUpdate OnParcelFreezeUserEvent; | ||
285 | public event EjectUserUpdate OnParcelEjectUserEvent; | ||
286 | public event ParcelBuyPass OnParcelBuyPass; | ||
287 | public event ParcelGodMark OnParcelGodMark; | ||
288 | public event GroupActiveProposalsRequest OnGroupActiveProposalsRequest; | ||
289 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | ||
290 | public event SimWideDeletesDelegate OnSimWideDeletes; | ||
291 | public event SendPostcard OnSendPostcard; | ||
292 | public event MuteListEntryUpdate OnUpdateMuteListEntryEvent; | ||
293 | public event MuteListEntryRemove OnRemoveMuteListEntryEvent; | ||
294 | public event GodlikeMessage onGodlikeMessageEvent; | ||
295 | public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent; | ||
276 | 296 | ||
277 | #pragma warning restore 67 | 297 | #pragma warning restore 67 |
278 | 298 | ||
@@ -1103,5 +1123,17 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
1103 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) | 1123 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) |
1104 | { | 1124 | { |
1105 | } | 1125 | } |
1126 | |||
1127 | public void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt) | ||
1128 | { | ||
1129 | } | ||
1130 | |||
1131 | public void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier) | ||
1132 | { | ||
1133 | } | ||
1134 | |||
1135 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) | ||
1136 | { | ||
1137 | } | ||
1106 | } | 1138 | } |
1107 | } | 1139 | } |