03-23-2006 12:56
I think it's time we had some threads about scripts identified as unnecessarily greedy by the new estate tool. I'll start...

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);
_____________________