aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs')
-rw-r--r--OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs16
1 files changed, 13 insertions, 3 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index 172d012..58e3de9 100644
--- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
+++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
@@ -83,7 +83,7 @@ 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 OnAgentUpdate; 87 public event UpdateAgent OnAgentUpdate;
88 public event AgentRequestSit OnAgentRequestSit; 88 public event AgentRequestSit OnAgentRequestSit;
89 public event AgentSit OnAgentSit; 89 public event AgentSit OnAgentSit;
@@ -194,6 +194,8 @@ namespace OpenSim.Region.Examples.SimpleModule
194 public event ObjectBuy OnObjectBuy; 194 public event ObjectBuy OnObjectBuy;
195 public event BuyObjectInventory OnBuyObjectInventory; 195 public event BuyObjectInventory OnBuyObjectInventory;
196 public event AgentSit OnUndo; 196 public event AgentSit OnUndo;
197 public event AgentSit OnRedo;
198 public event LandUndo OnLandUndo;
197 199
198 public event ForceReleaseControls OnForceReleaseControls; 200 public event ForceReleaseControls OnForceReleaseControls;
199 201
@@ -351,7 +353,11 @@ namespace OpenSim.Region.Examples.SimpleModule
351 get { return true; } 353 get { return true; }
352 set { } 354 set { }
353 } 355 }
354 356 public bool IsLoggingOut
357 {
358 get { return false; }
359 set { }
360 }
355 public UUID ActiveGroupId 361 public UUID ActiveGroupId
356 { 362 {
357 get { return UUID.Zero; } 363 get { return UUID.Zero; }
@@ -653,7 +659,7 @@ namespace OpenSim.Region.Examples.SimpleModule
653 659
654 if (OnCompleteMovementToRegion != null) 660 if (OnCompleteMovementToRegion != null)
655 { 661 {
656 OnCompleteMovementToRegion(); 662 OnCompleteMovementToRegion(this);
657 } 663 }
658 } 664 }
659 public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) 665 public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID)
@@ -1143,5 +1149,9 @@ namespace OpenSim.Region.Examples.SimpleModule
1143 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) 1149 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1144 { 1150 {
1145 } 1151 }
1152
1153 public void SendChangeUserRights(UUID agentID, UUID friendID, int rights)
1154 {
1155 }
1146 } 1156 }
1147} 1157}