/// <param name="animations">A list of animation <seealso cref="UUID"/>s, and whether to
/// turn that animation on or off</param>
/// <param name="reliable">Whether to ensure delivery of this packet or not</param>
public void Animate(Map<UUID, Boolean> animations, boolean reliable)
{
AgentAnimationPacket animate = new AgentAnimationPacket();
animate.header.Reliable = reliable;
animate.AgentData.AgentID = Client.self.getAgentID();
animate.AgentData.SessionID = Client.self.getSessionID();
animate.AnimationList = new AgentAnimationPacket.AnimationListBlock[animations.size()];