Sarria22

Clover's Intermediate RLV Glasses Script v1.0

Feb 11th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Clover's Intermediate RLV Glasses v1.0
  2. //Hi! I'm Clover! I made this! Please feel free to share it around and use it for things, just keep it open and keep my name on it!
  3. //This is meant to be used with Clover's Intermediate Glasses Control!
  4.  
  5. //This script goes in your glasses!
  6.  
  7. integer blurAmount = 3; //Blur Amount, experiment with the RenderResolutionDivosor debug setting to see what works for you! Set to 1 for no blur.
  8.  
  9. integer hideNames = TRUE; //set this to TRUE to hide names when detached, otherwise FALSE
  10. integer hideLoc = FALSE; //Set this to TRUE to hide all location info when detached, otherwise FALSE
  11.  
  12. default
  13. {
  14.     attach(key av)
  15.     {
  16.         if(av == NULL_KEY)
  17.         {
  18.             key owner = llGetOwner();
  19.             llRegionSayTo(owner,-11381138,"blur||"+(string)blurAmount+"||hidenames||"+(string)hideNames+"||hideloc||"+(string)hideLoc);
  20.             //llRegionSayTo(owner,-11381138,"skypreset||Blinded Lila");
  21.         }
  22.         else
  23.         {
  24.              key owner = llGetOwner();
  25.              llRegionSayTo(owner,-11381138,"blur||1||hidenames||0||hideloc||0");
  26.              //llRegionSayTo(owner,-11381138,"skytime||-1");
  27.         }
  28.     }
  29. }
Add Comment
Please, Sign In to add comment