Difference between revisions of "ViewerEffect"

From Second Life Wiki
Jump to navigation Jump to search
m
 
Line 1: Line 1:
{{ProtocolNav}}
{{ProtocolNav}}
==Message Layout==
==Message Layout==
<pre width=80>
<pre width=80>
{
ViewerEffect Medium 17 NotTrusted Zerocoded
ViewerEffect Medium NotTrusted Zerocoded
{
AgentData Single
{ AgentID LLUUID }
{ SessionID LLUUID }
}
{
{
Effect Variable
Effect Variable
{ ID LLUUID }  
{ ID LLUUID } // unique UUID of the effect
{ Type U8 }  
{ AgentID LLUUID } // yes, pack AgentID again (note this block is variable)
{ Duration F32 }  
{ Type U8 } // Type of the effect
{ Color Fixed 4 }  
{ Duration F32 } // F32 time (seconds)
{ TypeData Variable 1 }  
{ Color Fixed 4 } // Color4U
{ TypeData Variable 1 } // Type specific data
}
}
}
</pre>
</pre>
==Usage and Notes==
==Usage and Notes==
[[Category:Messages]]
[[Category:Messages]]

Revision as of 19:34, 5 June 2008

Message Layout

	ViewerEffect Medium 17 NotTrusted Zerocoded
	{
		AgentData		Single
		{	AgentID		LLUUID	}
		{	SessionID	LLUUID	}
	}
	{
		Effect Variable
		{	ID			LLUUID	} // unique UUID of the effect
		{	AgentID		LLUUID	} // yes, pack AgentID again (note this block is variable)
		{	Type		U8	} // Type of the effect
		{	Duration	F32	} // F32 time (seconds)
		{	Color		Fixed		4	} // Color4U
		{	TypeData	Variable	1	} // Type specific data
	}

Usage and Notes