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