OsNpcSit
From OpenSimulator
(Difference between revisions)
(Add exemples) |
m (Change See Also) |
||
(2 intermediate revisions by one user not shown) | |||
Line 16: | Line 16: | ||
// | // | ||
// osNpcSit (without llSitTarget) Script Exemple | // osNpcSit (without llSitTarget) Script Exemple | ||
− | // | + | // Author: djphil |
// | // | ||
Line 67: | Line 67: | ||
// | // | ||
// osNpcSit (with llSitTarget) Script Exemple | // osNpcSit (with llSitTarget) Script Exemple | ||
− | // | + | // Author: djphil |
// | // | ||
Line 117: | Line 117: | ||
|additional_info=This function was added in 0.7.2-post-fixes | |additional_info=This function was added in 0.7.2-post-fixes | ||
}} | }} | ||
+ | == See Also == | ||
+ | * [[osNpcSit]] | ||
+ | * [[osNpcStand]] |
Latest revision as of 18:54, 5 December 2020
osNpcSit(key npc, key target, integer options)
| |
| |
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
- osNpcSit
- osNpcStand