OsNpcWhisper
From OpenSimulator
Jump to navigationJump to search
osNpcWhisper(key npc, int channel, string message)
| |
| npc whispers message on the given channel. | |
| Threat Level | High |
| Permissions | ${OSSL|osslNPC} |
| Extra Delay | 0 seconds |
| Example(s) | |
//
// osNpcWhisper Script Exemple
// Author: djphil
//
key npc;
default
{
state_entry()
{
llSay(PUBLIC_CHANNEL, "Touch to see osNpcWhisper 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);
osNpcWhisper(npc, PUBLIC_CHANNEL, "Hello world!");
osNpcWhisper(npc, PUBLIC_CHANNEL, "I Love OpenSimulator!");
osNpcWhisper(npc, PUBLIC_CHANNEL, "The Open Source Metaverse!");
}
touch_start(integer number)
{
osNpcWhisper(npc, PUBLIC_CHANNEL, "Goodbye!");
llSetTimerEvent(0.0);
osNpcRemove(npc);
npc = NULL_KEY;
state default;
}
}
| |
| Notes | |
| This function was added in 0.7.4-post-fixes | |
See Also