Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- //##############################################################################
- //
- // Get The Avatars Key By Name
- //
- // Dorex Delicioso 2023
- //
- // YouTube: https://www.youtube.com/@SecondLifeSimplyScripting
- // Marketplace: https://marketplace.secondlife.com/stores/173632
- //
- //##############################################################################
- // ############################## VARIABLES ####################################
- key name_key_query;
- // ############################## DEFAULT STATE ##############################
- // ############################## DEFAULT STATE ##############################
- // ############################## DEFAULT STATE ##############################
- default
- {
- touch_start(integer num_detected){
- //
- // Turns an av's name into their key. They don't have to be in the same region
- //
- name_key_query = llRequestUserKey("Dorex Delicioso");
- }
- dataserver(key queryid, string data)
- {
- if ( name_key_query == queryid ){
- llOwnerSay("Av Key " + data);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement