Examples of SetGroupContributionPacket


Examples of com.ngt.jopenmetaverse.shared.protocol.SetGroupContributionPacket

        /// <summary>Set this avatar's tier contribution</summary>
        /// <param name="group">Group ID to change tier in</param>
        /// <param name="contribution">amount of tier to donate</param>
        public void SetGroupContribution(UUID group, int contribution)
        {
            SetGroupContributionPacket sgp = new SetGroupContributionPacket();
            sgp.AgentData.AgentID = Client.self.getAgentID();
            sgp.AgentData.SessionID = Client.self.getSessionID();
            sgp.Data.GroupID = group;
            sgp.Data.Contribution = contribution;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.