Difference between revisions of "CreateGroupRequest"

From Second Life Wiki
Jump to navigation Jump to search
m
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{ProtocolNav}}
{{ProtocolNav}}
==Message Layout==
==Message Layout==
Line 14: Line 13:
{ Name Variable 1 }
{ Name Variable 1 }
{ Charter Variable 2 }
{ Charter Variable 2 }
{ ShowInList BOOL }
{ ShowInList BOOL }
{ InsigniaID LLUUID }
{ InsigniaID LLUUID }
{ MembershipFee S32 }
{ MembershipFee S32 }
{ OpenEnrollment BOOL }   
{ OpenEnrollment BOOL }   
{ AllowPublish BOOL }
{ AllowPublish BOOL }
{ MaturePublish BOOL }
{ MaturePublish BOOL }
}
}
}
}


</pre>
</pre>
==Usage and Notes==
==Usage and Notes==
This message is used to create a new group.
<b><tt>Charter</tt></b> - The character can be up to 511 bytes long.
<b><tt>InsigniaID</tt></b> - The asset ID of the texture you want to have be the insignia for this group.
<b><tt>MembershipFee</tt></b> - The fee for joining the group.  Fee must be greater than or equal to 0.  Any value below 0 is set at 0.
<b><tt>Name</tt></b> - The group name must be between 4 and 35 bytes long and be ASCII encoded.  The group name is also required to be unique across all groups.
[[Category:Messages]]
[[Category:Messages]]

Latest revision as of 14:58, 13 December 2006

Message Layout

{
	CreateGroupRequest Low NotTrusted Zerocoded
	{
		AgentData		Single
		{	AgentID			LLUUID	}
		{	SessionID		LLUUID	}
	}
	{
		GroupData		Single
		{	Name			Variable	1	}	
		{	Charter			Variable	2	}	
		{	ShowInList		BOOL			}
		{	InsigniaID		LLUUID			}
		{	MembershipFee		S32			}	
		{	OpenEnrollment		BOOL			}   
		{	AllowPublish		BOOL			}	
		{	MaturePublish		BOOL			}	
	}
}

Usage and Notes

This message is used to create a new group.

Charter - The character can be up to 511 bytes long.

InsigniaID - The asset ID of the texture you want to have be the insignia for this group.

MembershipFee - The fee for joining the group. Fee must be greater than or equal to 0. Any value below 0 is set at 0.

Name - The group name must be between 4 and 35 bytes long and be ASCII encoded. The group name is also required to be unique across all groups.