Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Styx.Plugins.PluginClass;
- using Styx.Helpers;
- using Styx.WoWInternals;
- namespace ClickIt
- {
- public class ClickIt : HBPlugin
- {
- private string macro = "/2 {Diamond}{star} R1/3k+ experienced players offering 2200, 2400, 2700 & Gladiator or any custom rating to any class in Arena & RBGs!{star}{star}Add on Skype for prices/details - bradz92. Carries done in 2 hours to 2 days.{star}{diamond}";
- private readonly WaitTimer _Timer = WaitTimer.ThirtySeconds;
- public override void Pulse()
- {
- if (_Timer.IsFinished)
- {
- _Timer.Reset();
- Logging.Write("Running macro...");
- Lua.DoString("RunMacroText(\"{0}\")", macro);
- Logging.Write("RunMacroText(\"{0}\")", macro);
- }
- }
- public override string Name { get { return "ClickIt"; } }
- public override string Author { get { return "Trinity04"; } }
- public override Version Version { get { return new Version(2, 0, 0, 0); } }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement