OsForceOtherSit
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
|||
| Line 10: | Line 10: | ||
In OpenSimulator 0.8.0.1. | In OpenSimulator 0.8.0.1. | ||
| − | |threat_level=VeryHigh | + | |threat_level=VeryHigh |
| + | |permissions=false | ||
| + | |delay=0 | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
Revision as of 07:45, 25 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 |
| Permissions | Use of this function is always disabled by default |
| Extra Delay | 0 seconds |
| 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)); } } | |