Can you use a DLL reference in plugins??
It's my first time making a plugin but when I call to use a DLL reference I get a compiling error
It's my first time making a plugin but when I call to use a DLL reference I get a compiling error
Code:
using System;
using AIMLbot;
using Styx.Logic;
using System;
using Styx.Helpers;
using Styx.Logic.Combat;
using Styx.Logic.Pathing;
using System.Threading;
using System.Diagnostics;
using Styx.WoWInternals;
using Styx.WoWInternals.WoWObjects;
using Styx.Plugins.PluginClass;
using Styx;
namespace ConsoleBot
{
public class Program : HBPlugin
{
public static void Main(string[] args)
{
Bot myBot = new Bot();
Code:
Plugin from C:\Users\Cody\Desktop\Honorbuddy_2.0.0.5494\Plugins\AIMLBot could not be compiled! Compiler errors:
File: ConsoleBot.cs Line: 2 Error: The type or namespace name 'AIMLbot' could not be found (are you missing a using directive or an assembly reference?)






