diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index 519779e..b5de355 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -294,6 +294,19 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
294 | LSL_List osGetLinkPrimitiveParams(int linknumber, LSL_List rules); | 294 | LSL_List osGetLinkPrimitiveParams(int linknumber, LSL_List rules); |
295 | 295 | ||
296 | /// <summary> | 296 | /// <summary> |
297 | /// Identical to llCreateLink() but does not require permission from the owner. | ||
298 | /// </summary> | ||
299 | /// <param name='target'></param> | ||
300 | /// <param name='parent'></param> | ||
301 | void osForceCreateLink(string target, int parent); | ||
302 | |||
303 | /// <summary> | ||
304 | /// Identical to llBreakLink() but does not require permission from the owner. | ||
305 | /// </summary> | ||
306 | /// <param name='linknum'></param> | ||
307 | void osForceBreakLink(int linknum); | ||
308 | |||
309 | /// <summary> | ||
297 | /// Check if the given key is an npc | 310 | /// Check if the given key is an npc |
298 | /// </summary> | 311 | /// </summary> |
299 | /// <param name="npc"></param> | 312 | /// <param name="npc"></param> |