Add Dub, Trips and Quads check to !checkem (please fix if you see this)
This commit is contained in:
parent
1295ed6206
commit
c82d6ec666
1 changed files with 47 additions and 13 deletions
|
@ -19,20 +19,54 @@ namespace Geekbot.net.Modules
|
||||||
[Command("checkem", RunMode = RunMode.Async), Summary("Check for dubs")]
|
[Command("checkem", RunMode = RunMode.Async), Summary("Check for dubs")]
|
||||||
public async Task MuhDubs()
|
public async Task MuhDubs()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var sb = new StringBuilder();
|
int number = rnd.Next(10000000, 99999999);
|
||||||
|
var dubtriqua = "";
|
||||||
sb.AppendLine($"Check em {Context.User.Mention}");
|
|
||||||
sb.AppendLine($"**{rnd.Next(100000, 99999999)}**");
|
var ns = GetIntArray(number);
|
||||||
sb.AppendLine(checkEmImages.GetRandomCheckEmPic());
|
Console.WriteLine(ns.Length);
|
||||||
|
if (ns[7] == ns[6])
|
||||||
await ReplyAsync(sb.ToString());
|
{
|
||||||
}
|
dubtriqua = "DUBS";
|
||||||
catch (Exception e)
|
if (ns[6] == ns[5])
|
||||||
{
|
{
|
||||||
Console.WriteLine(e.Message);
|
dubtriqua = "TRIPS";
|
||||||
|
if (ns[5] == ns[4])
|
||||||
|
{
|
||||||
|
dubtriqua = "QUADS";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var sb = new StringBuilder();
|
||||||
|
sb.AppendLine($"Check em {Context.User.Mention}");
|
||||||
|
sb.AppendLine($"**{number}**");
|
||||||
|
if (!string.IsNullOrEmpty(dubtriqua))
|
||||||
|
{
|
||||||
|
sb.AppendLine($":tada: {dubtriqua} :tada:");
|
||||||
|
}
|
||||||
|
sb.AppendLine(checkEmImages.GetRandomCheckEmPic());
|
||||||
|
|
||||||
|
await ReplyAsync(sb.ToString());
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine(e.Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private int[] GetIntArray(int num)
|
||||||
|
{
|
||||||
|
List<int> listOfInts = new List<int>();
|
||||||
|
while (num > 0)
|
||||||
|
{
|
||||||
|
listOfInts.Add(num % 10);
|
||||||
|
num = num / 10;
|
||||||
|
}
|
||||||
|
listOfInts.Reverse();
|
||||||
|
return listOfInts.ToArray();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue