• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [PB] Fishing help

    Discussion in 'Archives' started by cyphernihil, Dec 15, 2013.

    1. cyphernihil

      cyphernihil New Member

      Joined:
      Dec 3, 2012
      Messages:
      8
      Likes Received:
      0
      Trophy Points:
      0
      So I've downloaded some fishing profiles on the profession forums and loaded them up, set them up (or from what I understand on setting them up) but when I hit start, all it does is recast over and over again, without catching or reeling in a fish/hook. I do have the bot base of AutoAngler that I downloaded from here as well, and still no difference in catching any fish... Am I doing something wrong? or do i need more plugins/bot bases?
       
    2. Cipro

      Cipro New Member Legendary

      Joined:
      Nov 9, 2010
      Messages:
      197
      Likes Received:
      1
      Trophy Points:
      0
      update Auto Angler from the SVN
       
    3. symcee

      symcee New Member

      Joined:
      Dec 17, 2013
      Messages:
      1
      Likes Received:
      0
      Trophy Points:
      0
      I had the same issue but I finally found a good way to solve it.

      Open your fishing profile, go to the 3rd last line of the profile, and replace it by the code below. (P.s. plz make sure your original fishing profile has the same "<Declaration Code="void Fish()" , there is so much Declarations, so you need to replace the right line.

      <Declaration Code="void Fish()
      {
      if (!PulseSW.IsRunning)
      PulseSW.Start();
      using (StyxWoW.Memory.AcquireFrame())
      {
      if (PulseSW.ElapsedMilliseconds &gt;= 1000)
      {
      MyErr(&quot;Warning: It took {0} milliseconds to pulse.\nThis can cause missed bites. To fix try disabling all plugins&quot;,
      PulseSW.ElapsedMilliseconds);
      }
      PulseSW.Reset(); PulseSW.Start();
      try
      {
      var bobber = ObjectManager.GetObjectsOfType&lt;WoWGameObject&gt;().
      FirstOrDefault(u =&gt; u.SubType == WoWGameObjectType.FishingNode &amp;&amp; u.CreatedByGuid == Me.Guid);
      if (bobber != null &amp;&amp; bobber.IsValid &amp;&amp; ((WoWFishingBobber)bobber.SubObj).IsBobbing)
      {
      bobber.Interact();
      }
      else if (bobber == null &amp;&amp; !Me.IsCasting &amp;&amp; DateTime.Now - CastTimeStamp &gt;= TimeSpan.FromSeconds(1))
      {
      TreeRoot.StatusText= string.Format(&quot;Fishing level: {0}&quot;,Fishing.Level);
      SpellManager.Cast(&quot;Fishing&quot;);
      CastTimeStamp = DateTime.Now;
      }
      }
      catch(Exception ex){MyErr(ex.ToString());}
      }
      }" />


      After the replacement, every fishing profile works well on my WOW characters. :)
      (Another P.S. make sure the above code in ONE line after your replacement. &... This code is from the original "Fishing1-600(dalaran).xml" )
       

    Share This Page