Jump to content

wthdfhdutj

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

wthdfhdutj's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I'm now making quester for anglers' reputation in Pandaria. The quest 'Scavenger Hunt' requires to fish a school in certain region. I know that fisherbot now supports fish school, but I'd like to use this option to Quester. Please advise me how to make any code for Quester (hotspots, fish school options and so on).
  2. 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?
  3. I'd like to want to wait for a while using c# code in OverridePulseCSharpCode. My code is ... Vector3 pos1 = new Vector3(-1475.103, -226.9858, 4.822745, "Flying"); float fishRotation = 5.77f; uint itemId = 211160; if (!FishingTask.IsLaunched) { if (GoToTask.ToPosition(pos1, 1.5f)) { ObjectManager.Me.Rotation = fishRotation; ItemsManager.UseItem(itemId); FishingTask.LoopFish(); } } return true; and I want to wait for a while before using the item in my bag.
×
×
  • Create New...