Difference between revisions of "Bot Playground/Events/teleport offer"
From SmartBots Developers Docs
Line 19: | Line 19: | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
Bot.on("teleport_offer", function(event) { | Bot.on("teleport_offer", function(event) { | ||
− | + | console.log("Got teleport offer from: " + event.avatar_name); | |
− | + | ||
− | + | ||
− | console.log("Got teleport offer from: " + | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
}); | }); | ||
Revision as of 16:45, 17 October 2022
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) {
console.log("Got teleport offer from: " + event.avatar_name);
});
console.log("Bot is listening, teleport offers");