Difference between revisions of "Bot Playground/Events/teleport offer"

From SmartBots Developers Docs
Jump to: navigation, search
(Created page with "{{DISPLAYTITLE:teleport_offer}} <onlyinclude>Fires when bot receives a teleport offer from another avatar.</onlyinclude> {{API Event Table}} {{API Variable Group|Output}} {{A...")
 
Line 4: Line 4:
 
{{API Event Table}}
 
{{API Event Table}}
 
{{API Variable Group|Output}}
 
{{API Variable Group|Output}}
{{API Variable|message}}The text of the message
+
{{API Variable|avatar_uuid}}The UUID of the sender
  
 
{{API Variables Table End}}
 
{{API Variables Table End}}

Revision as of 17:07, 30 June 2016

Fires when bot receives a teleport offer from another avatar.

Reference

This event comes with the following event object:

Variable Required Description
Output:
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");