CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 08:51:03 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=047f66d3d2284fd6e739776b39df983b7667fe29e5326cfde4f058f8a2a76766a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22LCLYPUnDmgaw2I6Bmmh5H7AEeDbepz4X%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d55a69aada20c5-BLR
Profile picture - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- //##############################################################################
- //
- // Get Profile Picture
- //
- // Dorex Delicioso 2023
- //
- // YouTube: https://www.youtube.com/@SecondLifeSimplyScripting
- // Marketplace: https://marketplace.secondlife.com/stores/173632
- //
- //#############################################################################
- //
- // Pass an avatar id into getProfilePic and the picture key will be sent to setProfilePicture
- //
- // ############################## VARIABLES ####################################
- key ppReqID;
- // ############################## FUNCTIONS ####################################
- //
- getProfilePic(key avId)
- {
- ppReqID = llHTTPRequest( "https://world.secondlife.com/resident/" + (string)avId, [HTTP_METHOD, "GET"], "");
- }
- setProfilePicture(key pictureKey)
- {
- llSetTexture(pictureKey, ALL_SIDES );
- }
- // ############################## DEFAULT STATE ##############################
- // ############################## DEFAULT STATE ##############################
- // ############################## DEFAULT STATE ##############################
- default
- {
- state_entry()
- {
- getProfilePic(llGetOwner());
- }
- http_response(key req,integer stat, list meta, string body)
- {
- if (req == ppReqID)
- {
- //https://wiki.secondlife.com/wiki/Profile_Picture_Retrieval
- integer index = llSubStringIndex(body,"<meta name=\"imageid\" content=\""); // Find the image in html
- key pictureKey = (key)llGetSubString(body, index + 30, index + 65); // After the search text, and for 35 chars is UUID
- if(index == -1) pictureKey = NULL_KEY; // If it wasn't found, they have no profile pic
- setProfilePicture(pictureKey);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ L
JavaScript | 36 sec ago | 0.25 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ S
JavaScript | 46 sec ago | 0.25 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ P
JavaScript | 55 sec ago | 0.25 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ Z
JavaScript | 1 min ago | 0.25 KB
-
📌 Swapzone +37% glitch ⭐ P
JavaScript | 1 min ago | 0.25 KB
-
✅⭐ Make huge profits on trading ⭐⭐ R
JavaScript | 1 min ago | 0.25 KB
-
⭐⭐⭐Make $15OO in 2O minutesV G⭐⭐
Java | 1 min ago | 0.10 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 1 min ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand