The bot for PlaceIE! This bot connects to the command server and gets an order from it. You can view the order history here.
Before you start, make sure your pixel cooldown has expired!
- Install the Tampermonkey browser extension.
- Click on this link: https://github.com/knauth/Bot/raw/master/placenlbot.user.js. If all goes well, Tampermonkey should offer you to install a userscript. Click on Install.
- Reload your r/place tab. If everything went well, you'll see "Get access token..." at the top right of your screen. The bot is now active, and will keep you informed of what it is doing via these notifications at the top right of your screen.
- When the bot places a pixel, it looks to yourself as if you can still place a pixel, when the bot has already done this for you (so you are in the 5 minute cooldown). The cooldown is therefore displayed at the top right of your screen.
- Go to r/place
- Open the browser console (F12/Inspect element -> Click on console)
- Paste the following code and press enter:
async function getAccessToken() {
const usingOldReddit = window.location.href.includes('new.reddit.com');
const url = usingOldReddit ? 'https://new.reddit.com/r/place/' : 'https://www.reddit.com/r/place/';
const response = await fetch(url);
const responseText = await response.text();
return responseText.split('\"accessToken\":\"')[1].split('"')[0];
}
await getAccessToken()
- The text between the quotes (
"
) is your access token.
- Install NodeJS.
- Download the bot from this link.
- Extract the bot to a folder somewhere on your computer.
- Open a command prompt/terminal in this folder Windows: Shift + Right mouse button in the folder -> Click on "Open Powershell here" Mac: Really no idea. Sorry! Linux: Not really necessary, right?
- Install the necessary depdendencies with
npm i
- For the bot out with
node bot.js ACCESS_TOKEN_HERE
- BONUS: You can do the last two steps as many times as you want for additional accounts. Make sure you use other accounts otherwise it won't make much sense.