Profile Picture Retrieval

From Second Life Wiki
Revision as of 19:32, 8 August 2010 by Pazako Karu (talk | contribs) (Created page with 'Profile Picture Retrieval by Pazako Karu (Quick, Dirty, NEW WAY - August 8, 2010) <lsl> //Couldnt care less about saying I did this, have fun with it //Pazako Karu 8/8/2010 k...')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Profile Picture Retrieval by Pazako Karu (Quick, Dirty, NEW WAY - August 8, 2010)

<lsl> //Couldnt care less about saying I did this, have fun with it //Pazako Karu 8/8/2010

key ppReqID; key ProfilePic; getProfilePic(key AvatarKey) {

   ppReqID = llHTTPRequest( "http://world.secondlife.com/resident/" + (string)AvatarKey,[HTTP_METHOD,"GET"],"");

} setProfilePic(key Texture) {

   if (Texture != NULL_KEY)
   {
       llSetTexture(Texture,ALL_SIDES);
   }
   else llOwnerSay("Invalid texture returned!");

} default {

   state_entry()
   {
       getProfilePic(llGetOwner());
   }
   http_response(key req,integer stat, list meta, string body)
   {
       if (req == ppReqID)
       {
           integer s1  = llSubStringIndex(body,"<meta name=\"imageid\" content=\"");
       integer s1l = llStringLength("<meta name=\"imageid\" content=\"");
       integer s2  = llSubStringIndex(body,"\" /> \n    <meta name=\"agentid\"") - 1;
       if(s1 == -1) ProfilePic = NULL_KEY;
       else    ProfilePic = (key)llGetSubString(body,s1+s1l,s2);
           setProfilePic(ProfilePic);
       }
   }

} </lsl>