diff options
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs')
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index d2b0161..09611af 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -83,7 +83,8 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
83 | public event DeRezObject OnDeRezObject; | 83 | public event DeRezObject OnDeRezObject; |
84 | public event Action<IClientAPI> OnRegionHandShakeReply; | 84 | public event Action<IClientAPI> OnRegionHandShakeReply; |
85 | public event GenericCall2 OnRequestWearables; | 85 | public event GenericCall2 OnRequestWearables; |
86 | public event GenericCall2 OnCompleteMovementToRegion; | 86 | public event GenericCall1 OnCompleteMovementToRegion; |
87 | public event UpdateAgent OnPreAgentUpdate; | ||
87 | public event UpdateAgent OnAgentUpdate; | 88 | public event UpdateAgent OnAgentUpdate; |
88 | public event AgentRequestSit OnAgentRequestSit; | 89 | public event AgentRequestSit OnAgentRequestSit; |
89 | public event AgentSit OnAgentSit; | 90 | public event AgentSit OnAgentSit; |
@@ -128,6 +129,7 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
128 | public event Action<UUID> OnRemoveAvatar; | 129 | public event Action<UUID> OnRemoveAvatar; |
129 | 130 | ||
130 | public event CreateNewInventoryItem OnCreateNewInventoryItem; | 131 | public event CreateNewInventoryItem OnCreateNewInventoryItem; |
132 | public event LinkInventoryItem OnLinkInventoryItem; | ||
131 | public event CreateInventoryFolder OnCreateNewInventoryFolder; | 133 | public event CreateInventoryFolder OnCreateNewInventoryFolder; |
132 | public event UpdateInventoryFolder OnUpdateInventoryFolder; | 134 | public event UpdateInventoryFolder OnUpdateInventoryFolder; |
133 | public event MoveInventoryFolder OnMoveInventoryFolder; | 135 | public event MoveInventoryFolder OnMoveInventoryFolder; |
@@ -353,7 +355,11 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
353 | get { return true; } | 355 | get { return true; } |
354 | set { } | 356 | set { } |
355 | } | 357 | } |
356 | 358 | public bool IsLoggingOut | |
359 | { | ||
360 | get { return false; } | ||
361 | set { } | ||
362 | } | ||
357 | public UUID ActiveGroupId | 363 | public UUID ActiveGroupId |
358 | { | 364 | { |
359 | get { return UUID.Zero; } | 365 | get { return UUID.Zero; } |
@@ -655,7 +661,7 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
655 | 661 | ||
656 | if (OnCompleteMovementToRegion != null) | 662 | if (OnCompleteMovementToRegion != null) |
657 | { | 663 | { |
658 | OnCompleteMovementToRegion(); | 664 | OnCompleteMovementToRegion(this); |
659 | } | 665 | } |
660 | } | 666 | } |
661 | public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) | 667 | public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) |
@@ -1145,5 +1151,13 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
1145 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1151 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1146 | { | 1152 | { |
1147 | } | 1153 | } |
1154 | |||
1155 | public void SendChangeUserRights(UUID agentID, UUID friendID, int rights) | ||
1156 | { | ||
1157 | } | ||
1158 | |||
1159 | public void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId) | ||
1160 | { | ||
1161 | } | ||
1148 | } | 1162 | } |
1149 | } | 1163 | } |