Hello, thought I would release a very cheap way to level your fishing all you need is a fishing rod ( auction house or craft) and Yellow Lures find your self a fishing spot with the word "Feeding" in it and this will cast into it over and over. This doesn't catch fish this is for leveling much faster.
Good Luck
We Level Fisherman!
Good Luck
We Level Fisherman!
Code:
using System;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;
namespace WeLevelFisherman
{
public class WeLevelFisherman: Core
{
protected Dictionary <string, string> actions;
public static string GetPluginAuthor (){
return "sintal1ty";
}
public static string GetPluginVersion (){
return "1.0.0.1";
}
public static string GetPluginDescription (){
return "We level Fisherman";
}
public void PluginRun (){
Random r = new System.Random(); // Credit : Bearhook
String oldSkill = null;
bool noSkill = false;
while (true){
if (! isCasting()){
CancelTarget();
foreach(var dood in getDoodads())
{
if (dood.name.Contains("Feeding"))
{
UseSkill ("Sport Fishing",dood.X+r.NextDouble()*6.0-3.0, dood.Y+r.NextDouble()*6.0-3.0, dood.Z, true); // Credit: Bearhook
}
Thread.Sleep (050);
}
}
}
}
}
}
Last edited: