OsNpcSit

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Change See Also)
 
(13 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{content}}
 
 
{{osslfunc
 
{{osslfunc
 
|threat_level=High
 
|threat_level=High
 +
|permissions=${OSSL|osslNPC}
 +
|delay=0
 
|function_syntax=osNpcSit(key npc, key target, integer options)
 
|function_syntax=osNpcSit(key npc, key target, integer options)
|csharp_syntax=void osNpcSit(LSL_Key npc, LSL_Key target, int options)
 
 
|ossl_example=
 
|ossl_example=
 
|description=
 
|description=
 
*Makes an NPC sit on an object.  
 
*Makes an NPC sit on an object.  
*Options - OS_NPC_SIT_NOW.  Makes the npc instantly sit on the prim, it will not walk/fly over if it is far awayCurrently the only option since this function is in development.
+
*Options - OS_NPC_SIT_NOW.  Makes the npc instantly sit on the prim if possibleThis is the only option available and is currently always on no matter what is actually specified in the options field.
|additional_info=This function is currently under development, and is not guaranteed to work!
+
** If the prim has a sit target then sit always succeeds no matter the distance between the NPC and the prim.
Sitting only works if the prim has a sit target.
+
** If the prim has no sit target then
|
+
*** If the prim is within 10 meters of the NPC then the sit will always succeed.
 +
*** At OpenSimulator 0.7.5 and later, if the prim is further than 10 meters away then nothing will happen.
 +
*** Before OpenSimulator 0.7.5, if the prim is further than 10 meters away then the avatar will attempt to walk over to the prim but will not sit when it reaches it.
 +
|ossl_example=<source lang="lsl">
 +
//
 +
// osNpcSit (without llSitTarget) Script Exemple
 +
// Author: djphil
 +
//
 +
 
 +
key npc;
 +
 
 +
default
 +
{
 +
    state_entry()
 +
    {
 +
        llSay(PUBLIC_CHANNEL, "Touch to see osNpcSit (without llSitTarget) usage.");
 +
    }
 +
 
 +
    touch_start(integer number)
 +
    {
 +
        key toucher = llDetectedKey(0);
 +
        vector npcPos = llGetPos() + <1.0, 0.0, 1.0>;
 +
        osAgentSaveAppearance(toucher, "appearance");
 +
        npc = osNpcCreate("ImYour", "Clone", npcPos, "appearance");
 +
        state hasNPC;
 +
    }
 +
}
 +
 
 +
state hasNPC
 +
{
 +
    state_entry()
 +
    {
 +
        llSetTimerEvent(5.0);
 +
    }
 +
 
 +
    timer()
 +
    {
 +
        llSetTimerEvent(0.0);
 +
        osNpcSit(npc, llGetKey(), OS_NPC_SIT_NOW);
 +
        osNpcSay(npc, "Hello world!");
 +
    }
 +
 
 +
    touch_start(integer number)
 +
    {
 +
        osNpcSay(npc, "Goodbye!");
 +
        llSetTimerEvent(0.0);
 +
        osNpcStand(npc);
 +
        osNpcRemove(npc);
 +
        npc = NULL_KEY;
 +
        state default;
 +
    }
 +
}
 +
</source>
 +
'''With llSitTarget:'''
 +
<source lang="lsl">
 +
//
 +
// osNpcSit (with llSitTarget) Script Exemple
 +
// Author: djphil
 +
//
 +
 
 +
key npc;
 +
 
 +
default
 +
{
 +
    state_entry()
 +
    {
 +
        llSay(PUBLIC_CHANNEL, "Touch to see osNpcSit (with llSitTarget) usage.");
 +
        llSitTarget(<0.3, 0.0, 0.55>, ZERO_ROTATION);
 +
    }
 +
 
 +
    touch_start(integer number)
 +
    {
 +
        key toucher = llDetectedKey(0);
 +
        vector npcPos = llGetPos() + <1.0, 0.0, 1.0>;
 +
        osAgentSaveAppearance(toucher, "appearance");
 +
        npc = osNpcCreate("ImYour", "Clone", npcPos, "appearance");
 +
        state hasNPC;
 +
    }
 +
}
 +
 
 +
state hasNPC
 +
{
 +
    state_entry()
 +
    {
 +
        llSetTimerEvent(5.0);
 +
    }
 +
 
 +
    timer()
 +
    {
 +
        llSetTimerEvent(0.0);
 +
        osNpcSit(npc, llGetKey(), OS_NPC_SIT_NOW);
 +
        osNpcSay(npc, "Hello world!");
 +
    }
 +
 
 +
    touch_start(integer number)
 +
    {
 +
        osNpcSay(npc, "Goodbye!");
 +
        llSetTimerEvent(0.0);
 +
        osNpcStand(npc);
 +
        osNpcRemove(npc);
 +
        npc = NULL_KEY;
 +
        state default;
 +
    }
 +
}
 +
</source>
 +
|additional_info=This function was added in 0.7.2-post-fixes
 
}}
 
}}
 +
