key llGetProfilePicture(key uuid);
tracked
Cutie Crush
Inspired by a comment during an SL21B Town Hall interview:
key llGetProfilePicture(key uuid);
Displaying a user's profile picture has a multitude of valid uses, from simple visitor counters, to "Am I Online?" displays in stores, game scoreboards, fun little ID badges, and so on. We've been doing this for ages.. easily a decade or more at this point.. and yet displaying a user's current profile picture is
far
from trivial.The current approach goes something like this.
- Get the user's UUID.
- Point a web call to https://world.secondlife.com/resident/ + (string)UUID
- Then we sit, and wait, and hope today isn't the day that LL finally shuts off world.secondlife.com, and we pray it's online at the moment.
- Assuming we get back a valid page response, we scrub through the small fragment of HTML that the script managed to capture, then we look for <img alt=\"profile image\" src=\"https://secondlife.com/app/image/
- Then we pull out everything before that, and the first 36 characters left SHOULD be the UUID for the user's current profile picture.
There has to be a more elegant way to do this.
llGetProfilePicture could work much the same as llGetUsername or llGetDisplayName, feed the user's UUID in, and get a response that's immediately usable... resulting in less http overhead, and less reliance on a profile and group service (world.secondlife.com) that is not really being supported.
Other uses:
* Objects: sending it an object's UUID (or other inventory asset) could return it's set 'inventory image', if one exists
* Groups: sending it the UUID of a group could return the group's Image
* Land: sending it the UUID of a parcel of land could return the land's "Place Profile" image.
Log In
Bleuhazenfurfle Resident
Yes, but, make this part of
llRequestAgentData
, rather than it's own command.Jeremy Duport
Bleuhazenfurfle Resident No-go if this were able to handle group and parcel uuids, but it'll end up as a dataserver event either way :P
Bleuhazenfurfle Resident
Jeremy Duport: I actually wouldn't be against
llRequestAgentData
working on groups and parcel UUID's, also. Think of it as, "agent-adjacent". Though I agree that could block getting more parcel-specific fields added…Perhaps, then, a new command that's a more generalised version of llRAD… My main objection was to a whole command just for this one very specific and fairly niche task.
Pazako Karu
Bleuhazenfurfle Resident let's add Sim names for maps too, while we're at it.
Mars Tamale
This could be very useful (will save lots of LSL script memory) but as others have said I'd extend it to groups & possibly even RL pics with an extra boolean.
SamanthaTekcat Resident
Could this be used not only for Agent Profile Pictures, but also for group profile pictures as well?
Spidey Linden
tracked
Issue tracked. We have no estimate when it may be implemented. Please see future updates here.