Advertisement
Guest User

Untitled

a guest
Mar 18th, 2017
864
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. ////////////////////////////////////////////////////////////////////
  2. ////////////////// [ MESH WORKSHOP SCRIPTS ]///////////////////////
  3. //////////////////////////////////////////////////////////////////
  4.  
  5. integer ch=-13579; //Change this to a unique 5 digit number.
  6.  
  7. key tex="00000000-0000-0000-0000-000000000000"; //Texture UUID goes here.
  8.  
  9. string txt="Applying, please wait..."; // Touch message goes here.
  10.  
  11. //////////////////////////////////////////////////////////////////
  12. //////////////////////////////////////////////////////////////////
  13. //////////////////////////////////////////////////////////////////
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. default
  21. {
  22. touch_start(integer tn)
  23. {
  24. llSay(ch,tex);
  25.  
  26. key owner = llGetOwner();
  27. llInstantMessage(owner,txt);
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement