Results 1 to 7 of 7
  1. #1
    ToxLP's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Maybe
    Posts
    298
    Reputation
    81
    Thanks
    3,789
    My Mood
    Twisted

    Lightbulb OverSoul Bot V0.01 [Node.js]

    Hey i won't be continuing this bot thats why am releasing the source i got bored of OverSoul thinking about making an epic duel one later

    So this is pretty messy but clean at the same time how? i dont know haven't optimized it and i just started getting in to Node.js so the code can be well optimized really.

    I can re make this in php and it can be really clean but PHP is not that good with sockets really.

    So what this does and what can it do.

    Well since your using sockets you can do anything from finding exploits to sending packets example i was able to spam the server with 100 chat messages then get kicked instantly re connect and spam again yes that code is in there.

    What i was able to do is join a battle yes you can make a auto battle bot i guess haven't tried.

    You can do pretty cool stuff also loadshop buy etc.

    Just need to know the packets i capture packets with my own program

    Picture:


    Proof it works:


    Code:
    var readline = require('readline');
    var request = require('request');
    var net = require('net');
    
    var IP = "75.126.77.10", Password = "", Email = "", strToken = "";
    var playerID = 0, MASID = 0, port = 843;
    
    var client = new net.Socket();
    
    LetsLogin("Your Email / Username", "Your Password");
    
    
    var rl = readline.createInterface({
        input: process.stdin,
        output: process.stdout
    });
    
    function ConnectOS() {
        LetsConnect();
    
        client.on('data', function (data) {
            console.log('[RECEIVED]: ' + data);
            handlePackets(data);
        });
    
        ConnectAgain();
    
    }
    
    function LetsConnect() {
        clien*****nnect(port, IP, function () {
            console.log('Connected To ' + IP + ":" + port + "\n");
            sendPacket("<policy-file-request/>");
        });
    }
    
    function LetsClose() {
        client.on('close', function () {
            client.destroy();
            console.log('Connection closed');
            process.exit(1);
        });
    }
    
    function ConnectAgain() {
        client.on('close', function () {
            client.destroy();
            console.log('Connection closed');
            LetsConnect();
        });
    }
    
    function sendPacket(data) {
        var NewData = data.toString();
        var Packet = NewData + "\x00";
        client.write(Packet);
        console.log("[SENT]: " + Packet + "\n")
    }
    
    
    function handlePackets(packet) {
    
        if (checkString(packet, "<cross-domain-policy>")) {
            sendPacket('{"Token":"' + strToken + '","id":' + playerID + ',"type":"login"}');
    
        } else if (checkString(packet, 'status":1')) {
            rl.question("", function (answer) {
    
                if (checkUIn(answer, "chatspam")) {
                    console.log("Simple Chat Spam.");
                    var i = 0, spam = 100;
                    while (i < spam) {
                        sendPacket('{"type":"chat","cmd":"m","senderName":"Troll","roomID":2,"body":"Why So Mad?"}');
                        sendPacket('{"type":"chat","cmd":"m","senderName":"Troll","roomID":2,"body":"Sux?"}');
                        sendPacket('{"type":"chat","cmd":"m","senderName":"Troll","roomID":2,"body":"ME?"}');
                        i++;
                    }
                } else if (checkUIn(answer, "quit")) {
                    rl.close();
                    console.log("closed input.");
                    LetsClose();
                } else if (checkUIn(answer, "battle")) {
                    console.log("Starting A Battle");
                    sendPacket('{"body":55,"type":"join","cmd":"region"}');
                }
            });
        }
    }
    
    function checkUIn(answer, data) {
        return answer === data;
    }
    
    function checkString(packet, strings) {
        var Data = packet.toString();
        return Data.indexOf(strings) > -1;
    }
    
    function LetsLogin(Emails, password) {
    
        Password = password.toString();
        Email = Emails.toString();
        console.log("Email: " + Email);
        console.log("Password: " + Password);
        request.post({url:'https://oversoul.arti*****m/web/AccountLoad.aspx',
                headers: {
                    'Host': 'oversoul.arti*****m',
                    'Origin': 'https://oversoulcdn.arti*****m',
                    'Referer': 'https://oversoulcdn.arti*****m/game/OSGame0_9_4d21.swf',
                    'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.134 Safari/537.36',
                    'X-Requested-With': 'ShockwaveFlash/18.0.0.209',
                    'Content-Type': 'application/x-www-form-urlencoded'},
            json: {
                strPassword: password.toString(),
                strUsername: Emails.toString()
            }},
            function(err,httpResponse,body){
                if (body.toString().indexOf("Ok")) {
                    playerID = body['playerID'];
                    MASID = body['MASID'];
                    strToken = body['strToken'];
                    ConnectOS();
                }
            });
    }
    Enjoy nothing is impossible just keep that in mind.

  2. The Following User Says Thank You to ToxLP For This Useful Post:

    JamesRo (07-25-2015)

  3. #2
    Oliboli8769's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Boliworlds
    Posts
    2,333
    Reputation
    523
    Thanks
    5,239
    Looks nice @ToxLP
    Good work

  4. #3
    MeBeo's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Location
    MPGH.net
    Posts
    120
    Reputation
    10
    Thanks
    11
    Lookin' forward to the EpicDuel bot @ToxLP Recently got interested to go on ed once again and I need a bot for it xD

  5. #4
    ToxLP's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Maybe
    Posts
    298
    Reputation
    81
    Thanks
    3,789
    My Mood
    Twisted
    Quote Originally Posted by Oliboli8769 View Post
    Looks nice @ToxLP
    Good work
    Thanks bro

    Quote Originally Posted by MeBeo View Post
    Lookin' forward to the EpicDuel bot @ToxLP Recently got interested to go on ed once again and I need a bot for it xD
    I Already made a part of the EpicDuel one stopped it for a while going to work on it today or tomorrow re made it in C# And Java thinking about Doing The C# since people here understand C# more.

    What i codded so far:
    Successfully parsed login to get the token etc.
    Successfully Connect To The Server.
    Successfully Receive And Send Packet

    Just some proof:

  6. #5
    XeroDelta's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    What do I save it as? I tried to save it as .exe and a .bat but none worked? What do I use?

  7. #6
    ToxLP's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Maybe
    Posts
    298
    Reputation
    81
    Thanks
    3,789
    My Mood
    Twisted
    Quote Originally Posted by XeroDelta View Post
    What do I save it as? I tried to save it as .exe and a .bat but none worked? What do I use?
    Check out this video get started with node.js


  8. #7
    darkninjazx's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Location
    Minnesota
    Posts
    22
    Reputation
    10
    Thanks
    0
    Never knew about this node.js looks awsome will get to learning

Similar Threads

  1. [Outdated] GamePlayerBot v6.0 [New Pixel Detection!] (Epicduel Bot/Oversoul Bot/AQW Bot/etc...)
    By Dab1996426 in forum Epic Duel (ED) Hacks / Cheats / Trainers
    Replies: 9
    Last Post: 10-06-2015, 02:23 AM
  2. [Release] GamePlayerBot v5 [EpicDuel Bot, OverSoul Bot, AQW Bot, and more]
    By AngryLeech in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 38
    Last Post: 07-30-2015, 06:43 PM
  3. [Release] GamePlayerBot (AQW, Epicduel, OverSoul and more Bot)
    By AngryLeech in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 3
    Last Post: 09-30-2014, 06:11 AM
  4. [Help] help finishing oversoul bot
    By circis in forum BattleOn Games Hacks, Cheats & Trainers
    Replies: 5
    Last Post: 04-15-2013, 01:51 PM
  5. aim bots
    By nutter in forum General Game Hacking
    Replies: 6
    Last Post: 12-27-2005, 11:56 AM