Difference between revisions of "Bot Playground/Events/region restart cancelled"
From SmartBots Developers Docs
(Created page with "{{DISPLAYTITLE:region_restart_cancelled}} <onlyinclude>Fires when bot receives a region restart cancellation notification.</onlyinclude> <syntaxhighlight lang="javascript"> B...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:region_restart_cancelled}} | {{DISPLAYTITLE:region_restart_cancelled}} | ||
− | <onlyinclude>Fires when bot receives a region restart cancellation notification.</onlyinclude> | + | <onlyinclude>Fires when bot receives a region restart cancellation notification. {{NotAvailableForQB}}</onlyinclude> |
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
Line 24: | Line 24: | ||
}); | }); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
+ | |||
+ | Also see [[Bot_Playground/Examples/Region_restart|complex region restart script]]. | ||
{{NavMenu}} | {{NavMenu}} |
Latest revision as of 07:53, 12 October 2022
Fires when bot receives a region restart cancellation notification. Not available for QubicBot yet (?)
Bot.on("region_restart_cancelled", 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 region_restart_cancelled | ||
bot_uuid | The UUID of the bot which receives the notification. | ||
message | The message of the region_restart_cancelled | ||
region_name | The name of the region. |
Example
console.log(`${process.name} started`);
Bot.on("region_restart_cancelled", (event) => {
console.log(`Region restart cancelled:`, event);
});
Also see complex region restart script.