Difference between revisions of "Bot Playground/Events/teleport offer"
From SmartBots Developers Docs
Line 7: | Line 7: | ||
{{API Event Table}} | {{API Event Table}} | ||
− | {{API Variable Group| | + | {{API Variable Group|''event'' object properties}} |
{{API Variable|avatar_uuid}}The UUID of the sender | {{API Variable|avatar_uuid}}The UUID of the sender | ||
Revision as of 12:55, 1 July 2016
Fires when bot receives a teleport offer from another avatar.
Bot.on("teleport_offer", function(event) { ... });
Reference
This event comes with the following event object:
Variable | Required | Description | |
---|---|---|---|
event object properties: | |||
avatar_uuid | The UUID of the sender |
Example
Bot.on("teleport_offer", function(event) {
Bot.key2name(event.avatar_uuid)
.then(function(result) {
if(result.success) {
console.log("Got teleport offer from: " + result.slname);
} else {
console.log("Error executing key2name: " + result.error);
}
});
});
console.log("Bot is listening, teleport offers");