== See Also ==
 +
* [[osNpcSit]]
 +
* [[osNpcStand]]

Latest revision as of 19:54, 5 December 2020

osNpcSit(key npc, key target, integer options)
  • Makes an NPC sit on an object.
  • Options - OS_NPC_SIT_NOW. Makes the npc instantly sit on the prim if possible. This is the only option available and is currently always on no matter what is actually specified in the options field.
    • If the prim has a sit target then sit always succeeds no matter the distance between the NPC and the prim.
    • If the prim has no sit target then
      • If the prim is within 10 meters of the NPC then the sit will always succeed.
      • At OpenSimulator 0.7.5 and later, if the prim is further than 10 meters away then nothing will happen.
      • Before OpenSimulator 0.7.5, if the prim is further than 10 meters away then the avatar will attempt to walk over to the prim but will not sit when it reaches it.
Threat Level High
Permissions ${OSSL|osslNPC}
Extra Delay 0 seconds
Example(s)
//
// osNpcSit (without llSitTarget) Script Exemple
// Author: djphil
//
 
key npc;
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osNpcSit (without llSitTarget) usage.");
    }
 
    touch_start(integer number)
    {
        key toucher = llDetectedKey(0);
        vector npcPos = llGetPos() + <1.0, 0.0, 1.0>;
        osAgentSaveAppearance(toucher, "appearance");
        npc = osNpcCreate("ImYour", "Clone", npcPos, "appearance");
        state hasNPC;
    }
}
 
state hasNPC
{
    state_entry()
    {
        llSetTimerEvent(5.0);
    }
 
    timer()
    {
        llSetTimerEvent(0.0);
        osNpcSit(npc, llGetKey(), OS_NPC_SIT_NOW);
        osNpcSay(npc, "Hello world!");
    }
 
    touch_start(integer number)
    {
        osNpcSay(npc, "Goodbye!");
        llSetTimerEvent(0.0);
        osNpcStand(npc);
        osNpcRemove(npc);
        npc = NULL_KEY;
        state default;
    }
}

With llSitTarget:

//
// osNpcSit (with llSitTarget) Script Exemple
// Author: djphil
//
 
key npc;
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osNpcSit (with llSitTarget) usage.");
        llSitTarget(<0.3, 0.0, 0.55>, ZERO_ROTATION);
    }
 
    touch_start(integer number)
    {
        key toucher = llDetectedKey(0);
        vector npcPos = llGetPos() + <1.0, 0.0, 1.0>;
        osAgentSaveAppearance(toucher, "appearance");
        npc = osNpcCreate("ImYour", "Clone", npcPos, "appearance");
        state hasNPC;
    }
}
 
state hasNPC
{
    state_entry()
    {
        llSetTimerEvent(5.0);
    }
 
    timer()
    {
        llSetTimerEvent(0.0);
        osNpcSit(npc, llGetKey(), OS_NPC_SIT_NOW);
        osNpcSay(npc, "Hello world!");
    }
 
    touch_start(integer number)
    {
        osNpcSay(npc, "Goodbye!");
        llSetTimerEvent(0.0);
        osNpcStand(npc);
        osNpcRemove(npc);
        npc = NULL_KEY;
        state default;
    }
}
Notes
This function was added in 0.7.2-post-fixes


[edit] See Also

Personal tools
General
About This Wiki