LlOverParcel: Difference between revisions
Jump to navigation
Jump to search
m lsl code tagging |
m OverParcel moved to LlOverParcel |
||
| (One intermediate revision by one other user not shown) | |||
| Line 13: | Line 13: | ||
{ | { | ||
</lsl> | </lsl> | ||
See function [[llOverMyLand]] | |||
Latest revision as of 19:08, 9 July 2008
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