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

Could someone tweak Nick's LazyTrader for me?

QuickStep Howto

https://www.thebuddyforum.com/arche...80145-lazytrader-traderun-automatization.html

Can someone edit his plugin to use Quickstep and Run! skill for mounts like the snowlion? Right now it uses carrot and quickstep for donkey but nothing for mount. Much appreciated if you can do this

Ah, I see this was a crosspost :rolleyes:

Answer here for Run!: https://www.thebuddyforum.com/arche...iscussions/184688-code-mount-run-ability.html

For QuickStep you want to use something like this:

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 QuickStep (correctly) while mounted";
       }

       //Call on plugin start
       public void PluginRun()
       {    
        while (true) {  
            Thread.Sleep(10);
            if (isMounted() == true){
                Thread.Sleep(500);
                if ( (skillCooldown("Quickstep") == 0) && (buffTime("Quickstep (Rank 2)") == 0) )
                {   
                    Thread.Sleep(10);
                    UseSkill("[Perform] Quickstep");
                }
            }      
        }     
       }
       //Call on plugin stop
       public void PluginStop()
       {
       }
   }
}
 
Last edited:
Ah, I see this was a crosspost :rolleyes:

Answer here for Run!: https://www.thebuddyforum.com/arche...iscussions/184688-code-mount-run-ability.html

For QuickStep you want to use something like this:

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 QuickStep (correctly) while mounted";
       }

       //Call on plugin start
       public void PluginRun()
       {    
        while (true) {  
            Thread.Sleep(10);
            if (isMounted() == true){
                Thread.Sleep(500);
                if ( (skillCooldown("Quickstep") == 0) && (buffTime("Quickstep (Rank 2)") == 0) )
                {   
                    Thread.Sleep(10);
                    UseSkill("[Perform] Quickstep");
                }
            }      
        }     
       }
       //Call on plugin stop
       public void PluginStop()
       {
       }
   }
}

ah thank you, you are so kind
 
Back
Top