The Bot is Watching You. 17 members · 0 stories
Comments ( 3 )
  • Viewing 1 - 50 of 3

For anyone interested, here is the code I made to run that bot:

"use strict";

function logg(msg)
{
console.log("WA: "+msg);
}

var leID = 0;

function watchUser(userID)
{
$.post("/ajax_watch.php", { user: userID, watch: 1 }, function(e)
{
if(e == "1")
{
logg("Watched " + userID);
}
else
{
logg(userID + " returned " + e);
}
if(userID <= 78816)
{
leID++;
watchUser(leID);
}
else
{
logg("Done!");
}
});
}

watchUser(leID);

The language is JavaScript. Please do not run this code.

Fox

Insert off-colour comment here, acting like the code is something explicit.

Yeah. You realise that someone will end up using this eventually, right?

Tome
Group Admin

lmfao :derpyderp2:

  • Viewing 1 - 50 of 3