Giter Site home page Giter Site logo

3ddelano / discord-autotyper-python Goto Github PK

View Code? Open in Web Editor NEW
14.0 1.0 5.0 30 KB

A python script to auto send commands in Discord or any other program.

License: MIT License

Python 98.93% Batchfile 1.07%
discord python autotyper autotype discord-automation auto-typer auto-type python-automation discord-spammer

discord-autotyper-python's Introduction

discord-autotyper-python

A python script to auto send commands in Discord or any other program.
Python3

DISCLAIMER Use at your own risk! I am not responsible if you get banned for spamming or using autotype. I do not take responsibility for how you use this program nor do I recommend you use it in any way that may infringe on any software / buisness. This program is not endorsed or affiliated with Discord or any bot for Discord. Usage of this application may also cause a violation of the agreed Terms of Service between you and Discord or a bot.

Features

  • Start / Stop via hotkey

  • Supports sending one time commands via hotkey

  • Supports individually timed commands

  • Supports ratelimit for sending messages in Discord

  • Supports auto stop after certain time

  • Supports randomly skipping commands to avoid blacklisting and ban

Installation

Download the repo as a zip and extract it to a folder. Open a command prompt in that folder and and then run the command pip install -r requirements.txt (needs Python3 and pip).

Usage

  • Rename the file settings-example.json to settings.json.
  • Edit the settings.json as per your need (read settings.json section below)
  • Open a command prompt in the folder and run python autotyper.py or simply run the file run.cmd (Windows) .If you have python3 installed separately run python3 autotyper.py
  • Now either go to the discord web app or desktop app and click on the textbox
  • Finally press the hotkey to start the autotyping

settings.json

This is the configuration file used by the program.

Key Type Value
hotkey string The KeyCode of the key to start and stop the autotyping. eg. Key.f5 or Key.f6
exitkey string The KeyCode of the key used to exit the program. eg. Key.f5 or Key.f6
commandDelay float The delay before sending each command (used for bots which use overall ratelimiting)
showKeyCode boolean Used as a helper to show the KeyCode of the pressed key
randomSkip float A value from 0 to 1 indicating whether to skip a command randomly to prevent ban and blacklisting
randomTime integer The maximum value in seconds to choose the random delay between commands (value is added to waittime)
stopAfter float The time in minutes to stop the autotyping after. (set to -1 for infinite autotype)
commands array An array of command object
onetime object A JS object containing some settings. See onetime object below

command object

Each command is a object with three keys

Key Type Value
text string The command you want to send
waittime integer The time in seconds to wait before sending the command
randomtime boolean If enabled, a random delay will be added to the waittime so as to reduce the chance of getting banned or blacklisted

onetime object

Key Type Value
hotkey string The KeyCode of the key to start the onetime commands. eg. Key.f7 or Key.f8
delay integer The time in seconds to wait before sending each of the onetime commands
commands array An array of strings each containing the command text to be sent.

Examples

Single command

You want to send the command pls beg after every 45s with a random delay. You want a command to be skipped 10% of the time. The start/stop key is F5 and the exit key is F6. Then the following is the setttings.json file:

{
    "hotkey": "Key.f5",
    "exitkey": "Key.f6",
    "showKeyCode": false,
    "commandDelay": 1,
    "showKeyCode": false,
    "randomSkip": 0.2,
    "randomTime": 60,
    "stopAfter": -1,
    "commands": [
        {
            "text": "pls beg",
            "waittime": 45,
            "randomtime": true
        }
    ],
    "onetime": {
        "hotkey": "Key.f8",
        "delay": 3,
        "commands": []
    }
}
Multiple commands

You want to send the command pls beg after every 45s with a random delay, pls fish after 40s with no random delay and pls hunt after 40s with a random delay. You don't want a command to be skipped randomly. The start/stop key is F9 and the exit key is F10. Then the following will be the setttings.json file:

{
    "hotkey": "Key.f9",
    "exitkey": "Key.f10",
    "commandDelay": 1,
    "showKeyCode": false,
    "randomSkip": 0.2,
    "randomTime": 60,
    "stopAfter": -1,
    "commands": [
        {
            "text": "pls beg",
            "waittime": 45,
            "randomtime": true
        },
        {
            "text": "pls fish",
            "waittime": 40,
            "randomtime": false
        },
        {
            "text": "pls hunt",
            "waittime": 40,
            "randomtime": true
        }
    ],
    "onetime": {
        "hotkey": "Key.f8",
        "delay": 3,
        "commands": []
    }
}
Using onetime commands

You want the commands pls sell fish all , pls sell deer all and pls sell bread all to be sent when the F7 key is pressed. The delay between each command is 4s. Then the following will be the onetime object:

{
    "key": "Key.f7",
    "delay": 4,
    "commands": [
        "pls sell fish all",
        "pls sell deer all",
        "pls sell bread all"
    ]
}
Using auto stop after

You want the autotype to automatically stop after 4hrs. Then the following will be the settings.json file:

{
    ...,
    ...,
    "stopAfter": 240,
    ...,
    ...
}

Prevent Bans and Blacklisting

  • Make a new server with a few channels and invite the bot you want to use the commands on.
  • In settings.json make sure to set the randomSkip and enable randomtime for each command
  • Pause the autotyper often and change channels

Bugs / Suggestions

Report any bugs / glitch, or make a suggestion using the github issues section.

Support

Join the Discord Server: 3ddelano Cafe
Buy Me A Coffee

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.