Difference between revisions of "AvatarPropertiesReply"

From Second Life Wiki
Jump to navigation Jump to search
(Updated to current version of avatar properties reply, added flag values)
 
Line 3: Line 3:
<pre width=80>
<pre width=80>
{
{
AvatarPropertiesReply Low Trusted Zerocoded
AvatarPropertiesReply Low 171 Trusted Zerocoded
{
{
AgentData Single
AgentData Single
{ AgentID LLUUID }
{ AgentID LLUUID } // your id
{ AvatarID LLUUID }
{ AvatarID LLUUID } // avatar you're asking about
}
}
{
{
Line 14: Line 14:
{ FLImageID LLUUID }
{ FLImageID LLUUID }
{ PartnerID LLUUID }
{ PartnerID LLUUID }
{ AboutText Variable 2 }
{ AboutText Variable 2 } // string, up to 512
{ FLAboutText Variable 1 }
{ FLAboutText Variable 1 } // string
{ BornOn Variable 1 }
{ BornOn Variable 1 } // string
{ ProfileURL Variable 1 }
{ ProfileURL Variable 1 } // string
{ CharterMember Variable 1 }
{ CharterMember Variable 1 } // special - usually U8
{ AllowPublish BOOL }
{ Flags U32 }
{ MaturePublish BOOL }
{ Identified BOOL }
{ Transacted BOOL }
}
}
}
}
</pre>
</pre>
==Usage and Notes==
==Usage and Notes==
Avatar profile, response to [[AvatarPropertiesRequest]]
Avatar profile, response to [[AvatarPropertiesRequest]]
===Flags===
{| {{Prettytable|style=margin-top:4px;}}
{{!}}- {{Hl2}}
| '''Name'''
| '''Value'''
| '''Notes'''
|-
| AVATAR_ALLOW_PUBLISH
| 1
| Whether profile is externally visible or not
|-
| AVATAR_MATURE_PUBLISH
| 2
| Profile is "mature"
|-
| AVATAR_IDENTIFIED
| 4
| Whether avatar has provided payment info
|-
| AVATAR_TRANSACTED
| 8
| Whether avatar has actively used payment info
|-
| AVATAR_ONLINE
| 16
| The online status of this avatar, if known.
|-
| AVATAR_AGEVERIFIED
| 32
| Whether avatar has been age-verified
|}


[[Category:Messages]]
[[Category:Messages]]

Latest revision as of 05:59, 4 April 2017

Message Layout

{
	AvatarPropertiesReply Low 171 Trusted Zerocoded
	{
		AgentData			Single
		{	AgentID			LLUUID		}	// your id
		{	AvatarID		LLUUID		}	// avatar you're asking about
	}
	{
		PropertiesData		Single
		{	ImageID			LLUUID		}
		{	FLImageID		LLUUID		}
		{	PartnerID		LLUUID		}
		{	AboutText		Variable 2	}	// string, up to 512
		{	FLAboutText		Variable 1	}	// string
		{	BornOn			Variable 1	}	// string
		{	ProfileURL		Variable 1	}	// string
		{	CharterMember	Variable 1	}	// special - usually U8
		{	Flags			U32			}
	}
}

Usage and Notes

Avatar profile, response to AvatarPropertiesRequest

Flags

Name Value Notes
AVATAR_ALLOW_PUBLISH 1 Whether profile is externally visible or not
AVATAR_MATURE_PUBLISH 2 Profile is "mature"
AVATAR_IDENTIFIED 4 Whether avatar has provided payment info
AVATAR_TRANSACTED 8 Whether avatar has actively used payment info
AVATAR_ONLINE 16 The online status of this avatar, if known.
AVATAR_AGEVERIFIED 32 Whether avatar has been age-verified