Difference between revisions of "RegionSitTeleport"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with "{{LSL Header}} *Created by User:Vincent_Nacon ==RegionSitTeleport== It's a very simple and clean script to make quick sit/unsit teleport to given position based on reading…")
 
m (→‎RegionSitTeleport: Replace <source> with <syntaxhighlight>)
 
(4 intermediate revisions by 3 users not shown)
Line 6: Line 6:


It's a very simple and clean script to make quick sit/unsit teleport to given position based on reading current prim's description.
It's a very simple and clean script to make quick sit/unsit teleport to given position based on reading current prim's description.
<lsl>
<syntaxhighlight lang="lsl2">
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////
//            Written by Vincent Nacon
//            Written by Vincent Nacon
//          Released into the Public Domain
//          Released into the Public Domain
//  I'm sick and tired of WarpPos and <0,0,0> bug.
//  I'm sick and tired of WarpPos and <0,0,0> bug.
//                    2/26/2012
//                    Feb 26th 2012
////////////////////////////////////////////////////////
////////////////////////////////////////////////////////


Line 17: Line 17:
//Just place position (in vector form) where you want to drop avatar at in the prim's description.
//Just place position (in vector form) where you want to drop avatar at in the prim's description.


default{
default
     state_entry(){
{
         llSitTarget(<0,0,0.1>,<0,0,0,1>);
     changed(integer change)
    {
         vector targetPosition = (vector)llGetObjectDesc();
 
        key sittingAvatar = llAvatarOnSitTarget();
 
        if(sittingAvatar)
        {
            vector positionToReturnTo = llGetPos();
 
            llSetRegionPos(targetPosition);
            llUnSit(sittingAvatar);
            llSetRegionPos(positionToReturnTo);
        }
     }
     }
     changed(integer C){
 
         vector loc= (vector)llGetObjectDesc();
     state_entry()
        key ID = llAvatarOnSitTarget();
    {
        if(ID){
         llSitTarget(<0.0, 0.0, 0.1>, ZERO_ROTATION);
            vector Return = llGetPos();
            llSetRegionPos(loc);
            llUnSit(ID);
            llSetRegionPos(Return);
        }
     }
     }
}
}
 
</syntaxhighlight>
</lsl>
{{LSLC|Library|RegionSitTeleport}}
{{LSLC|Library|RegionSitTeleport}}

Latest revision as of 17:40, 26 September 2022

RegionSitTeleport

It's a very simple and clean script to make quick sit/unsit teleport to given position based on reading current prim's description.

////////////////////////////////////////////////////////
//             Written by Vincent Nacon
//          Released into the Public Domain
//   I'm sick and tired of WarpPos and <0,0,0> bug.
//                    Feb 26th 2012
////////////////////////////////////////////////////////

//What to do?
//Just place position (in vector form) where you want to drop avatar at in the prim's description.

default
{
    changed(integer change)
    {
        vector targetPosition = (vector)llGetObjectDesc();

        key sittingAvatar = llAvatarOnSitTarget();

        if(sittingAvatar)
        {
            vector positionToReturnTo = llGetPos();

            llSetRegionPos(targetPosition);
            llUnSit(sittingAvatar);
            llSetRegionPos(positionToReturnTo);
        }
    }

    state_entry()
    {
        llSitTarget(<0.0, 0.0, 0.1>, ZERO_ROTATION);
    }
}