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 "user01";}
public static string GetPluginVersion() {return "1.0.0.0";}
public static string GetPluginDescription() {return "";}
private void processLootDice(Item thisItem) {
thisItem.Dice(true);
}
public void PluginRun() {
BlockClientDice(true);
onLootDice += processLootDice;
while (true) {
Thread.Sleep(100);
Application.DoEvents();
}
}
public void PluginStop() {
BlockClientDice(false);
}
}
}