This is an simple but handy group invitation script,
You make a sign and put this script in.
insert your email, group name and after
how many hours you want to reciefe an email.
the script will collect the names, check if they are on the email list
and send it every xx hours to your email.
so this is a handy and free second life group invite script.
// Copyright (C) 2007 Flater Baxter.
//
// you may use and modify it
// don't use for commercial products.
// more scripts on our website
// HTTP://WWW.LOOQZ.EU
// Keep this text in place
// SETTINGS
integer hours = 1; // After how many hours an email is send
string email1 = "
This e-mail address is being protected from spam bots, you need JavaScript enabled to view it
" ;//your email
string groupname = "THE BEST SL GROUP"; // your group name
make_email() /// CONFERT THE LIST OF NAMES TO A TEXT STRING
{
len =llGetListLength(names);
integer i;
emailtext = "Invitation list for group "+ groupname+" \n \n NAMES: \n \n";
for(i=0;i<len;i++){
emailtext += llList2String(names,i)+" \n" ;
}
emailtext += "\n total: "+ (string)len ;
}
default
{
state_entry()
{
llSetTimerEvent(3600);///TIMER TO 1 HOUR
}
if ( llListFindList(names,[joinname]) == -1){//check if the name is not on the list
names = (names = [])+names+ joinname;
llInstantMessage(joiner,"dear "+joinname+" jou will recieve an invitation soon");
}
else llInstantMessage(joiner,"dear "+joinname+" jou are already on the invitation list");