:...default
{
state_entry()
{
vector pos = llGetPos();
llSetStatus(STATUS_ROTATE_Z, FALSE);
llSetStatus(STATUS_PHYSICS, TRUE);
llSleep(0.1);
llMoveToTarget(pos,0.1);
key id = llGetOwner();
llSensorRepeat("","",AGENT,200000,7000*PI,.4);
}
sensor(integer total_number)
{
vector pos = llDetectedPos(0);
vector offset =<-1,0,1>;
pos+=offset;
llMoveToTarget(pos,.3);
}
}
...with this (the only script I could find with llOverMyLand):
default {
touch_start(integer num_detected) {
// check if the touching person is over the script owner's land
if (llOverMyLand(llDetectedKey(0))) {
llSay(0, llDetectedName(0) + " is on my land."
;} else {
llSay(0, llDetectedName(0) + " is NOT on my land."
;}
}
}
...but I'm a total scripting noob -- can anybody help?
Thanks!