Blog tools

Blog archives

Bot Access Code: New API Tokens

A new security feature has been deployed: bot API tokens: a safer and more flexible alternative to existing Bot Access Codes.

Until now, bot integrations used a single Bot Access Code. This code was often shared across multiple scripts, websites, or in-world devices.

(more…)

Bots Playground code autocompletion

Bots Playground is powered with a modern code editor (we use CodeMirror).

We added code completions like those in professional code editors. Playground editor now suggests SmartBots API function names and objects.

It also suggests context-aware parameters for SmartBots API and embedded Playground functions.

(more…)

Bonus Points for Your Bots Every day

SmartBots bonus rewards program

Every day, over 4,000 Second Life residents and business owners trust SmartBots to power their in-world automation. We’re always looking for ways to give back! We’re adding a little something extra.

With our new bonus program bots now earn bonus points (whether they’re online or offline). There’s nothing you need to do – just keep using your bots as usual, and the points will start adding up. You can find full details in the SmartBots Documentation.

(more…)

Webhooks available at Bots Playground

Incoming webhooks are now available at Bots Playground, giving your scripts an ability to receive data directly from your servers:

const webhook = await http.requestWebhook();

Bot.on("playground_webhook", (event) => {
  console.log("Data received:", event);
});

This addition opens up a wide range of possibilities:

  • receive remote commands,
  • integrate with third-party services (like Discord),
  • create two-way communication bridges between your servers and Second Life.
(more…)
Older Posts »