Guest User

Untitled

a guest
Apr 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. integer chan = 2;
  2. key msg_sound = "22ef5532-5330-a420-a11c-29cce8092daa";
  3.  
  4. default
  5. {
  6.     state_entry()
  7.     {
  8.         llListen(chan, "","", "");
  9.     }
  10.    
  11.     listen( integer channel, string name, key id, string message )
  12.     {
  13.         llPlaySound( msg_sound, 0.5 );
  14.         llOwnerSay(name + ": "+message);
  15.     }
  16. }
Add Comment
Please, Sign In to add comment