LlOverParcel

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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

llOverParcel(key agent, vektor posision); - Should return TRUE or FALSE

agent = Key of an detected agent

position = Vector in the parcel

<lsl>

if (llOverParcel(llDetectedKey(0), llGetPos()) == TRUE)
} 
  llInstantMessage(llDetectedKey(0), "Welcome on my rented land!");
{

</lsl>

See function llOverMyLand