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

auto gather water

enkae7317

Member
Joined
Aug 31, 2014
Messages
299
Reaction score
0
Like title do anyone know how to make a plugin to auto gather water from nearest well? would be appreciated
 
Really?
That's all I'm going to say about this.

Laziness over 9000!
 
yes b/c i don't know how to code and I am lazy ;D is why im using bots
 
Actually I made this before for myself lol so boring

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

namespace WaterSpammer
{
    public class WaterSpammer : Core
    {
        public static string GetPluginAuthor()
        {
            return "Plugin Author";
        }

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

        public static string GetPluginDescription()
        {
            return "Collects water.";
        }

        public void PluginRun()
        {
            using (DoodadObject d = getDoodads()
                .Where(x => x.name == "Well").Distinct().OrderBy(x => x.distNoZ(me)).First())
                {
                    while (true)
                    {
                        UseDoodadSkill("Gather water with a bucket.", d, true);
                        Thread.Sleep(500);
                    }
                }
        }
    }
}
 
its called a razor mouse and it is a lot safer to use alto I don't think you could easy get ban for this how ever its a waste of time on code.
 
Back
Top