What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

What is the code to make my mount use Run! ability?

toastnbutter

New Member
Joined
Oct 3, 2014
Messages
130
Reaction score
0
Can someone let me know what the code to use the Run! ability every 30 seconds is?
 
Run Howto

Can someone let me know what the code to use the Run! ability every 30 seconds is?

You want this buddy :cool:

Code:
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()
       {
       }
   }
}
 
Last edited:
Back
Top