User:Pete Olihenge
Random negative chat channel
This LSL code snippet should, according to my calculations, return a random negative integer in the range -2,000,000,000 to -1,000,000, suitable for use as a dialog chat channel.
<lsl> integer GetDialogChannel () {
return (integer) llFrand (-1999000001.0) - 1000000;
} </lsl>