The top script in the sim where I live had this:
CODE
while (llGetPos() != pos)
llSetPos(pos);
Ouch! That loop has been running for weeks. Fixed...
CODE
while (llVecDist(llGetPos(), pos) > 0.001)
llSetPos(pos);
These forums are CLOSED. Please visit the new forums HERE