aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
diff options
context:
space:
mode:
authorUbitUmarov2019-02-20 02:06:25 +0000
committerUbitUmarov2019-02-20 02:06:25 +0000
commitfdf5274c257286d6e438a337e61761028ff8003a (patch)
tree56d6f40915a0bf02b13a3b9a16c9f0c72481aade /OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
parentoops do show the object delete (diff)
downloadopensim-SC-fdf5274c257286d6e438a337e61761028ff8003a.zip
opensim-SC-fdf5274c257286d6e438a337e61761028ff8003a.tar.gz
opensim-SC-fdf5274c257286d6e438a337e61761028ff8003a.tar.bz2
opensim-SC-fdf5274c257286d6e438a337e61761028ff8003a.tar.xz
add osKickAvatar(LSL_Key agentKey, string alert)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs15
1 files changed, 8 insertions, 7 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
index 12e8103..67c0261 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -379,15 +379,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
379 379
380 int osGetSimulatorMemory(); 380 int osGetSimulatorMemory();
381 int osGetSimulatorMemoryKB(); 381 int osGetSimulatorMemoryKB();
382 void osKickAvatar(string FirstName,string SurName,string alert); 382 void osKickAvatar(string FirstName, string SurName, string alert);
383 void osKickAvatar(LSL_Key agentId, string alert);
383 void osSetSpeed(string UUID, LSL_Float SpeedModifier); 384 void osSetSpeed(string UUID, LSL_Float SpeedModifier);
384 void osSetOwnerSpeed(LSL_Float SpeedModifier); 385 void osSetOwnerSpeed(LSL_Float SpeedModifier);
385 LSL_Float osGetHealth(string avatar); 386 LSL_Float osGetHealth(key agentId);
386 void osCauseHealing(string avatar, double healing); 387 void osCauseHealing(key agentId, LSL_Float healing);
387 void osSetHealth(string avatar, double health); 388 void osSetHealth(key agentId, LSL_Float health);
388 void osSetHealRate(string avatar, double health); 389 void osSetHealRate(key agentId, LSL_Float health);
389 LSL_Float osGetHealRate(string avatar); 390 LSL_Float osGetHealRate(key agentId);
390 void osCauseDamage(string avatar, double damage); 391 void osCauseDamage(key avatar, LSL_Float damage);
391 void osForceOtherSit(string avatar); 392 void osForceOtherSit(string avatar);
392 void osForceOtherSit(string avatar, string target); 393 void osForceOtherSit(string avatar, string target);
393 LSL_List osGetPrimitiveParams(LSL_Key prim, LSL_List rules); 394 LSL_List osGetPrimitiveParams(LSL_Key prim, LSL_List rules);