Search found 1 match

by Joelle Tardis
Thu Mar 04, 2021 2:51 pm
Forum: Scripting
Topic: Fiddling with NPC for the first time
Replies: 7
Views: 6560

Re: Fiddling with NPC for the first time

Scripts used - -

//
// osNpcCreate Script Exemple
// Author: djphil
//

key npc;

default
{
state_entry()
{
llSay(PUBLIC_CHANNEL, "Touch to see osNpcCreate usage.");
}

touch_start(integer number)
{
key toucher = llDetectedKey(0);
vector npcPos = llGetPos() + <1.0, 0.0, 1.0 ...