OsForceOtherSit
From OpenSimulator
(Difference between revisions)
(First stage documentation of function) |
|||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
− | |function_syntax=void osForceOtherSit( | + | |function_syntax=void osForceOtherSit(key avatar) |
− | void osForceOtherSit( | + | void osForceOtherSit(key avatar, string target) |
|csharp_syntax= | |csharp_syntax= | ||
|description=Forces a sit of targeted avatar onto prim. | |description=Forces a sit of targeted avatar onto prim. |
Revision as of 20:50, 23 October 2017
void osForceOtherSit(key avatar)
void osForceOtherSit(key avatar, string target) | |
Forces a sit of targeted avatar onto prim.
In OpenSimulator 0.8.0.1. | |
Threat Level | VeryHigh. is unknown threat level |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
//Simple example for osForceOtherSit default { state_entry() { llSitTarget(<0.0, 0.0, 1.0>, ZERO_ROTATION); //The vector's components must not all be set to 0 for effect to take place. } touch_start(integer num) { osForceOtherSit(llDetectedKey(0)); } } |