Hi guys I got a follow script and was able to fix the last problem but now. with the script that i have.
default
{
state_entry()
{
//llSetBuoyancy( .75 );
vector pos = llGetPos();
llSetStatus(STATUS_ROTATE_X | STATUS_ROTATE_Y, FALSE);
llSetStatus(STATUS_PHYSICS, TRUE);
llSleep(0.1);
llMoveToTarget(pos,0.1);
key id = llGetOwner();
llSensorRepeat("",id,AGENT,20,2*PI,.4);
}
sensor(integer total_number)
{
vector pos = llDetectedPos(0);
vector offset =<-1,0,0>;
pos+=offset;
llMoveToTarget(pos,.3);
}
}
Some times when i walk around my Eve start to follow other people i don't know if they are clicking on it or something. So Is there something that i need to change to it only followers the owner.
Thanks for your help.