diff options
author | Teravus Ovares | 2007-11-24 03:28:42 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-24 03:28:42 +0000 |
commit | 944b118c622159c87e7f89c05892458d88797d58 (patch) | |
tree | 576fff3c7791e3df87425d5da862f5c70ec5c0f6 /OpenSim/Region/Examples/SimpleApp | |
parent | Make remoting errors because of missing adjacent regions a little more user a... (diff) | |
download | opensim-SC_OLD-944b118c622159c87e7f89c05892458d88797d58.zip opensim-SC_OLD-944b118c622159c87e7f89c05892458d88797d58.tar.gz opensim-SC_OLD-944b118c622159c87e7f89c05892458d88797d58.tar.bz2 opensim-SC_OLD-944b118c622159c87e7f89c05892458d88797d58.tar.xz |
* Added a way for the Region master user to kick individual users from their sim with a custom message. Their client says, "You've been logged off of secondlife, <Your custom message here> and logs them off.
* Added a way for the Region master user to kick *ALL* users from *ALL* their regions in the estate with a custom message.
Diffstat (limited to 'OpenSim/Region/Examples/SimpleApp')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs index b8800a8..550b232 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | |||
@@ -76,6 +76,7 @@ namespace SimpleApp | |||
76 | public event Action<IClientAPI> OnRequestAvatarsData; | 76 | public event Action<IClientAPI> OnRequestAvatarsData; |
77 | public event AddNewPrim OnAddPrim; | 77 | public event AddNewPrim OnAddPrim; |
78 | public event RequestGodlikePowers OnRequestGodlikePowers; | 78 | public event RequestGodlikePowers OnRequestGodlikePowers; |
79 | public event GodKickUser OnGodKickUser; | ||
79 | public event ObjectDuplicate OnObjectDuplicate; | 80 | public event ObjectDuplicate OnObjectDuplicate; |
80 | public event UpdateVector OnGrabObject; | 81 | public event UpdateVector OnGrabObject; |
81 | public event ObjectSelect OnDeGrabObject; | 82 | public event ObjectSelect OnDeGrabObject; |
@@ -181,6 +182,10 @@ namespace SimpleApp | |||
181 | { | 182 | { |
182 | } | 183 | } |
183 | 184 | ||
185 | public virtual void Kick(string message) | ||
186 | { | ||
187 | } | ||
188 | |||
184 | public virtual void SendStartPingCheck(byte seq) | 189 | public virtual void SendStartPingCheck(byte seq) |
185 | { | 190 | { |
186 | } | 191 | } |