• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [QUEST][N85+] Master of Pandaren Cooking

    Discussion in 'Archives' started by Mort1337, Aug 1, 2013.

    1. Not2Legit

      Not2Legit Member

      Joined:
      Jul 17, 2012
      Messages:
      145
      Likes Received:
      0
      Trophy Points:
      16
      I finished it by hand. Lol. However, I will be doing this for my wife's account. As she loves achievements, and I wouldn't mind the extra feasts.
       
    2. maximal1981

      maximal1981 New Member

      Joined:
      Nov 21, 2012
      Messages:
      128
      Likes Received:
      0
      Trophy Points:
      0
      the isuese is the fly point, I have it change for me
       
    3. Mort1337

      Mort1337 Member

      Joined:
      Jul 13, 2012
      Messages:
      69
      Likes Received:
      5
      Trophy Points:
      8
      Which one is that maximal1981?
       
    4. Griffin224

      Griffin224 New Member

      Joined:
      Oct 31, 2012
      Messages:
      115
      Likes Received:
      2
      Trophy Points:
      0
      Mort,
      Since bag space seems to be at a premium and the fishing portion of your profiles gets mostly golden carp maybe it would make sense to get some "Grocery Bags" before starting to fish and bag them up as you get 60 carp...
      Just an idea.
       
    5. Ducco

      Ducco Member

      Joined:
      May 21, 2011
      Messages:
      33
      Likes Received:
      0
      Trophy Points:
      6
      I have fished for 3 day now, like 4 hour a day and my caracter is still fishing.. If i stop the bot and start the profile againg the caracter flys and bundels some fishing and goes back fishing till the bags are full again. But after the caracter is done budeling it says. Part 3: Vegetables (Trading Fish for Tokens) .... but goes back to fish.. im i doing something wrong?
       
    6. cjmccormick

      cjmccormick New Member

      Joined:
      Feb 14, 2012
      Messages:
      61
      Likes Received:
      0
      Trophy Points:
      0
      Alright, my cooking level is at 525. I thought you said this profile levels it from 525-600? It stops at 525. Am I missing something?
       
    7. maximal1981

      maximal1981 New Member

      Joined:
      Nov 21, 2012
      Messages:
      128
      Likes Received:
      0
      Trophy Points:
      0
      The error only occurs from a cruise direction on, and can not be reproduced. I should have the error again, I post everything here. it was definitely the first "fly to, if you can".
       
    8. X_angelz_X

      X_angelz_X New Member

      Joined:
      Sep 18, 2013
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      0

      Same for me, I am deciding to just get a fishing bot for the last bit of this, and then rerun this and hopefully it does the cooking and trading on it's own.
       
    9. rowfar

      rowfar New Member

      Joined:
      Dec 27, 2012
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      Works like a train. For me it grinded all the meats (however not in optimal places, most of them are low lvl & 30% drop rate) but still fast. After that it started Fishing like a pro. I did the vegatables myself on farm.
       
    10. El Fuego

      El Fuego Member

      Joined:
      Jun 18, 2013
      Messages:
      298
      Likes Received:
      2
      Trophy Points:
      18
      Noticed that your profile isn't flying to do Sell/Repair/Mail runs... here is a snippet of code that you could implement to help with this if you are so inclined. ;)

      Code:
      <While Condition="true" >
              
                  <If Condition="(Me.FreeBagSlots &gt; 4) || (Me.LowestDurabilityPercent &gt; 60.0)" >
                      <CustomBehavior File="FlyTo" X="..." Y="..." Z="406.8236"  DestName="Profile Start" />
                      <CustomBehavior File="ForcedDismount" />
              
                      <SetGrindArea><GrindArea>
                          <TargetMinLevel>1</TargetMinLevel>
                          <TargetMaxLevel>101</TargetMaxLevel>
                          <Factions>1712 2578</Factions> 
                          <MaxDistance>25</MaxDistance>
                          <Hotspots>
                           <!-- [So-on-and-so-forth] -->
                           
                          </Hotspots>
                      </GrindArea></SetGrindArea>
                  <GrindTo Condition="(Me.FreeBagSlots &lt;= 4) || (Me.LowestDurabilityPercent &lt; 0.60)" GoalText="Farm Skyshards" />
                  </If>
              
                  <If Condition="(Me.FreeBagSlots &lt;= 4) || (Me.LowestDurabilityPercent &lt;= 60.0)" >
                  
                      <CustomBehavior File="Message" Text="Doing a Vendor/Mail Run!" LogColor="Red" />
                      
                      [COLOR=#ff0000][B]<CustomBehavior File="FlyTo" DestName="Repair Run" X="722.9744" Y="1579.175" Z="375.9695"  />
                      <CustomBehavior File="ForcedDismount" />[/B][/COLOR]
      
      
                      <CustomBehavior File="ForceSetVendor" DoMail="True" DoSell="True" DoRepair="True" DoTrain="False" />
                      
                  </If>
                  
              </While>
              
              <!-- Notes:
                  Fill in your
              
                  <Factions></Factions>
                  <Hotspots>
                  
                  </Hotspots>
              
                  You'll have to fill out this xyz (generally first hotspot for your grind area):
      
      
                      <CustomBehavior File="FlyTo" X Y Z  Name="Profile Start" />
      
      
                  You'll need to fill out the XYZ of the 'land at' coords for repair / mail run
      
      
                      <CustomBehavior File="FlyTo" XYZ  Name="Repair Run" />
                      <CustomBehavior File="ForcedDismount" />
      
      
                  Fill this vendor out and mailbox XYZ:
      
      
                      <SetVendor><Vendors>
                          <Vendor Name="" Entry="" Type="Repair" X Y Z />
                      </Vendors></SetVendor>
                      <SetMailbox><Mailboxes>
                          <Mailbox X Y Z />
                      </Mailboxes></SetMailbox>
              -->
      
      I admit this isn't my own code (though it comes from my own custom profile). I can't remember where it came from originally, but I believe it was Kick's reply to someone asking about adding flying into a profile. I used it in my own custom grinding profile and it works very well.

      Hope you can find it useful as well,

      Fuego
       
    11. El Fuego

      El Fuego Member

      Joined:
      Jun 18, 2013
      Messages:
      298
      Likes Received:
      2
      Trophy Points:
      18
      Also... I'm not sure why you would do this:

      Code:
      <CustomBehavior File="UserSettings"
                  GroundMountFarmingMode="False"
                  PullDistance="50"
                  [B][COLOR=#ff0000]UseMount="False"[/COLOR][/B]
      [B][COLOR=#ff0000]            [/COLOR][/B]LootChests="True"
      [B][COLOR=#ff0000]            NinjaSkin="True"[/COLOR][/B]
                  [COLOR=#ff0000][B]SkinMobs="True"[/B][/COLOR]
                  LootRadius="50" />
      
      You are preventing the Honorbuddy-Core from using a mount to move around. The bot is designed to use the "best" means of transportation available when the profile writer uses the "RunTo" tag in the profile. If you disable "UseMount" then the bot is forced to run everywhere. :(

      Second: If bag space is at a premium, I would suggest setting the "SkinMobs" to False, or at the least, let the user decide in their own settings.

      Just some observations and suggesting. Take them or leave them. :cool:

      Great work on the profile though.. so far I'm liking that it's gathering all the ingredients I'll need. I'm at 575 on all my Pandaren cooking Ways... and I was getting bored with the prospect of farming all this stuff.

      Thanks for doing it for me... ha!
       
    12. El Fuego

      El Fuego Member

      Joined:
      Jun 18, 2013
      Messages:
      298
      Likes Received:
      2
      Trophy Points:
      18
      Had another thought about "Bag Space Problems" as I'm running the profile:

      It occurred to me that it might be more efficient to do each "Way of the..." style individually. I mean, do the Grill first, then the Oven, then the Wok and so on. Meaning, grind for mats for the Way, then complete the cooking required to reach 600, then move on to the next "Way.." So that a person wouldn't need 20+ Open slots, plus junk slots just to do this. I had 30+ open slots when I started testing your profile, and I've run out of space 5 times, and I'm only half way through the fishing portion of the profile. At this point, I don't really have anything left I can take out of my bags, as my bank is also full (yeah I know my problem not a profile's problem).

      Also, I noticed that the profile doesn't seem to want to use the closest MailBoxes. Especially when fishing near the Arboretum. It wants to run all the way back to Thunderfoot Fields in Valley of the Four Winds. :(
       
    13. Mort1337

      Mort1337 Member

      Joined:
      Jul 13, 2012
      Messages:
      69
      Likes Received:
      5
      Trophy Points:
      8
      Hi All,

      Thanks for all your input, I shall take on all your advice. Just recoding some of it now. Hold tight I'll post an update once I have sorted all this little problems out :)
       
    14. Characture

      Characture New Member

      Joined:
      Jul 26, 2013
      Messages:
      147
      Likes Received:
      1
      Trophy Points:
      0
      Just quietly - awesome community at HB. Can't wait to see this in action.
       
    15. lollerz46

      lollerz46 New Member

      Joined:
      Sep 8, 2013
      Messages:
      13
      Likes Received:
      0
      Trophy Points:
      1
      I have a problem, Im at the fishing part, it fished more than 180 Golden Carp and now it does nothing, just stand near the sea. What can i do??

      Edit: now itgives me this error
      Code:
      [ForcedDismount-v569(warning) @line 109]: Attribute 'MaxDismountHeight' is not recognized by this behavior--ignoring it.
       
    16. Mr_Pibb

      Mr_Pibb New Member

      Joined:
      Oct 12, 2012
      Messages:
      398
      Likes Received:
      4
      Trophy Points:
      0
      I think it is stuck at the fishing part. I now have over 130 reef octopus and it still runs Goal: [MrFishIt][v1.0.8] Fishing Item [74864] - In Progress
       
    17. lollerz46

      lollerz46 New Member

      Joined:
      Sep 8, 2013
      Messages:
      13
      Likes Received:
      0
      Trophy Points:
      1
      Someone know how to get rid of this problem?
       
    18. lollerz46

      lollerz46 New Member

      Joined:
      Sep 8, 2013
      Messages:
      13
      Likes Received:
      0
      Trophy Points:
      1
      Nobody know the solution? :(
       
    19. Kronss

      Kronss New Member

      Joined:
      Sep 26, 2013
      Messages:
      32
      Likes Received:
      0
      Trophy Points:
      0
      Having the same problem, i have 748 golden carp in my bags and it wants to fish more.
       
    20. Mort1337

      Mort1337 Member

      Joined:
      Jul 13, 2012
      Messages:
      69
      Likes Received:
      5
      Trophy Points:
      8
      Hi All,

      I'm sorry you guys are having issues I think is down to the Fishit.cs questbehaviour make sure you have both he latest version of HonorBuddy and have got the newest profiles from my SVN. Of-course bug checking is easier if you provide me your log.

      I'm updating these profiles as an when I get a chance, improvements are coming all be it slowly. :)
      Stick with me this type for profile is complex and has a lot of parts that can cock-up :(
       

    Share This Page