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.cs14
1 files changed, 11 insertions, 3 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs
index ce9362f..a1957d1 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;
@@ -353,7 +353,11 @@ namespace OpenSim.Region.Examples.SimpleModule
353 get { return true; } 353 get { return true; }
354 set { } 354 set { }
355 } 355 }
356 356 public bool IsLoggingOut
357 {
358 get { return false; }
359 set { }
360 }
357 public UUID ActiveGroupId 361 public UUID ActiveGroupId
358 { 362 {
359 get { return UUID.Zero; } 363 get { return UUID.Zero; }
@@ -655,7 +659,7 @@ namespace OpenSim.Region.Examples.SimpleModule
655 659
656 if (OnCompleteMovementToRegion != null) 660 if (OnCompleteMovementToRegion != null)
657 { 661 {
658 OnCompleteMovementToRegion(); 662 OnCompleteMovementToRegion(this);
659 } 663 }
660 } 664 }
661 public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) 665 public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID)
@@ -1145,5 +1149,9 @@ namespace OpenSim.Region.Examples.SimpleModule
1145 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) 1149 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1146 { 1150 {
1147 } 1151 }
1152
1153 public void SendChangeUserRights(UUID agentID, UUID friendID, int rights)
1154 {
1155 }
1148 } 1156 }
1149} 1157}