This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('contextmenu', function(e) { | |
e.preventDefault(); | |
}); | |
document.onkeydown = function(e) { | |
if(event.keyCode == 123) { | |
alert(":^)") | |
return false; | |
} | |
if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) { | |
alert(":^)") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/r4v10l1/discord-bot/ | |
# ---------------------------------------------------------------- | |
import discord, asyncio | |
from discord.ext import commands | |
from dotenv import load_dotenv | |
@client.command() | |
async def join(ctx): # Command where the bot joins for example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
lines_to_delete = 3 | |
for line in range(lines_to_delete): | |
CURSOR_UP_ONE = '\x1b[1A' | |
ERASE_LINE = '\x1b[2K' | |
sys.stdout.write(CURSOR_UP_ONE) | |
sys.stdout.write(ERASE_LINE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/r4v10l1/discord-bot | |
#---------------------------------------------------------------- | |
# Purge commands | |
@client.command(aliases=["clean"]) | |
@commands.check_any(commands.is_owner(), check_waifu(), check_server_owner()) | |
async def purge(ctx, member : str, amount : int): | |
if str(member) == "self": | |
member = ctx.author |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/r4v10l1/discord-bot | |
#---------------------------------------------------------------- | |
# Purge commands | |
@client.command(aliases=["clean"]) | |
@commands.check_any(commands.is_owner(), check_waifu(), check_server_owner()) | |
async def purge(ctx, member : discord.Member, amount : int): | |
def check_purge(check_me): | |
return check_me.author.id == member.id |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/r4v10l1/discord-bot | |
#---------------------------------------------------------------- | |
# Purge commands | |
@client.command(aliases=["clean"]) | |
@commands.check_any(commands.is_owner(), check_waifu(), check_server_owner()) | |
async def purge(ctx, member : discord.Member, amount : int): | |
if amount <= 0: | |
await ctx.send(':warning: **Missing required arguments. Usage:** `n!purge <username> <message_amount>`') | |
debug_print('[Bot] Could not parse negative integer for user: %s' % ctx.author) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
""" | |
# WARNING! | |
# DO not use this script for malicious purposes! | |
# Author: daegontaven - taven#0001 | |
# License: Public Domain | |
# README | |
# I have resigned from using discord indefinitely to pursue schoolwork. | |
# As such I will not be maintaining this script anymore. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Loading screen for furry | |
import time, sys | |
def main(): | |
for n in range(1,10): | |
sys.stdout.write(f"\r [{'-'*n}{' '*(10-n)}]") | |
sys.stdout.flush() | |
time.sleep(0.5) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pyautogui | |
pyautogui.displayMousePosition() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//CROSSHAIR 1 - CSGO-GeRji-fKhTs-CxCOo-bYQZo-WOxoO | |
//CROSSHAIR 2 - CSGO-8rUV9-zrppe-AVArW-95mqJ-7k5BO | |
cl_crosshairalpha "220" | |
cl_crosshaircolor_r "255" | |
cl_crosshaircolor_g "30" | |
cl_crosshaircolor_b "30" | |
cl_crosshairdot "0" | |
cl_crosshairgap "-2" | |
cl_crosshair_t "0" |