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

[Release] Gather Water

CoalCloud

New Member
Joined
Oct 3, 2014
Messages
61
Reaction score
0
Gather water

Gathers water from a well continuously.

As requested at https://www.thebuddyforum.com/arche...d-discussions/186588-auto-water-gatherer.html

Code:
using ArcheBuddy.Bot.Classes;
using System;
using System.Collections.Generic;
using System.Linq;

namespace Gather_Water {
    public class Main : Core {
        public static string GetPluginAuthor() {
            return "CoalCloud";
        }

        public static string GetPluginVersion() {
            return "1.0.0.0";
        }

        public static string GetPluginDescription() {
            return "Gather Water";
        }

        public void PluginRun() {
            ClearLogs();
            Log(String.Format("~~ Plug-in start: {0}, {1}", GetPluginDescription(), GetPluginVersion()));

            while (true) {
                DoodadObject well = getDoodads().FirstOrDefault(x => x.dist(me) <= 5d && x.name == "Well");

                if (well == null)
                    return;

                while (me.isCasting || me.isGlobalCooldown) ;

                List<Skill> sList;

                while ((sList = well.getUseSkills()).Count == 0) ;

                UseDoodadSkill(sList[0].id, well, true);
            }
        }

        public void PluginStop() {
            Log("~~ Plug-in stop.");
        }
    }
}
 
isn't it easier and safer to have simple F clicker with 2 seconds delay?
 
isn't it easier and safer to have simple F clicker with 2 seconds delay?

If you're already using AB, using this plug-in will not increase the chance of ban because it basically mimics a human and there is no spamming involved.

But of course using a macro w/o AB would be safer.
 
Last edited:
If you're already using AB, using this plug-in will not increase the chance of ban because it basically mimics a human and there is no spamming involved.

But of course using a macro w/o AB would be safer.

But it would just gather water you have to be on yourself to avoid not answered pm's. If you just spam F u will gather everything what is around your personal zone, not just water and it would prove that u just left F button on, what is not against the rules. So effect same, just way more safer.
 
Back
Top