Jump to content

Fisherbot Quest


poacherlock

Recommended Posts

That's the one, looking to set up all of my toons on multiple accounts to do all the monthly profession based quests and item quests with higher rewards for the xmogs. Have most of the quester profile built but don't know how to get it to fish

 

 

Link to comment
Share on other sites

Hello, use quest type "OverridePulseCSharpCode" with code:

Vector3 fishPosition = new Vector3(-9387.61, -120.2896, 58.53797, "Flying");
float fishRotation = 4;

if (!FishingTask.IsLaunched)
{
    if (GoToTask.ToPosition(fishPosition, 1.5f))
    {
        ObjectManager.Me.Rotation = fishRotation;
        FishingTask.LoopFish();
    }
}

return true;

(replace "-9387.61, -120.2896, 58.53797" by fishing position and 4 by fishing rotation (you can get position and rotation in WRobot tab "Tools" > "Dev... tools" > "Me/Target Position"))

Don't forget to stop fishing, for it, after pulse fishing quest, in quests order add step type "RunCode" with code:

wManager.Wow.Bot.Tasks.FishingTask.StopLoopFish();

 

Sample profile: FishingTest.xml

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...