oh yeah woo yeah
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

227 lines
8.2 KiB

5 years ago
using Discord;
using Discord.Addons.Interactive;
using Discord.Commands;
using Kehyeedra3.Services.Models;
4 years ago
using Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal;
5 years ago
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kehyeedra3.Commands
{
public class Stuff : InteractiveBase<SocketCommandContext> ///////////////////////////////////////////////
{
[Command("delet"), Summary("Posts a delet this image. Can be used on other channels.")]
public async Task DeletThis(ITextChannel channel = null)
5 years ago
{
string imgdirpath = Path.Combine(Environment.CurrentDirectory, "Delet");
DirectoryInfo imgdir = new DirectoryInfo(imgdirpath);
var files = imgdir.GetFiles();
var item = files[Bot._rnd.Next(0, files.Length)];
if (channel == null)
{
await Context.Channel.SendFileAsync(item.FullName);
}
else
{
await channel.SendFileAsync(item.FullName);
}
5 years ago
}
[Command("ratetrap"), Summary("Rates your or another person's trap potential as a percentage")]
public async Task RateTrap( string name = null)
5 years ago
{
if (name == null)
5 years ago
{
Random rando = new Random();
Random rando1 = new Random();
int trapRating0 = rando.Next(0, 101);
if (trapRating0 == 100)
{
int trapRating1 = rando1.Next(0, 1001);
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nI'd say right now you're {trapRating1}% passable");
}
else
{
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nI'd say right now you're {trapRating0}% passable");
}
5 years ago
}
else
{
Random rando = new Random();
Random rando1 = new Random();
int trapRating0 = rando.Next(0, 101);
if (trapRating0 == 100)
{
int trapRating1 = rando1.Next(0, 1001);
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nI'd say right now {name} is {trapRating1}% passable");
}
else
{
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nI'd say right now {name} is {trapRating0}% passable");
}
5 years ago
}
5 years ago
}
5 years ago
[Command("ratertrap"), Summary("ratertrap")]
public async Task RaterTrap()
{
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nPlease do not be like this man http://tinyurl.com/y7lj6nob");
5 years ago
}
[Command("8b"), Summary("Gives a prediction like a generic 8ball command that every self respecting discord bot must have")]
public async Task VapeBall([Remainder] string input)
{
Random rando = new Random();
string[] predictions = new string[]
{
"No but you're still gay",
"I think so",
"Mayhaps",
"Yeah but you're still gay",
"No kys"
};
int randomIndex = rando.Next(predictions.Length);
string text = predictions[randomIndex];
await ReplyAsync($"{Context.User.Mention}\n{text}");
5 years ago
}
[Command("math"), Summary("It's a calculator, that's what compooter do")]
public async Task Mathboi([Remainder] string input)
{
string result = new DataTable().Compute(input, null).ToString();
await Context.Channel.SendMessageAsync($"{Context.User.Mention} {input} = {result}");
}
[Command("roll"), Summary("Rolls dice. Eg. 'roll d20'")]
public async Task RollDice([Remainder] string input)
{
int dinput = int.Parse(input.Substring(input.IndexOf("d")).Replace("d", ""));
int output = SRandom.Next(dinput);
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n{output+1}");
5 years ago
}
[Command("remind"), Summary("Reminds you in a given time. (days, hours, minutes) Eg. 'remind 1 2 3 wash hands' would remind you in 1 day, 2 hours, 3 minutes to wash your hands")]
4 years ago
public async Task Reminder(ulong d, ulong h, ulong m, [Remainder] string r = null)
5 years ago
{
string remin = "";
4 years ago
string refix = "";
ulong sen = (d * 86400) + (h * 3600) + (m * 60);
5 years ago
ulong yeedraStamp = DateTime.UtcNow.ToYeedraStamp();
4 years ago
if (r == null)
{
r = "Fill the text field next time you make a reminder.";
}
while (m > 59)
5 years ago
{
h += 1;
m -= 60;
}
while (h > 23)
{
d += 1;
h -= 24;
}
5 years ago
4 years ago
if (d > 0)
{
remin += $" {d} day";
if (d > 1)
{
remin += $"s";
}
}
if (h > 0)
{
remin += $" {h} hour";
if (h > 1)
{
remin += $"s";
}
}
if (m > 0)
{
remin += $" {m} minute";
if (m > 1)
{
remin += $"s";
}
}
if (d == 0 && h == 0 && m == 0)
{
refix += "right now";
}
else
{
refix += "in";
}
if (sen != 0)
5 years ago
{
if (sen < 63072000)
{
var reminder = new Reminder
{
UserId = Context.User.Id,
Message = $"{r}",
Created = yeedraStamp,
Send = sen + yeedraStamp
};
5 years ago
using (var Database = new ApplicationDbContextFactory().CreateDbContext())
{
Database.Reminders.Add(reminder);
await Database.SaveChangesAsync().ConfigureAwait(false);
}
}
else
{
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nAre you sure you need a reminder 2 years in the future..? \nAre you stupid?");
return;
}
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nOk, I'll remind you {refix}{remin}.");
5 years ago
}
else
5 years ago
{
var dmchannel = await Bot._bot.GetUser(Context.User.Id).GetOrCreateDMChannelAsync();
await dmchannel.SendMessageAsync($"**You literally just told me to DM you:**\n\n{r}");
5 years ago
}
}
[Command("reminders",RunMode = RunMode.Async), Summary("List reminders")]
public async Task ListReminders(string manage = null)
5 years ago
{
using (var Database = new ApplicationDbContextFactory().CreateDbContext())
5 years ago
{
string rlist = "";
var user = Context.User;
foreach (Reminder reminder in Database.Reminders)
{
if (reminder.UserId == Context.User.Id)
{
rlist += $"ID: {reminder.Id} Made at: **GMT{reminder.Created.FromYeedraStamp()}**\n";
}
}
if (manage == null)
{
await Context.Channel.SendMessageAsync(rlist);
return;
}
//else
//{
// await Context.Channel.SendMessageAsync($"Which reminder would you like to edit?\n\n{rlist}");
// var reply = await NextMessageAsync();
// long rep = long.Parse(reply.Content);
// if (rep ==)
//}
5 years ago
}
}
}
}