3ddelano / discord-autotyper-python

A python script to auto send commands in Discord or any other program.
MIT License
15 stars 5 forks source link
auto-type auto-typer autotype autotyper discord discord-automation discord-spammer python python-automation

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

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

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

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