OsNpcGetPos

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(New page: {{osslfunc |function_syntax=vector osNpcGetPos(key npc) |csharp_syntax= |description=Return the current position of the NPC. |threat_level= |ossl_example= |additional_info= }})
 
m (Change See Also)
 
(7 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
|csharp_syntax=
 
|csharp_syntax=
 
|description=Return the current position of the NPC.
 
|description=Return the current position of the NPC.
|threat_level=
+
|threat_level=High
|ossl_example=
+
|permissions=${OSSL|osslNPC}
|additional_info=
+
|delay=0
 +
|ossl_example=<source lang="lsl">
 +
//
 +
// osNpcGetPos Script Exemple
 +
// Author: djphil
 +
//
 +
 +
key npc;
 +
 +
default
 +
{
 +
    state_entry()
 +
    {
 +
        llSay(PUBLIC_CHANNEL, "Touch to see osNpcGetPos 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);
 +
        osNpcSay(npc, "Hello world!");
 +
        osNpcSay(npc, "My current position is: " + (string)osNpcGetPos(npc));
 +
    }
 +
 +
    touch_start(integer number)
 +
    {
 +
        osNpcSay(npc, "Goodbye!");
 +
        llSetTimerEvent(0.0);
 +
        osNpcRemove(npc);
 +
        npc = NULL_KEY;
 +
        state default;
 +
    }
 +
}
 +
</source>
 +
|additional_info=This function was added in 0.7.2-post-fixes
 
}}
 
}}
 +
== See Also ==
 +
* [[osNpcGetPos]]
 +
* [[osNpcGetRot]]
 +
* [[osNpcSetRot]]
 +
* [[osNpcMoveTo]]
 +
* [[osNpcMoveToTarget]]
 +
* [[osNpcStopMoveToTarget]]

Latest revision as of 19:50, 5 December 2020

vector osNpcGetPos(key npc)
Return the current position of the NPC.
Threat Level High
Permissions ${OSSL|osslNPC}
Extra Delay 0 seconds
Example(s)
//
// osNpcGetPos Script Exemple
// Author: djphil
//
 
key npc;
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osNpcGetPos 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);
        osNpcSay(npc, "Hello world!");
        osNpcSay(npc, "My current position is: " + (string)osNpcGetPos(npc));
    }
 
    touch_start(integer number)
    {
        osNpcSay(npc, "Goodbye!");
        llSetTimerEvent(0.0);
        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