using System;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;
namespace DefaultNameSpace{
public class DefaultClass : Core
{
public static string GetPluginAuthor()
{
return "Bots Inc";
}
public static string GetPluginVersion()
{
return "1.0.0.0";
}
public static string GetPluginDescription()
{
return "Use Run! on CD while mounted";
}
//Call on plugin start
public void PluginRun()
{
while (true)
{
Thread.Sleep(10);
if (isMounted() == true)
{
Thread.Sleep(10);
while (!UseSkill("Run!"))
{
Thread.Sleep(10);
}
}
}
}
//Call on plugin stop
public void PluginStop()
{
}
}
}