|
|
|
dan linden made changes - 03/Oct/07 02:15 PM
Sidewinder Linden made changes - 15/Oct/07 02:58 PM
Andrew Linden made changes - 30/Oct/07 09:32 AM
Here is a better script with an "off" command and without the typo in the one above:
///////////////// default listen(integer channel, string name, key id, string msg) else { llSetColor(<1.0, 0.0, 0.0>, ALL_SIDES); llMoveToTarget(<175.0, 175.0, 55.0>, 0.05); } } } ////////////////
Rob Linden made changes - 22/Dec/07 01:38 AM
This issue has been bulk changed to fix pending.
WarKirby Magojiro made changes - 22/Dec/07 01:27 PM
Rob Linden made changes - 23/Dec/07 12:22 AM
Rob Linden made changes - 23/Dec/07 01:29 AM
Rob Linden made changes - 23/Dec/07 01:31 AM
This has been fixed and deployed (weeks ago). Incidentally, as of this comment the corresponding internal bug for this is still open because when trying to move the avatar up 1m it only goes up 0.75 meters, however I'm closing this one because the bug as described in the title is fixed.
Andrew Linden made changes - 06/Feb/08 01:37 PM
Sue Linden made changes - 13/Nov/08 12:08 PM
Sue Linden made changes - 13/Nov/08 04:38 PM
Alexa Linden made changes - 18/Nov/08 10:43 AM
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Ideally, a bug like this would have a "repro recipe" in the comments so I'll provide a candidate recipe:
(1) put the following script (modified from
SVC-734) on an attachment (note, this script is untested, but is probably almost working)://///////////////
integer On;
default
{ llSetColor(<1.0, 1.0, 1.0>, ALL_SIDES); llListen(0, "", llGetOwner(), ""); }{
state_entry()
listen(interger channel, string name, key id, string msg)
{ llSetColor(<0.0, 1.0, 0.0>, ALL_SIDES); llMoveToTarget(<175.0, 175.0, 50.0>, 0.05); }{
if (msg == "toggle")
{
On = !On;
if (!On)
else
{ llSetColor(<1.0, 0.0, 0.0>, ALL_SIDES); llMoveToTarget(<175.0, 175.0, 55.0>, 0.05); }}
}
}
////////////////
(2) stand somewhere around <175, 175, whatever>
(3) let your avatar come to a stop
(4) type the word "toggle" into chat
--> the avatar should move to one of the two "move-to" states