[KSBot] Multi-Server RSPS Botting Client | AIO Scripts, No-Code AutoBuilder, Client Manager

Discussion in 'Scripts & Bots' started by SpaceWard69, Aug 23, 2026.

[KSBot] Multi-Server RSPS Botting Client | AIO Scripts, No-Code AutoBuilder, Client Manager
  1. Unread #1 - Aug 23, 2026 at 3:59 PM
  2. SpaceWard69
    Joined:
    Mar 8, 2018
    Posts:
    35
    Referrals:
    0
    Sythe Gold:
    39

    SpaceWard69 Member

    [KSBot] Multi-Server RSPS Botting Client | AIO Scripts, No-Code AutoBuilder, Client Manager


    KSBot - RSPS Botting Client
    One client, every server. Built on RuneLite.
    Website | Docs | Discord
    ════════════════════════════════════
    Figured it was time to put together a proper thread on KSBot. If you bot on private servers and you're sick of clients that only work on one server or break every update, give this a read.
    KSBot is a full RuneLite client with a real scripting engine on top. You get the client you already know, a library of ready-made scripts, and a clean Java API if you want to write your own. The same API works across every server we support.
    ════════════════════════════════════​
    Supported Servers
    One account, all of these, each with its own injected client:
    • Orion, Reason, Amascut, Exile, Ferox
    • NearReality, Oldschool, Elorin
    Write a script once and it runs anywhere it applies. The per-server stuff (item IDs, widgets, teleports) is handled behind the scenes so you don't deal with it.
    ════════════════════════════════════​
    The Website
    Everything runs through ksbot.org:
    • Script store - browse and install scripts. Listings, descriptions and images are managed on the site so they stay current.
    • Premium scripts + free trials - try the paid scripts before you commit.
    • AutoBuilder - build your own scripts without writing code at ksbot.org/autobuilder.
    • Git-backed scripts - your scripts are version controlled in git, so nothing gets lost.
    • Changelog history - see exactly what changed in every version of a script.
    • Auto updates - script versions are handled server-side. A dev pushes an update, you get it on next launch.
    • Review system - new scripts and updates get checked before they go live.
    • Map + item database - browse the game map at ksbot.org/map and the full item JSON, handy for grabbing IDs and coords while scripting.
    • Full docs - complete API reference at docs.ksbot.org, plus a context pack you can paste straight into ChatGPT or Claude to help write scripts.
    ════════════════════════════════════​
    Scripts
    Solid lineup of AIO scripts covering the skills, plus combat and helpers:
    Combat
    • AIO Fighter (auto gear switching, prayer flicking, priority looting)
    • Gemstone Crab Killer
    • Gauntlet Helper (prayer and weapon switching)
    Skilling (AIO)
    • Agility (loads of courses), Cooking, Crafting, Farming, Firemaking
    • Fishing, Fletching, Herblore, Hunter, Magic (AIO Alcher)
    • Mining + Motherlode, Smithing + Blast Furnace, Thieving, Woodcutting
    Other
    • Helper plugins that run alongside your main script - prayer flicker, escape teleporter, gear swapper
    Every script has a proper config GUI (either a themed popout window or a native RuneLite sidebar panel), live on-screen paint showing runtime and rates, priority loot tables, and saved presets. Settings save locally per account on your machine.
    ════════════════════════════════════​
    Anti-Ban
    This is where most clients fall short:
    • Staff detection - notices staff nearby and reacts sensibly instead of instantly logging (an instant logout is a tell on its own)
    • Human mouse - curved, randomised movement and clicking
    • Randomised breaks - configurable break profiles
    • HWID + login spoofing - keeps accounts isolated
    ════════════════════════════════════​
    Extras
    • Client Manager - monitor your client, start/stop scripts and log in your account, all from one dashboard
    • Client CLI - start a client, log in and launch a script all with a single command
    • Proxy support - run each client behind its own proxy
    • Discord bot integration - hook your bots up to Discord for status and control
    • Webhooks - push events and updates wherever you want them
    • MCP support - connect the client to AI tooling over MCP
    ════════════════════════════════════​
    Writing Your Own Scripts
    The API is beginner friendly. Scripts are plain Java - extend Script, add a manifest, and talk to the game through one ctx object. No RuneLite internals to dig through. Not a coder? Use AutoBuilder instead.
    Code:
    @ScriptManifest(name = "Demo Fighter", author = "You",
        servers = { "Orion" }, category = Category.COMBAT)
    public class DemoFighter extends Script {
        @Override public int onProcess() {
            if (ctx.combat.getHealthPercent() < 50) { ctx.consumables.eat(); return 200; }
            if (ctx.lootable.pickup()) return 100;
            KSNPC target = ctx.npcs.query()
                .withName("Goblin").alive().noOneInteractingWith().closest();
            if (target != null && !ctx.combat.isInCombat()) target.interact("Attack");
            return 600;
        }
    }
    
    What you get out of the box:
    • Fluent queries for NPCs, players, objects, ground items, inventory, bank, equipment and widgets
    • Combat, Prayer, Magic - attacks, specs, prayer flicking, autocast, best-prayer helpers
    • Banking + inventory - withdraw/deposit by name or ID, presets, noted mode
    • Pathing - walk to points or entities, dangerous-tile avoidance, instance handling
    • Consumables - smart eating, combo eat, antifire/antivenom, timer system
    • Dialog, chat, keyboard, mouse with human-like timing
    • Auto-generated config GUIs from annotated fields (sliders, toggles, loot tables, gear tables)
    • Event subscriptions - game ticks, chat, animations, projectiles for reactive bossing
    The whole API is also published as an LLM context pack, so you can paste it into an AI and get working scripts fast.
    ════════════════════════════════════

    Get started at ksbot.org
    Questions? Come say hi on Discord.
     
  3. Unread #2 - Aug 23, 2026 at 3:59 PM
  4. BigMeech
    Joined:
    Nov 23, 2012
    Posts:
    513
    Referrals:
    0
    Sythe Gold:
    587
    Discord Unique ID:
    593149207188209796
    Discord Username:
    BigMeech#7946

    BigMeech Forum Addict
    $25 USD Donor New

    [KSBot] Multi-Server RSPS Botting Client | AIO Scripts, No-Code AutoBuilder, Client Manager

    Best client i have ever used!
     
  5. Unread #3 - Aug 23, 2026 at 4:02 PM
  6. Jouninvene
    Joined:
    Aug 25, 2022
    Posts:
    6
    Referrals:
    0
    Sythe Gold:
    4
    Discord Unique ID:
    244869474572959756
    Discord Username:
    Jojeli#3618

    Jouninvene Newcomer

    [KSBot] Multi-Server RSPS Botting Client | AIO Scripts, No-Code AutoBuilder, Client Manager

    Vouch. This is some goated quality shit.
     
  7. Unread #4 - Aug 27, 2026 at 6:36 PM
  8. SpaceWard69
    Joined:
    Mar 8, 2018
    Posts:
    35
    Referrals:
    0
    Sythe Gold:
    39

    SpaceWard69 Member

    [KSBot] Multi-Server RSPS Botting Client | AIO Scripts, No-Code AutoBuilder, Client Manager

    Bump! Get started for free
     
  9. Unread #5 - Aug 31, 2026 at 11:21 PM
  10. SpaceWard69
    Joined:
    Mar 8, 2018
    Posts:
    35
    Referrals:
    0
    Sythe Gold:
    39

    SpaceWard69 Member

    [KSBot] Multi-Server RSPS Botting Client | AIO Scripts, No-Code AutoBuilder, Client Manager

    Elorin has been added! Progress is being made!
     
< LoreScripts | Bots, Scripts & Combat Tools ✅ Spawn PK ✅ Expanding Soon | ☠️ PurpScripts - VyperSwitch ☠️ PvP | BH | PvM | ☠️ Roat PKz ☠️ Impact RSPS ☠️ Spawn PK >

Users viewing this thread
1 guest


 
 
Adblock breaks this site