Jump to content

Fishing certain fish


wthdfhdutj

Recommended Posts

Hi, I'd like to fish certain fish like Mimic Octopus for daily quest.

 

I've also searched the forum, and found some example overriding pulse, but incompleted.

 

-----

Vector3 pos1 = new Vector3(-1444.624, -253.5518, 0.9669148, "Flying");

float fishRotation = 3.0f;

 

if (!FishingTask.IsLaunched)

{

    if (GoToTask.ToPosition(pos1, 1.5f))

    {

        ObjectManager.Me.Rotation = fishRotation;

        FishingTask.LoopFish();

    }

}

 

return true;

-----

 

Is there any method for fishing repeatedly until getting certain fish?

Link to comment
Share on other sites

Hello,

Vector3 pos1 = new Vector3(-1444.624, -253.5518, 0.9669148, "Flying");
float fishRotation = 3.0f;

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

return true;

And in "IsComplete..." option use c# code like:

return ItemsManager.GetItemCountById(111908) >= 10;

(change 111908 by your item id)

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...