AQW.js

Posts 18 of 8 · Page 1 of 1
AQW.js



AQW.js is a node module used as a way of interfacing with AdventureQuest Worlds.
It is a useful module for creating bots for the new and old server.

Example:
Code:
const Client = require("../lib/Client/Client");

const client = new Client({ newServer: true, server: "TestingServer2" });

client.on("loginResponse", (data) => {
    let motd = data.MOTD;
    console.log(`[Message Of The Day] ${ motd }`);
});

client.on("moveToArea", (data) => {
    let areaName = data.areaName;
    console.log(`[Joined] ${ areaName }`);
});

client.login("Username", "Password");
Output:



Things yet to be implemented:

  • Combat
  • Documentation
  • More useful methods


If you have features that you would like to see, please let me know

Dayum, can't wait for this to be finished...
Tbh this will create a new era of bot creating for both AQWorlds and Private Servers
I have had an idea like this for the longest, glad someone finally got around to implementing it.
This is really useful for those who know how to use this,

Are you planning on releasing this anytime soon?
Quote Originally Posted by Merudo View Post
This is really useful for those who know how to use this,

Are you planning on releasing this anytime soon?
Soon.
Wow, keep up the good work indeed!
Any updates on the current development status of the said module, @F L U X?
Since the OP hasn't responded for over a month now, I'll be closing this thread of his as such.

/Closed.
Posts 18 of 8 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?