Jump to content

Modding Tutorials

  1. Started by BlackRider,

    You’ve developed a mod and want to share it with the community? Here’s how to prepare and publish your mod using the official aiostool-cli. 🔧 Step 1: Build Your ModMake sure your mod contains a valid mod.json, including at least: {"identifier": "yourModName","entryFile": "main.js","entryFunction": "main"} If you have additional configuration files your mod needs (e.g., config.json), you can include them via the configs array: "configs": ["config.json"] Once everything is set up, open a terminal inside your mod folder and run: aiostool build This command will: Bundle your mod using esbuild Validate structure and required functions Package everything into a .zip file (e.…

    • 0 replies
    • 33 views
  2. Started by BlackRider,

    Tutorial: Creating and Testing Mods with the aiostool CLI The aiostool CLI is a command-line tool that makes it easy to create and test mods for the aiostool integration with aiosbot. This guide will walk you through the full process—from installation to running your first mod. PrerequisitesBefore you begin, make sure you have Node.js installed on your system. 📥 Download Node.js: https://nodejs.org To verify that it's installed, run these commands in your terminal: node -v npm -v Installing the aiostool CLIThe CLI is available as an official package on npm: npm install -g @aiostool/cli Creating a New ModTo create a new mod, use the create command: aiostool create m…

    • 0 replies
    • 40 views