Difference between revisions of "LlOverParcel"

From Second Life Wiki
Jump to navigation Jump to search
Line 6: Line 6:
agent= Key of an detected agent
agent= Key of an detected agent


if (llOverParcel(llDetectedKey(0), llGetPos()) == TRUE)
if (llOverParcel(llDetectedKey(0), llGetPos()) == TRUE)
}  
}  
   llInstandMessage(llDetectedKey(0), "Hello!");
   llInstandMessage(llDetectedKey(0), "Hello!");
{
{

Revision as of 10:23, 6 July 2007

It would be great to check if an agent is over a parcel.

llOverParcel(key agent, vektor posision);

position = Vector in the parcel agent= Key of an detected agent

if (llOverParcel(llDetectedKey(0), llGetPos()) == TRUE)
} 
  llInstandMessage(llDetectedKey(0), "Hello!");
{