Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Is there an relay or email radars?

Kane Tank
Registered User
Join date: 5 Dec 2005
Posts: 117
12-21-2005 13:06
I live in sky box own like 20K sq.m of land need some radar using relays or emails...


Thanks
Jeffrey Gomez
Cubed™
Join date: 11 Jun 2004
Posts: 3,522
12-26-2005 16:14
Would you please elaborate on that?

The best way to relay information to a skybox would be to use repeaters that use llShout like so:

CODE

integer chan = 12345;

default
{
state_entry()
{
llListen(chan, "Repeater","","");
}
listen(integer chan, string name, key id, string msg)
{
llShout(chan + 1, msg);
}
}


Then set the things around a hundred meters or so apart. llShout has a range of about 100m.

Alternately, if the number of repeaters is prohibitive, you can indeed use llEmail, llGetNextEmail, and a timer to get the job done.
_____________________
---