cleanup music, updated readme
This commit is contained in:
parent
87c6832f1c
commit
6b1a203b68
@ -1,18 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Discord.Modules;
|
||||
using Discord.Commands;
|
||||
using System.IO;
|
||||
using Discord;
|
||||
using Discord.Audio;
|
||||
using YoutubeExtractor;
|
||||
using System.Threading;
|
||||
using System.Diagnostics;
|
||||
using NadekoBot.Extensions;
|
||||
using System.Net;
|
||||
using System.Globalization;
|
||||
using System.Collections.Concurrent;
|
||||
using NadekoBot.Classes.Music;
|
||||
using Timer = System.Timers.Timer;
|
||||
@ -162,14 +153,6 @@ namespace NadekoBot.Modules {
|
||||
await e.Send($"Now Playing **{player.CurrentSong.Title}**");
|
||||
});
|
||||
|
||||
cgb.CreateCommand("clrbfr")
|
||||
.Alias("clearbuffers")
|
||||
.Description("Clears the music buffer across all servers. **Owner only.**")
|
||||
.Do(e => {
|
||||
if (NadekoBot.OwnerID != e.User.Id) return;
|
||||
Directory.Delete("StreamBuffers", true);
|
||||
});
|
||||
|
||||
cgb.CreateCommand("sh")
|
||||
.Description("Shuffles the current playlist.")
|
||||
.Do(async e => {
|
||||
|
@ -5,7 +5,6 @@ You might want to join my discord server where i can provide help etc. https://d
|
||||
|
||||
##This section will guide you through how to setup NadekoBot from the source code
|
||||
#### If you want to semi-easily setup the bot, go to [releases](https://github.com/Kwoth/NadekoBot/releases)
|
||||
After you have cloned this repo, move the libopus and libsodium from the DLLs folder to the bin/debug. And after removing all of Discord.Net's project references, add other dlls from dll folder as a reference. Those are part of the libraries you will need for your project. The other part should resolve after you start the project for the first time.
|
||||
|
||||
In your bin/debug folder (or next to your exe), you must have a file called 'credentials.json' in which you will store all the necessary data to make the bot know who the owner is, where to store data, etc.
|
||||
|
||||
@ -46,7 +45,7 @@ In your bin/debug folder (or next to your exe), you must have a file called 'cre
|
||||
Download [this folder](http://s000.tinyupload.com/index.php?file_id=54172283263968075500) which contains images and add it next to your .exe in order to make the $draw, $flip, rip and similar functions work.
|
||||
|
||||
You should replace nadeko's image with the image of your bot in order to make the hide/unhide commands work as intended.
|
||||
You should **remove** Discord.Net projects from your solution, and use DLLs instead, as instructed above.
|
||||
You should **remove** Discord.Net projects from your solution, and use add reference to the Discord.NET DLLs in your bin/debug.
|
||||
|
||||
**You are all set.**
|
||||
Fire up visual studio, wait for it to resolve dependencies and start NadekoBot.
|
||||
|
Loading…
Reference in New Issue
Block a user