this is some shitty physics system that doesnt handle rotations and was made in like 3 hours on an almost caffeine overdose
Disable ipv6 and become one with the ipv4 singularity
Desubot, the shitty discord bot I wrote in 2017
https://gitlab.com/louisoft01/desu_bot
I don't know c# anymore and have no care to as I don't use windows.
https://gitlab.com/louisoft01/desu_bot
using System;
using System.Threading.Tasks;
using Discord;
using Discord.WebSocket;
namespace desubot
{
public class Program
{
private static DiscordSocketClient _client;
private static string print;
public static async Task Main(string[] args)
{
_client = new DiscordSocketClient();
_client.Log += _client_Log;
// creates logs
_client.MessageReceived += MessageReceivedAsync;
// does some command shit
string token = ""; //token goes here
await _client.LoginAsync(TokenType.Bot, token);
await _client.StartAsync();
await Task.Delay(-1);
}
private static Task _client_Log(LogMessage arg)
{
Console.WriteLine(arg);
return Task.CompletedTask;
}
private static async Task MessageReceivedAsync(SocketMessage message)
{
if (message.Content == "£ping")
{
await message.Channel.SendMessageAsync("Pong!");
}
if (message.Content == "£alex")
await message.Channel.SendMessageAsync("alex is a stupid nigger");
if (message.Content == "£desu")
await message.Channel.SendMessageAsync("desu desu desu! https://youtu.be/60mLvBWOMb4");
if (message.Content == "£bored")
await message.Channel.SendMessageAsync("https://louisoft01.com/images/waifu.jpg");
if (message.Content == "£meme")
await message.Channel.SendMessageAsync("https://louisoft01.com/images/egg.jpg");
if (message.Content == "£help")
await message.Channel.SendMessageAsync("Commands: `£ping £alex £desu £bored £meme £monika £kotori £waifu £^ ~~£server~~ £about`");
if (message.Content.ToLowerInvariant().Contains("£trap"))
await message.Channel.SendMessageAsync("https://i.imgur.com/yGL8vL5.png");
if (message.Content.ToLowerInvariant().Contains("£gay"))
await message.Channel.SendMessageAsync("https://louisoft01.com/logs/stopbeingabich/yag.jpg");
if (message.Content == "£^")
await message.Channel.SendMessageAsync("good point desu");
if (message.Content == "£waifu")
await message.Channel.SendMessageAsync("karen is waifu");
if (message.Content == "£kotori")
await message.Channel.SendMessageAsync("kotori is second girl");
if (message.Content == "£monika")
await message.Channel.SendMessageAsync("Just monika");
if (message.Content == "£trash")
await message.Channel.SendMessageAsync("Nico http://decaf.kouhi.me/lovelive/images/archive/4/42/20160706031910%21Nico_smile_r438.jpg");
if (message.Content == "£about")
await message.Channel.SendMessageAsync("Desu Bot Alpha Created By Louisoft01 https://louisoft01.com");
}
}
}
I don't know c# anymore and have no care to as I don't use windows.
I killed the token in my discord account ages ago (I think) also I think api changes mean desubot would no longer work
When I was in 12 years old I wrote "ransomware", but never distrubuted it. It was a dumb screenlocker that told the user to email my old outlook email for it. I never distrubuted it but but I dont understood why I wrote it as it really searved no poupuse. I wrote it in visual basic and I dont care much about VB as I dont use use Windows. Also the code got lost when my old desktop broke as I fomatted my old 750 GB HDD
BTW Louis and I run the same distro: Arch
btw i use arch, and you should too, shame on you.
enable IPv6 or suffer from IPv4 deprectiation
No I just ran it in a virtual machine. IDEK why I wrote it. But I dont care as that was 4-6 years ago, which is a long time
*TO ANY NSA/CIA/FBI AGENTS READING THIS POST*
***I AM A GOOD CITIZEN WHO NEVER DISTRUBUTED THIS CODE INTO THE WILD. I DONT EVEN HAVE THE CODE ANYMORE.***
*TO ANY NSA/CIA/FBI AGENTS READING THIS POST*
***I AM A GOOD CITIZEN WHO NEVER DISTRUBUTED THIS CODE INTO THE WILD. I DONT EVEN HAVE THE CODE ANYMORE.***
btw i use arch, and you should too, shame on you.
enable IPv6 or suffer from IPv4 deprectiation
I'm not sure this entirely fits to the topic but the initial commit of ninechan had this beauty.