All Projects → haccer → Discord Scripts

haccer / Discord Scripts

Licence: mit
A collection of scripts to enhance your Discord experience.

Programming Languages

python
139335 projects - #7 most used programming language
script
160 projects

Projects that are alternatives of or similar to Discord Scripts

Vortex
🌀 Discord Moderation Bot
Stars: ✭ 283 (+988.46%)
Mutual labels:  discord, logging
Clog
Package clog is a channel-based logging package for Go
Stars: ✭ 151 (+480.77%)
Mutual labels:  discord, logging
Term
Unix terminal drain and formatter for slog-rs
Stars: ✭ 17 (-34.62%)
Mutual labels:  logging
Liblog
LibLog is a single file for you to either copy/paste or install via nuget, into your library/framework/application to provide a logging abstraction.
Stars: ✭ 925 (+3457.69%)
Mutual labels:  logging
Sls Logrus Hook
Logrus hook for aliyun sls
Stars: ✭ 23 (-11.54%)
Mutual labels:  logging
Jslogger
Integrate JavaScript Logging with ASP.NET Core Logging APIs
Stars: ✭ 19 (-26.92%)
Mutual labels:  logging
Fs0c13ty Bot
🤖 A discord bot made to help you in moderation.
Stars: ✭ 24 (-7.69%)
Mutual labels:  discord
Nadekobot
Open source, general-purpose Discord chat bot written in C#
Stars: ✭ 892 (+3330.77%)
Mutual labels:  discord
Python Json Logger
Json Formatter for the standard python logger
Stars: ✭ 931 (+3480.77%)
Mutual labels:  logging
Thoth
An Error Logger for Go
Stars: ✭ 22 (-15.38%)
Mutual labels:  logging
Yii2 Slack Log
Pretty Slack log target for Yii 2
Stars: ✭ 24 (-7.69%)
Mutual labels:  logging
Lumberjack
Web based log viewer for Erlang and Elixir applications
Stars: ✭ 22 (-15.38%)
Mutual labels:  logging
Sysmontools
Utilities for Sysmon
Stars: ✭ 903 (+3373.08%)
Mutual labels:  logging
Yii2 Telegram Log
Telegram log target for Yii 2
Stars: ✭ 24 (-7.69%)
Mutual labels:  logging
Lambdalogs
A CLI tool to trace AWS Lambda calls over multiple CloudWatch log groups.
Stars: ✭ 18 (-30.77%)
Mutual labels:  logging
Logger
HTTP middleware for Go that logs web requests to an io.Writer.
Stars: ✭ 24 (-7.69%)
Mutual labels:  logging
Simplog
A simple logger. No dependencies, no special features, just logging.
Stars: ✭ 17 (-34.62%)
Mutual labels:  logging
Mex Vocabulary
MEX Vocabulary: a lightweight machine learning interchange format
Stars: ✭ 19 (-26.92%)
Mutual labels:  logging
Satana
Satana is a free to use selfbot with premium features for nothing at all - no strings attached.
Stars: ✭ 24 (-7.69%)
Mutual labels:  discord
Actions Status Discord
Discord Notification Made Easy.
Stars: ✭ 26 (+0%)
Mutual labels:  discord

Discord Scripts

Python 3.5 GitHub license

A collection of Discord scripts I made a while ago for other people. Replace the "your_token_goes_here" with your Discord token. A short tutorial to get your Discord token is located here.

Requirements

  • Python 3.5
  • pip3 install -r requirements.txt

del.py

A delete script to mass delete your messages from a channel.

Usage

You can delete a specific number of messages by entering .del number, or you can delete every message by just entering .del in the channel.

Example: .del 50 will delete last 50 messages in the channel.

log_discord.py

A proof-of-concept script to log Discord chatrooms. This can relay logged messages to a private Discord channel and/or save them to a text file. This is very useful for spying on people.

Usage & Configuration

Instructions on how to configure this for your needs are annotated in the script:

@c.event
async def on_message(message):
    # Replace '412905214533838722' with the Discord channel ID you want to log.
    if message.channel.id == "412905214533838722":
        await log_discord(message, "replace with relay channel id", "name_of_file.txt")

Copy this if statement for each channel you want to log, replacing the default values with your own.

Example Logging Multiple Channels

@c.event
async def on_message(message):
    if message.channel.id == "452307014715179022":
        await log_discord(message, "452307600785276933", "log_452307014715179022.txt")
    if message.channel.id == "532307014715171337":
        await log_discord(message, "265407600785277777", "log_532307014715171337.txt")

collect.py

A script that will collect and save the last ~11k messages from a channel.

Usage

Same usage as del.py -- the scrape is triggered by .del to let the users who see it think you are just deleting your messages.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].