Hello, I was wondering how I could add plugins to the developer version. I added the .cs file from Visual Studio to folder Plugins but it didn't work.
My code:
using System;
using System.Linq;
using TS3Client;
using TS3Client.Commands;
using TS3Client.Full;
public class NowPlaying : ITabPlugin
{
public void Initialize(MainBot bot) {
}
public void Dispose() {
}
}
Errors:
The type or namespace name 'MainBot' could not be found (are you missing a using directive or an assembly reference?)
The type or namespace name 'ITabPlugin' could not be found (are you missing a using directive or an assembly reference?)
Hello, I was wondering how I could add plugins to the developer version. I added the .cs file from Visual Studio to folder Plugins but it didn't work.
My code:
Errors:
The type or namespace name 'MainBot' could not be found (are you missing a using directive or an assembly reference?)
The type or namespace name 'ITabPlugin' could not be found (are you missing a using directive or an assembly reference?)