2021-11-23 22:51:11 +00:00
2021-11-20 15:59:54 +00:00
2021-11-20 10:43:06 +00:00
import discord
from discord import File , Streaming , Game , Activity , ActivityType , Status
2021-11-20 18:19:42 +00:00
from discord . ext import commands , tasks
2021-12-18 11:37:01 +00:00
import io , aiohttp , asyncio , json , random , logging , requests
2021-11-20 10:43:06 +00:00
foxmsgs = [
' floofy fox ' ,
' here fops ' ,
' owo ' ,
' uwu ' ,
2021-11-28 16:26:38 +00:00
' fox hugz u ' ,
' fox fox fox ' ,
2021-11-20 10:43:06 +00:00
' heres ur fox ' ,
]
2021-11-20 15:59:54 +00:00
def getAllUsers ( ) :
membercount = 0
for guild in bot . guilds :
membercount + = guild . member_count
return membercount
2021-11-20 10:43:06 +00:00
async def is_ginlang ( ctx ) :
"""
2021-11-22 21:07:02 +00:00
are you ginlang or the other dudes ?
2021-11-20 10:43:06 +00:00
"""
2021-11-27 18:57:12 +00:00
if ctx . author . id in [ 287885666941927424 , 160091312081731584 , 894034804503351366 , 296736767158255616 , 831598877320413244 ] :
2021-11-20 10:43:06 +00:00
return True
else :
logchannel = await bot . fetch_channel ( 910622485916037150 )
await logchannel . send ( ' User ' + ctx . author . name + ' # ' + ctx . author . discriminator + ' ( ' + str ( ctx . author . id ) + ' ) has attempted to use a whitelist only command. ' )
return False
logging . basicConfig ( level = logging . INFO )
bot = commands . Bot ( command_prefix = ' gib ' )
@bot.command ( brief = " gives you a fluffy fox " )
async def fox ( ctx ) :
async with aiohttp . ClientSession ( ) as session :
async with session . get ( ' https://foxrudor.de/ ' ) as resp :
file = File ( io . BytesIO ( await resp . read ( ) ) , filename = ' fox.jpg ' )
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
2021-11-24 17:30:00 +00:00
try :
await ctx . send ( random . choice ( foxmsgs ) , file = file )
except :
embed = discord . Embed (
title = " Command ' fox ' failed " ,
2021-11-26 16:56:59 +00:00
description = " Received unexpected error, foxes occupied by ginlang, who is currently hugging them! 413 Payload too Large "
2021-11-24 17:30:00 +00:00
)
return await ctx . send ( embed = embed )
2021-11-23 22:51:11 +00:00
@bot.command ( brief = " give someone a cuddle " )
async def hug ( ctx , * , name = None ) :
2021-12-28 17:57:27 +00:00
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
await ctx . message . delete ( )
2021-12-17 20:48:07 +00:00
if not name :
return await ctx . send ( " Foxtrot hugs " + ctx . author . name . replace ( " @ " , " " ) + " ! :3 " )
nameFixed = name . replace ( " @everyone " , " everyone " ) . replace ( " @here " , " everyone here " )
await ctx . send ( ctx . author . name + f " hugs { nameFixed } ! :3 " )
2021-12-03 20:30:12 +00:00
@bot.command ( brief = " gives the top.gg vote link " )
async def vote ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
await ctx . author . send ( " Vote for Foxtrot on top.gg! <https://top.gg/bot/909103805264724038/vote> " )
2021-11-23 22:51:11 +00:00
2021-11-20 11:22:41 +00:00
@bot.command ( brief = " cattttttttt " )
async def cat ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
await ctx . message . delete ( )
2021-11-20 11:22:41 +00:00
async with aiohttp . ClientSession ( ) as session :
async with session . get ( ' https://some-random-api.ml/animal/cat ' ) as resp :
json = await resp . json ( )
2021-11-20 16:53:11 +00:00
error = json . get ( ' error ' )
if error :
return await ctx . send ( f ' Received unexpected error, unclear instructions, got stuck in toaster! ( { error } ) ' )
2021-11-20 11:22:41 +00:00
await ctx . send ( json [ " fact " ] )
await ctx . send ( json [ " image " ] )
2021-11-20 10:43:06 +00:00
@bot.command ( brief = " gives you a fluffy panda " )
async def panda ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
await ctx . message . delete ( )
2021-11-20 10:43:06 +00:00
async with aiohttp . ClientSession ( ) as session :
async with session . get ( ' https://some-random-api.ml/animal/panda ' ) as resp :
json = await resp . json ( )
2021-11-20 16:53:11 +00:00
error = json . get ( ' error ' )
if error :
return await ctx . send ( f ' Received unexpected error, thats not good! ( { error } ) ' )
2021-11-20 10:43:06 +00:00
await ctx . send ( json [ " fact " ] )
await ctx . send ( json [ " image " ] )
@bot.command ( brief = " omg koala " )
async def koala ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
await ctx . message . delete ( )
2021-11-20 10:43:06 +00:00
async with aiohttp . ClientSession ( ) as session :
async with session . get ( ' https://some-random-api.ml/animal/koala ' ) as resp :
json = await resp . json ( )
2021-11-20 16:53:11 +00:00
error = json . get ( ' error ' )
if error :
return await ctx . send ( f ' Received unexpected error, try our sister game, Minceraft! ( { error } ) ' )
2021-11-20 10:43:06 +00:00
await ctx . send ( json [ " fact " ] )
await ctx . send ( json [ " image " ] )
2021-11-22 21:01:35 +00:00
@bot.command ( hidden = True )
@commands.check ( is_ginlang )
async def restart ( ctx ) :
await ctx . send ( " shutting down. beep boop. " )
await exit ( )
2021-11-20 10:43:06 +00:00
@bot.command ( brief = " bin eaters " )
async def raccoon ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
await ctx . message . delete ( )
2021-11-20 10:43:06 +00:00
async with aiohttp . ClientSession ( ) as session :
async with session . get ( ' https://some-random-api.ml/animal/raccoon ' ) as resp :
json = await resp . json ( )
2021-11-20 16:53:11 +00:00
error = json . get ( ' error ' )
if error :
return await ctx . send ( f ' Received unexpected error, blame ginlang! ( { error } ) ' )
2021-11-20 10:43:06 +00:00
await ctx . send ( json [ " fact " ] )
await ctx . send ( json [ " image " ] )
2021-11-22 21:07:02 +00:00
2021-11-20 10:43:06 +00:00
@bot.command ( hidden = True )
@commands.check ( is_ginlang )
async def activity ( ctx , atype , * , aname ) :
atypes = { ' streaming ' : ActivityType . streaming , ' playing ' : ActivityType . playing , ' listening ' : ActivityType . listening , ' watching ' : ActivityType . watching , ' competing ' : ActivityType . competing }
atype = atype . lower ( )
if atype not in atypes :
await ctx . send ( " invalid activity type. the valid types are " + ' ' . join ( atypes . keys ( ) ) )
return
2021-11-25 20:42:50 +00:00
await bot . change_presence ( activity = Activity ( name = ( aname + f " ¦ { str ( getAllUsers ( ) ) } users " ) , type = atypes [ atype ] , url = " https://www.youtube.com/watch?v=1xBO4pUAs4M " ) )
2021-11-20 10:43:06 +00:00
await ctx . send ( ' Success! ' )
@bot.command ( brief = " gives bot invite link " )
async def invite ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
try :
await ctx . author . send ( """ Add this bot to your server: <https://discord.com/oauth2/authorize?client_id=909103805264724038&permissions=274878203904&scope=bot>
2021-12-18 11:34:28 +00:00
You can also join our official Discord server at < https : / / discord . gg / VrnJFVfSJR > ! """ )
2021-12-28 17:57:27 +00:00
except :
await ctx . send ( f " <@ { ctx . author . id } >. I could not DM you! " )
2021-11-20 10:43:06 +00:00
2021-11-20 14:35:51 +00:00
@bot.command ( brief = " gives information about a minecraft user " )
2021-11-20 10:43:06 +00:00
async def mc ( ctx , * , name = None ) :
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
2021-11-20 10:43:06 +00:00
if not name :
embed = discord . Embed (
title = " No Minecraft user given! " ,
description = " You have not given a minecraft username, therefore I cannot find anything for you! usage: gib mc (name) "
)
return await ctx . send ( embed = embed )
async with aiohttp . ClientSession ( ) as session :
async with session . get ( f ' https://some-random-api.ml/mc?username= { name } ' ) as resp :
json = await resp . json ( )
2021-11-20 14:34:04 +00:00
error = json . get ( ' error ' )
if error :
return await ctx . send ( f ' Received unexpected error, blame Mojang! ( { error } ) ' )
2021-11-20 10:43:06 +00:00
username = json [ " username " ]
uuid = json [ " uuid " ]
2021-11-20 14:34:04 +00:00
#namehistory = ', '.join([f"Name: {i['name']} Changed at: {i['changedToAt']}" for i in json["name_history"]])
embed = discord . Embed ( title = ' Minecraft User Information ' )
2021-11-20 14:38:16 +00:00
embed . set_author ( name = f ' User { username } ' )
2021-11-20 14:34:04 +00:00
embed . add_field ( name = ' UUID ' , value = f ' { uuid } ' , inline = False )
embed . add_field ( name = ' Name History ' , value = f " Name changes: { len ( json [ ' name_history ' ] ) } " , inline = False )
for i in json [ " name_history " ] :
embed . add_field ( name = i [ ' name ' ] , value = f " Changed on: { i [ ' changedToAt ' ] } " )
await ctx . send ( embed = embed )
2021-11-20 18:19:42 +00:00
await ctx . send ( f ' To view names that did not show up here, go to <https://namemc.com/ { username } > ' )
2021-11-20 14:34:04 +00:00
2021-11-20 10:43:06 +00:00
@bot.command ( brief = " gives credits " )
async def credits ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
try :
await ctx . author . send ( """ API endpoints used in this bot are taken from:
2021-11-20 10:43:06 +00:00
https : / / foxrudor . de /
https : / / some - random - api . ml
https : / / shitfest . net
""" )
2021-12-28 17:57:27 +00:00
except :
await ctx . send ( f " <@ { ctx . author . id } >. I could not DM you! " )
2021-11-20 10:43:06 +00:00
@bot.command ( brief = " random meme " )
async def meme ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
2021-11-20 10:43:06 +00:00
async with aiohttp . ClientSession ( ) as session :
2021-11-22 21:31:57 +00:00
async with session . get ( ' https://api.shitfest.net/v2/random.php ' ) as resp :
2021-11-20 10:43:06 +00:00
json = await resp . json ( )
2021-12-28 17:57:27 +00:00
await ctx . send ( f """ *Command executed by { ctx . author . name } # { ctx . author . discriminator } *
""" " https://shitfest.net/ """ + json [ " name " ] )
2021-12-18 11:34:28 +00:00
2021-11-24 21:11:14 +00:00
2021-11-20 10:43:06 +00:00
2022-03-06 15:08:18 +00:00
@bot.command ( brief = ' Kitsune Discord server invite ' , aliases = [ " support " ] )
2021-12-10 22:18:50 +00:00
async def server ( ctx ) :
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
try :
await ctx . author . send ( """ The official discord server for Foxtrot is discord.gg/mDBfnysAqd
2021-12-10 22:18:50 +00:00
Our server contains everything we do and work on . """ )
2021-12-28 17:57:27 +00:00
except :
await ctx . send ( f " <@ { ctx . author . id } >. I could not DM you! " )
2021-12-10 22:18:50 +00:00
2021-11-20 15:14:14 +00:00
@bot.command ( brief = ' makes things gay ' )
2021-12-03 22:19:36 +00:00
async def gay ( ctx , url = None ) :
2021-12-28 17:57:27 +00:00
await ctx . message . delete ( )
2021-12-29 12:16:57 +00:00
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
2021-11-20 15:14:14 +00:00
await ctx . trigger_typing ( )
async with aiohttp . ClientSession ( ) as session :
async with session . get (
2021-12-03 22:19:36 +00:00
f ' https://some-random-api.ml/canvas/gay?avatar= { url } '
2021-11-20 15:14:14 +00:00
) as af :
if 300 > af . status > = 200 :
fp = io . BytesIO ( await af . read ( ) )
file = discord . File ( fp , " gay.png " )
embed = discord . Embed (
title = " gaaaaaay " ,
color = 0xf1f1f1 ,
)
embed . set_image ( url = " attachment://gay.png " )
2021-11-20 16:56:01 +00:00
await ctx . send ( embed = embed , file = file )
else :
2021-12-03 22:19:36 +00:00
await ctx . send ( """ An unexpected error happened, Steve.. I told you this already!
Are you sure that the image URL you sent is correct ? Image attachments currently do not work ! """ )
2021-11-20 15:14:14 +00:00
2022-01-03 13:47:49 +00:00
@bot.command ( brief = ' where the wetters go ' )
async def jail ( ctx , url = None ) :
await ctx . message . delete ( )
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
await ctx . trigger_typing ( )
async with aiohttp . ClientSession ( ) as session :
async with session . get (
f ' https://some-random-api.ml/canvas/jail?avatar= { url } '
) as af :
if 300 > af . status > = 200 :
fp = io . BytesIO ( await af . read ( ) )
file = discord . File ( fp , " amongus.png " )
embed = discord . Embed (
title = " dont drop the soap! " ,
color = 0xf1f1f1 ,
)
embed . set_image ( url = " attachment://amongus.png " )
await ctx . send ( embed = embed , file = file )
else :
await ctx . send ( """ An unexpected error happened, Steve.. I told you this already!
Are you sure that the image URL you sent is correct ? Image attachments currently do not work ! """ )
@bot.command ( brief = ' similar to esmBot blurple, but with 104 % more fox ' )
async def blurple ( ctx , url = None ) :
await ctx . message . delete ( )
await ctx . send ( f " *Command executed by { ctx . author . name } # { ctx . author . discriminator } * " )
await ctx . trigger_typing ( )
async with aiohttp . ClientSession ( ) as session :
async with session . get (
f ' https://some-random-api.ml/canvas/blurple?avatar= { url } '
) as af :
if 300 > af . status > = 200 :
fp = io . BytesIO ( await af . read ( ) )
file = discord . File ( fp , " amongus.png " )
embed = discord . Embed (
title = " amogus? " ,
color = 0xf1f1f1 ,
)
embed . set_image ( url = " attachment://amongus.png " )
await ctx . send ( embed = embed , file = file )
else :
await ctx . send ( """ An unexpected error happened, Steve.. I told you this already!
Are you sure that the image URL you sent is correct ? Image attachments currently do not work ! """ )
2021-11-20 15:14:14 +00:00
2021-11-20 10:43:06 +00:00
@bot.event
async def on_ready ( ) :
await asyncio . sleep ( 1 ) # someone on stackoverflow said discord does not like if you are speedy
2021-11-24 21:11:14 +00:00
await bot . change_presence ( activity = Streaming ( name = f " Dev Mode ¦ { str ( getAllUsers ( ) ) } users " , url = " https://www.youtube.com/watch?v=1xBO4pUAs4M " ) )
2021-11-20 10:43:06 +00:00
with open ( ' token.json ' , ' r ' ) as file :
2021-11-20 15:59:54 +00:00
# this breaks if you are on windows
2021-11-20 10:43:06 +00:00
token = ' ' . join ( [ line [ : - 1 ] for line in file . readlines ( ) ] )
bot . run ( token )