using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using Oxide.Core;
using Oxide.Core.Libraries;
using Oxide.Core.Libraries.Covalence;
using Oxide.Core.Plugins;
using System;
using System.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Oxide.Plugins
{
[Info("Pound Bot", "MrPoundsign", "2.0.0")]
[Description("Connector for the Discord bot PoundBot.")]
Thanks, @GameTeamWar, but at this time, it's not possible to translate the commands. I will do some research and see if I can get it into the lang files.
using Newtonsoft.Json; using Newtonsoft.Json.Linq; using Oxide.Core; using Oxide.Core.Libraries; using Oxide.Core.Libraries.Covalence; using Oxide.Core.Plugins; using System; using System.Linq; using System.Collections.Generic; using System.Text.RegularExpressions;
namespace Oxide.Plugins { [Info("Pound Bot", "MrPoundsign", "2.0.0")] [Description("Connector for the Discord bot PoundBot.")]
class PoundBot : CovalencePlugin { const string EntityDeathURI = "/entity_death"; const string ApiMessageBaseURI = "/messages"; const string ApiRolesURI = "/roles"; const string ApiChatURI = "/chat"; const string ApiRegisteredPlayersURI = "/players/registered"; const string ApiDiscordAuthURI = "/discord_auth"; const string ApiClansURI = "/clans";
} }