Blog tools

Blog archives

Texture Upload Improvements via HTTP API

We’ve made an improvement to texture uploads via the texture_upload HTTP API function.

An issue affecting Premium Plus accounts was identified and resolved, and texture uploads are now working as expected.

While applying this fix, we also extended support for higher-resolution textures. The HTTP API now allows texture uploads up to 2048×2048, enabling bots to upload full 2K textures directly!

Thanks to the customer who helped surface this issue, and Happy scripting!

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…)