Follower script
This script was extracted from the Batman Follower v1.2.
To set the distance between the follower and the followee, change the value denoted by # in llMoveToTarget(pos,#). This script has it set at 10 centimeters.
default
{
state_entry()
{
vector pos = llGetPos();
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,0.1);
}
}
Note: The wiki code on this wiki is not working properly. Include the default { and the last } when copying and pasting this script into SL.