Package com.ngt.jopenmetaverse.shared.protocol

Examples of com.ngt.jopenmetaverse.shared.protocol.MoneyTransferRequestPacket$AgentDataBlock


  /// <param name="type">The type of transaction</param>
  /// <param name="flags">Transaction flags, mostly for identifying group
  /// transactions</param>
  public void GiveMoney(UUID target, int amount, String description, MoneyTransactionType type, TransactionFlags flags)
  {
    MoneyTransferRequestPacket money = new MoneyTransferRequestPacket();
    money.AgentData.AgentID = this.id;
    money.AgentData.SessionID = Client.self.getSessionID();
    money.MoneyData.Description = Utils.stringToBytesWithTrailingNullByte(description);
    money.MoneyData.DestID = target;
    money.MoneyData.SourceID = this.id;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.MoneyTransferRequestPacket$AgentDataBlock

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.