Advertisement
Dorex

Untitled

Nov 21st, 2023
1,452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //
  2. //##############################################################################
  3. //
  4. // Get The Avatars Key By Name
  5. //
  6. // Dorex Delicioso 2023
  7. //
  8. // YouTube: https://www.youtube.com/@SecondLifeSimplyScripting
  9. // Marketplace: https://marketplace.secondlife.com/stores/173632
  10. //
  11. //##############################################################################
  12.  
  13. // ############################## VARIABLES ####################################
  14.  
  15. key name_key_query;
  16.  
  17. // ############################## DEFAULT STATE ##############################
  18. // ############################## DEFAULT STATE ##############################
  19. // ############################## DEFAULT STATE ##############################
  20.  
  21. default
  22. {  
  23.  
  24.     touch_start(integer num_detected){
  25.         //
  26.         // Turns an av's name into their key. They don't have to be in the same region
  27.         //          
  28.         name_key_query = llRequestUserKey("Dorex Delicioso");
  29.     }
  30.  
  31.     dataserver(key queryid, string data)
  32.     {
  33.        if ( name_key_query == queryid ){
  34.          
  35.             llOwnerSay("Av Key " + data);
  36.        }
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement