Dank Memer (Selfbot) Farm with slash commands support and random delays and breaks to avoid any suspicion

Overview

Slashy

Slashy is a Dank Memer (Selfbot) Farm with slash commands support and random delays and breaks to avoid any suspicion.

This is completely undetectable and can be used 24/7 on VPS or Replit or any host of your choice

Features

  • Free
  • Supports slash commands and buttons
  • Multiple Tokens / Account Support
  • Completely Undetected (Anti Ban)
  • Invisible (this will not make your account look 24/7 online. this will set it's status to invisible)
  • Can be used 24/7 without getting banned
  • Automatic sleeps and breaks. The selfbot will automatically take random breaks to avoid any suspicion.
  • Website which shows money in your account
  • image
  • Solve Captchas
  • Item transfer from alts to main
  • Auto Alerts reader
  • Editable cooldowns
  • Item Blacklist for auto transfer
  • Random delays between commands. The selfbot will run commands at random intervals.
  • Random commands every time. The selfbot will use a random command from the list provided in the config.json
  • Less Ram Usage
  • Auto sell
  • Auto deposit all the money in bank
  • Solve all the trivia. If the bot does not know the answer of a trivia (less chances) the bot will click a random button
  • Works with most of the commands
    • beg
    • postmemes
    • highlow
    • crime
    • search
    • fish
    • dig
    • hunt
    • trivia
  • Logs things in webhooks

Installation

Download nodejs

git clone https://github.com/TahaGorme/slashy.git
cd slashy
npm i 
node .

Config

{
  "tokens": [
    {
      "token": "token1",
      "channelId": "69420"
    },
    {
      "token": "token2",
      "channelId": "696969"
    }
  ], // tokens for the selfbot
//commands which you want the bot to use (these are the only commands supported. you can remove commands which you dont want the bot to use.
  "commands": [ 
    "beg",
    "postmemes",
    "highlow",
    "fish",
    "hunt",
    "dig",
    "trivia",
    "search", //recommended to remove the search command to prevent death
    "crime" //recommended to remove the crime command to prevent death
  ],
  "channel_id": "channel id", //channel where you want the bot to play dank memer
  "webhook": "webhook url", //webhook to log certain things
  "autoDeposit": true, // enable if you want to auto deposit money in your bank
  "autoSell":true, //enable if you want to sell sellable items automatically,
    "autoGift": false, //enable if you want auto items transfer from alts to main
      "mainAccount": "your main account token",
       
    "transferOnlyMode": false, //ONLY ENABLE IF YOU WANT TO TRANSFER ITEMS ONLY AND NOT GRIND
      "serverEventsDonateMode":false, // ENABLE THIS IF YOU OWN A SERVER WITH 200+ MEMBERS AND YOU WANNA TRANSFER ITEMS FROM YOUR ALTS TO MAIN

  "cooldowns": { // only edit cooldowns if you know what you are doing
    "market": {
      "minDelay": 3000,
      "maxDelay": 6000
    },
    "buttonClick": {
      "minDelay": 400,
      "maxDelay": 800
    },
    "trivia": {
      "minDelay": 500,
      "maxDelay": 1500
    },
    "commandInterval": {
      "minDelay": 1000,
      "maxDelay": 2000
    },
    "shortBreak": {
      "minDelay": 30000,
      "maxDelay": 90000
    },
    "longBreak": {
      "minDelay": 600000, 
      "maxDelay": 4000000
    },
    "transfer": {
      "minDelay": 4000,
      "maxDelay": 8000
    },
      "serverEvents":{
      "minDelay": 3000,
      "maxDelay": 5000
    }
  }




}

I know the code is not clean. Please bear with it

Discord Server

https://discord.gg/HGfFFUQ7F7

Contributing

Pull requests are welcomed. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Comments
  • How to avoid getting banned when using this 24/7?

    How to avoid getting banned when using this 24/7?

    this has been running for 3 days now and I just got a email from Discord saying that i got banned for selfbotting and it was on my main... how do I avoid this for next time

    opened by expected-ingot 4
  • Fix string split in 'handleInventoryCommand'

    Fix string split in 'handleInventoryCommand'

    Dank Memer has updated new string format: **<:emoji_id:> (item_name)** - quantity in inventory embeds. current split:

    var [name, quantity] = message.embeds[0]?.description?.split("\n")[0].split("** ─ ");
        name = name?.split("**")[1];
    

    fix:

    var [name, quantity] = message.embeds[0]?.description?.split("\n")[0].split("** ─ ");
        name = name?.split("> ")[1];
    
    opened by snappiee 2
  • Question

    Question

    Will there be support for grind command minigames? (Dragon, kraken etc.) Also perhaps adding timestamps to console logs might be a nice QoL addition though unnecessary for most users. I added this to mine if you're interested:

    var log = console.log;
    
    console.log = function () {
        var first_parameter = arguments[0];
        var other_parameters = Array.prototype.slice.call(arguments, 1);
    
        function formatConsoleDate (date) {
            var hour = date.getHours();
            var minutes = date.getMinutes();
            var seconds = date.getSeconds();
            var milliseconds = date.getMilliseconds();
    
            return '[' +
                   ((hour < 10) ? '0' + hour: hour) +
                   ':' +
                   ((minutes < 10) ? '0' + minutes: minutes) +
                   ':' +
                   ((seconds < 10) ? '0' + seconds: seconds) +
                   ']'
        }
    
        log.apply(console, [formatConsoleDate(new Date()) + first_parameter].concat(other_parameters));
    };
    
    opened by huhl0l 2
  • Error at every actions

    Error at every actions

    Hi, when I start the script it's okay, but when an account do a single action, I have a lot of errors, I increase the delay of every actions, and same problem, here's the logs :

    ReferenceError: item is not defined
        at autoToolBuyer (C:\Users\Manafix\Desktop\slashy-main\index.js:1010:36)
        at Client.<anonymous> (C:\Users\Manafix\Desktop\slashy-main\index.js:402:3)
        at Client.emit (node:events:390:28)
        at MessageCreateAction.handle (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\actions\MessageCreate.js:30:14)
        at Object.module.exports [as MESSAGE_CREATE] (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\handlers\MESSAGE_CREATE.js:4:32)
        at WebSocketManager.handlePacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketManager.js:359:31)
        at WebSocketShard.onPacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:489:22)
        at WebSocketShard.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:324:10)
        at WebSocket.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\ws\lib\event-target.js:199:18)
        at WebSocket.emit (node:events:390:28) Promise {
      <rejected> ReferenceError: item is not defined
          at autoToolBuyer (C:\Users\Manafix\Desktop\slashy-main\index.js:1010:36)
          at Client.<anonymous> (C:\Users\Manafix\Desktop\slashy-main\index.js:402:3)
          at Client.emit (node:events:390:28)
          at MessageCreateAction.handle (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\actions\MessageCreate.js:30:14)
          at Object.module.exports [as MESSAGE_CREATE] (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\handlers\MESSAGE_CREATE.js:4:32)
          at WebSocketManager.handlePacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketManager.js:359:31)
          at WebSocketShard.onPacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:489:22)
          at WebSocketShard.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:324:10)
          at WebSocket.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\ws\lib\event-target.js:199:18)
          at WebSocket.emit (node:events:390:28)
    }
     [Anti Crash] >>  Unhandled Rejection/Catch
    ReferenceError: item is not defined
        at autoToolBuyer (C:\Users\Manafix\Desktop\slashy-main\index.js:1010:36)
        at Client.<anonymous> (C:\Users\Manafix\Desktop\slashy-main\index.js:402:3)
        at Client.emit (node:events:390:28)
        at MessageCreateAction.handle (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\actions\MessageCreate.js:30:14)
        at Object.module.exports [as MESSAGE_CREATE] (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\handlers\MESSAGE_CREATE.js:4:32)
        at WebSocketManager.handlePacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketManager.js:359:31)
        at WebSocketShard.onPacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:489:22)
        at WebSocketShard.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:324:10)
        at WebSocket.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\ws\lib\event-target.js:199:18)
        at WebSocket.emit (node:events:390:28) Promise {
      <rejected> ReferenceError: item is not defined
          at autoToolBuyer (C:\Users\Manafix\Desktop\slashy-main\index.js:1010:36)
          at Client.<anonymous> (C:\Users\Manafix\Desktop\slashy-main\index.js:402:3)
          at Client.emit (node:events:390:28)
          at MessageCreateAction.handle (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\actions\MessageCreate.js:30:14)
          at Object.module.exports [as MESSAGE_CREATE] (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\handlers\MESSAGE_CREATE.js:4:32)
          at WebSocketManager.handlePacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketManager.js:359:31)
          at WebSocketShard.onPacket (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:489:22)
          at WebSocketShard.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\discord.js-selfbot-v13\src\client\websocket\WebSocketShard.js:324:10)
          at WebSocket.onMessage (C:\Users\Manafix\Desktop\slashy-main\node_modules\ws\lib\event-target.js:199:18)
          at WebSocket.emit (node:events:390:28)
    }
     [Anti Crash] >>  Unhandled Rejection/Catch
    ReferenceError: item is not defined
        at autoToolBuyer (C:\Users\Manafix\Desktop\slashy-main\index.js:1010:36)
        at processTicksAndRejections (node:internal/process/task_queues:96:5) Promise {
      <rejected> ReferenceError: item is not defined
          at autoToolBuyer (C:\Users\Manafix\Desktop\slashy-main\index.js:1010:36)
          at processTicksAndRejections (node:internal/process/task_queues:96:5)
    }
    
    opened by Impre-visible 1
  • [Feature Request] Gambling Commands

    [Feature Request] Gambling Commands

    Could you please add support for gambling commands(mainly for levelling), slots would be pretty easy to implement too, since it's just one command and no more button presses. The amount could be configured through the json file, and can be altered by using a range, although that might not be necessary since many users also just spam the command by copy/paste for fast levelling. Also, thanks for this wonderful bot!

    opened by ghost 1
  • Some fixes

    Some fixes

    /alert and /serverevents payout fixed, also some minor tweaks to logging

    • Unkown trivia error now logs in console instead of webhook to prevent flooding your webhook, if the trivia answer is unknown it now clicks a random button -> it only logs in console if dontLogUselessThings is disabled

    • /use horseshoe now logs to console only if dontLogUselessThings is disabled, it also logs a better formatted message

    opened by kyan0045 0
  • Clean the code little bit and some improvement :

    Clean the code little bit and some improvement :

    1. shorter the if condition by using ? ( optional chaining )

    2. postmeme : no more need to fix postmemes ( like you did when halloween event end, the meme type is change to normal so we dont have to do it manually ) - We will take it from message it self

    3. Check line 275, there is note as RISK - I comment code there because that code put items to sell for 1 coin and not transferring to owner - there is different code written to transfer item to owner so ig it is redundant?

    4. in randomCommand() function, i shorter the handleCommand() call and remove some params, becasue the command variable we are passing is is same as 2nd parameter, so i removed that 2nd one and we are only using minDelay in handleCommand() so removed 4th paramter maxDelay

    5. in messageUpdate used ? (optional chaining) to avoid error : reading property of null (reading "id))

    • errror occurs because author is null, i guess it null because message is deleted or not by user/bot? or webhook? i dont know
    opened by KMohZaid 0
Owner
Taha Gorme
Taha Gorme
Boilerplate project to run MOBILE Test Automation with WebdriverIO v7, Mocha, Appium, Allure reporting and Momentum Suite cloud device farm support

WebdriverIO Mocha Appium Momentumsuite WebdriverIO Integration with local or Momentum Suite real mobile farm devices Supports Native or Hybrid Android

Momentum Suite 21 Dec 5, 2022
Multiple hacks that breaks the game

blooket-hack All of the cheats are based on a game mode. So if you chose a gold quest game mode then you go to the gold folder and then use one of the

glizzz_y 493 Mar 5, 2022
Polyfill to remove click delays on browsers with touch UIs

FastClick FastClick is a simple, easy-to-use library for eliminating the 300ms delay between a physical tap and the firing of a click event on mobile

FT Labs 18.8k Jan 2, 2023
New Discord.JS v14 Slash and Prefix Commands handler with Events. Check it out now!

Discord.js v14 Command-Handler Commands, Events, Permissions and Cooldown Handlers for Discord.js v14 bot ~ Made by Lynx Discord.js v14 (dev version)

Comet Development 20 Dec 19, 2022
A Discord bot Template made with Discord.JS version 14 includes Prefix, Slash commands and MongoDB handler.

Project Language: Fork/Download for: Project Requirements: Database Available: DiscordJS V14 Bot Template - Introduction: A Discord bot project made w

T.F.A 105 Jan 3, 2023
A good looking help command made with discord.js with select menus. Works with prefix and slash commands too!

fancy-help-command A good looking help command made with discord.js with select menus. Works with prefix and slash commands too! Dependencies: Select

LunarCodes 11 Dec 12, 2022
DiscordJs13-handler is the solution for all the discord.js developper who want a complete handler for slash commands

DiscordJs13-handler is the solution for all the discord.js developper who want a complete handler for slash commands

null 9 Jul 2, 2022
A discord bot to track "owo", usually used to help with OwO bot. Made with Discord.js v13 includes Slash commands, Leaderboards, Auto Resets etc.

Discord-OwO-tracker A discord bot to track "owo", usually used to help with OwO bot Requirements Discord.js v13 (npm install discord.js@latest) applic

Astrex 4 Nov 24, 2022
Discord.js bot starter template, Slash Commands only (Raymond forced me to make a bot template)

boat-template Raymond forced me to make a bot template This template is meant is just for stupidness ig Getting Started Rename the config.example.ts t

Drxckzyz tha idiot 3 Jan 5, 2022
This is the FARM Stack course, where you are going to learn how to build an application from scratch using FASTAPI, React and mongoDB

FARM-Stack-Course This is the FARM Stack course, where you are going to learn how to build an application from scratch using FASTAPI, React and mongoD

Bek Brace 121 Jan 2, 2023
A FARM stack app automated with docker-compose

Expense-Tracker An expense tracker built with FARM stack (FastAPI,React,MongoDB) Requirements Docker Docker-Compose Install and Run To install and run

Deepraj 4 Oct 10, 2022
An easy-to-use library to make your life easier when working with random numbers or random choices in javascript.

vrandom An easy-to-use library to make your life easier when working with random numbers or random choices in javascript. Table of contents Installati

Valerio Cipolla 1 Aug 16, 2022
Avoid CORS issues by using API Routes from Next.js

CORS Demo Avoid CORS issues by using API Routes from Next.js. Get Started Clone the repo git clone [email protected]:gregrickaby/cors-demo.git CD into co

Greg Rickaby 2 Sep 30, 2022
Avoid use of dangerouslySetInnerHTML with this lightweight (2KB) function.

Avoid use of dangerouslySetInnerHTML with this lightweight (2KB) function. Can parse HTML strings into VDom trees, ready to render in your Preact components

James Hill 4 May 14, 2022
Completely free TS/JS one-file source code snippets with tests, which can be copied to avoid extra dependencies (contributions welcome).

TinySource Completely free TS/JS one-file source code snippets with tests, which can be copied to avoid extra dependencies (contributions welcome). Sn

null 81 Jan 3, 2023
Avoid setting up a project from scratch. Start using VRTTV 🎉

VRTTV Boilerplate Avoid setting up a project from scratch. Start using VRTTV ?? View Demo · Report Bug · Request Feature ?? What’s this? Are you tired

Diego Do Santos 32 Nov 24, 2022
Snipes Test Flight apps. Configurable & has the ability to use a burner account for checking the status to avoid bans.

TestFlight Sniper Snipes TestFlight beta apps. Configurable & has the ability to use a burner account for checking the status to avoid bans. Features

eternal 12 Dec 20, 2022
All terminal commands in one place (you can Contribute to it by putting latest commands and adding Readme)

Terminal-Commands All basic terminal commands in one place Show some ❤ by some repositories You can contribute to this readme If you to contribute wit

Shehzad Iqbal 7 Dec 15, 2022
Query for CSS brower support data, combined from caniuse and MDN, including version support started and global support percentages.

css-browser-support Query for CSS browser support data, combined from caniuse and MDN, including version support started and global support percentage

Stephanie Eckles 65 Nov 2, 2022