wthdfhdutj 0 Posted October 23, 2016 Share Posted October 23, 2016 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 https://wrobot.eu/forums/topic/4212-fishing-certain-fish/ Share on other sites More sharing options...
Droidz 2738 Posted October 25, 2016 Share Posted October 25, 2016 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 https://wrobot.eu/forums/topic/4212-fishing-certain-fish/#findComment-19592 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now