Package com.ngt.jopenmetaverse.shared.protocol

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


        /// <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

Related Classes of com.ngt.jopenmetaverse.shared.protocol.SetGroupContributionPacket$DataBlock

Copyright © 2018 www.massapicom. 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.