Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Script sparkles

Caoimhe Armitage
Script Witch
Join date: 7 Sep 2004
Posts: 117
10-22-2004 21:28
Anybody know how to make the <expletive> sparkles that appear on execution of scripts go away? I'm building a fairly active sculpture, with multiple independent objects and those fairy lights are really crunching my buzz...

Sorry if this is an easy question. I don't even know what people call the visual effect...
Carnildo Greenacre
Flight Engineer
Join date: 15 Nov 2003
Posts: 1,044
10-22-2004 22:21
Stop having your scripts talk. The sparkles appear when something is chatting on channel 0; this could be from an llSay, llWhisper, or llShout, or it could be the script engine giving warnings about something.
_____________________
perl -le '$_ = 1; (1 x $_) !~ /^(11+)\1+$/ && print while $_++;'
Caoimhe Armitage
Script Witch
Join date: 7 Sep 2004
Posts: 117
10-24-2004 20:10
From: Carnildo Greenacre
Stop having your scripts talk. The sparkles appear when something is chatting on channel 0; this could be from an llSay, llWhisper, or llShout, or it could be the script engine giving warnings about something.


Excellent. Yes, I still have some debugging output floating around in them.

thanks for the time.