autopilot_started

From SmartBots Developers Docs
Bot PlaygroundEvents
Revision as of 10:17, 7 December 2023 by Gg (Talk | contribs)

Jump to: navigation, search

Fires when bot autopilot starts. Not available for QubicBot yet (?)

Bot.on("autopilot_started", function(event) { ... });

Reference

This event comes with the following event object:

Variable Required Description
event object properties:
name The name of the event in this case teleport_status
bot_name The name of the bot teleporting.
currentPoint Bot current location, { X, Y, Z }
endPoint Bot destination point, { X, Y, Z }

Example

console.log(`${process.name} started`);

Bot.on("autopilot_started", (event) => {
	console.log(`Autopilot started: ${JSON.stringify(event, null, 2)}`);
});

/*
Autopilot started: {
  "name": "autopilot_started",
  "bot_slname": "DakotahRaine Resident",
  "bot_uuid": "4f6b8999-14a0-4f50-882d-a764ee913daa",
  "endPoint": {
    "X": 212,
    "Y": 25,
    "Z": 93
  },
  "currentPoint": {
    "X": 203.21446,
    "Y": 36.776222,
    "Z": 93.68485
  }
}
*/