Collision message sender

From Second Life Wiki
Revision as of 12:29, 20 December 2011 by Taff Nouvelle (talk | contribs) (Collision message sender with a memory to send the message only once.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Receiving a message every time that you step on a prim is annoying, so this script uses a short name store to check that the avatar has not been sent the message in the last 10 minutes. As an avatar stands on or hits against the prim, the timer is reset to a further 10 minutes, at the end of the timer period, the name list is cleared.

<lsl>

// The script written by Taff Nouvelle. // Use it in any way that you want // but please leave this header intact.


string message = " Merry Christmas "; // put your message here. list users; string user; default {

   state_entry()
   {
       
   }
   collision_start(integer num_detected)   // check for an avatar colliding with the prim.
   {
       user = llDetectedName(0);
       if (llListFindList(users,[user]) == -1)// look at the list, if the name is not there,
       {
           llSay(0, message + user);       // send the message to the detected avatar.
           users += user;                  // add the users name to a list so they only get the message once.
           llSetTimerEvent(0);             // reset and restart the timer to 10 minutes
           llSetTimerEvent(600);           // change the number for the number of seconds before clearing the list.
       }
   }
   timer()
   {
       llSetTimerEvent(0);                 // turn the timer off
       users = [];                         // clear the list
   }

}