teleport_offer

From SmartBots Developers Docs
Bot PlaygroundEvents
Revision as of 18:54, 10 September 2022 by Gg (Talk | contribs)

Jump to: navigation, search

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_name Sender's SL name
avatar_uuid The UUID of the sender
message Teleport offer message
slurl The teleport location

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");