OpenMetaverse.AgentManager.GiveObjectMoney C# (CSharp) Method

GiveObjectMoney() public method

Give L$ to an object
public GiveObjectMoney ( UUID target, int amount, string objectName ) : void
target UUID object to give money to
amount int amount of L$ to give
objectName string name of object
return void
        public void GiveObjectMoney(UUID target, int amount, string objectName)
        {
            GiveMoney(target, amount, objectName, MoneyTransactionType.PayObject, TransactionFlags.None);
        }