Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: C  |  size: 0.84 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. integer CHANNEL = 7743;
  2. default
  3. {
  4.     state_entry()
  5.     {
  6.         //llSay(0, "Hello, Avatar!");
  7.         llListen(CHANNEL, "","", "");
  8.     }
  9.  
  10.     touch_start(integer total_number)
  11.     {
  12.         llSay(0, "Active");
  13.     }
  14.    
  15.    
  16.     listen(integer channel, string name, key id, string message)   {
  17.          //llSay(0, message);  
  18.         if (channel == CHANNEL)  {
  19.         if (llSubStringIndex(message, "RLViBoobs") == 0){
  20.                  llOwnerSay( llDeleteSubString(message, 0,9));
  21.                  //llMessageLinked(LINK_SET,0,message,id);
  22.                  llSetColor(<1,0.3,0.3>, ALL_SIDES);
  23.                  llSleep(0.2);
  24.                  llSetColor(<1,1,1>, ALL_SIDES);
  25.                  
  26.                  //list params = llParseString2List(message, [" "], []);  
  27.                
  28.             }
  29.        
  30.         }
  31.     }
  32. }