StartGroupProposal

From Second Life Wiki
Revision as of 18:06, 27 November 2006 by Jonathan Linden (talk | contribs)
Jump to navigation Jump to search

Message Layout

{
	StartGroupProposal Low NotTrusted Zerocoded
	{
		AgentData		Single
		{	AgentID		LLUUID	}
		{	SessionID	LLUUID	}
	}
	{
		ProposalData		Single
		{	GroupID		LLUUID			}
		{	Quorum		S32			}
		{	Majority	F32			}	
		{	Duration	S32			}	
		{	ProposalText	Variable	1	}	
	}
}

Usage and Notes

This message is used to intiate a group proposal for a given group in which an agent is a member of. The requesting agent must be a member of the group and have sufficient group powers to start a proposal for the proposal to be created.

Quorum - The number of group members that need to vote for the proposal to be "valid" and be able to be passed. If quorum is not reached, the proposal will not be able to pass despite how many yes votes are cast for it. Quorum must be larger than 0.

Majority - The fraction of members voting that is needed to pass the proposal once quorum is met. A value of 0.0 is a simple majority, 1.0 is indicative of a unanimous vote. 0.6666 would be a 2/3s majority, etc. Any values outside of this range will be clamped to the extremes of 0.0 and 1.0

Duration - The duration in seconds from NOW in which members are able to vote on the proposal. After the proposal's duration is up, the proposal is archived.

ProposalText - The text of the proposal is truncated at 254 bytes worth of text and cannot be empty.