inventory_offer
From SmartBots Developers Docs
Fires when bot receives a inventory offer
Bot.on("inventory_offer", function(event) { ... });
Reference
This event comes with the following event object:
Variable | Required | Description | |
---|---|---|---|
event object properties: | |||
name | name of the event in this case inventory_offer | ||
item_type | type of the inventory item eg:
| ||
folder | inventory folder UUID this item goes to | ||
sender_type | type of the sender AGENT or OBJECT | ||
sender_name | name of the sender | ||
sender_uuid | UUID of the sender | ||
item_name | name of the offered item | ||
object_id | inventory UUID of the item being offered | ||
item_creator | The UUID of the creator from the invetory item. | ||
session | Session UUID to accept the item. |
Example
Bot.on("inventory_offer", function(event) {
console.log(event.sender_name + " send me an " + event.item_type + " with the name: \n" + event.item_name);
});
console.log("Bot is listening to inventory offers");