• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • [PB]Bengan's Multi Profession Profile

    Discussion in 'ProfessionBuddy Profiles' started by Bengan12, Dec 26, 2012.

    1. Horoboro

      Horoboro New Member

      Joined:
      Jan 24, 2013
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Hi!

      Thx for the profile!

      Is it possible that my EN/INS put inks in giuild bank? Because when bags are full with inks cannot mill more
      My EN/INS also cant make shoulder enchants. It says he doesnt have the mats but he has plenty of inks and parchels in bags.

      Thanks your time!
       
    2. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48
      There are 2 shoulder enchants it can make, one uses Starlight Ink one uses the other common ink.
      I am planning to add guild bank deposit for inks, while you wait for this i recommend that you add an alt to mail inks to, then when i add guild bank deposit for inks you can just login to the alt and press return button on the mails.
       
    3. Horoboro

      Horoboro New Member

      Joined:
      Jan 24, 2013
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      I know there are 2 enchants but toon says he doesnt have the mats for them though he has plenty of dreams and starlight inks...
      What to do?
       
    4. neosho

      neosho Member

      Joined:
      Jun 25, 2012
      Messages:
      225
      Likes Received:
      0
      Trophy Points:
      16
      Bengan could you add an option to store golden lotus in bank? or auction em?? that would be great!
       
    5. stokni

      stokni New Member

      Joined:
      Oct 18, 2012
      Messages:
      23
      Likes Received:
      0
      Trophy Points:
      0
      Free bag issue, got some more detail's:

      - Have 6 empty slots
      - Start profile
      - Opens mailbox, but does not collect anything.
      - Runs to gbank, gets 4 more stacks of herbs, 2 free bag slots.
      - Runs back to mailbox, opens mailbox and starts prospecting.
      - After prospecting, before milling, it runs of to the JC vendor and starts buying Jeweler's settings from vendor until no bag slots are free (check for personal bank for this would be great btw)
      - Before creating anything, message Mailing Disenchantable items to alt' and then halts, with all bags full.
      - After restarting bot, goes to gbank, does not collect anything since bags are full, runs to mailbox, opens mailbox and start's milling resulting in endless 'bags are full' messages.
      - Stop bot, put Jewelers settings in personal bank, 12 slots free.
      - Start bot, bot goes to mail, fetches 2 items.
      - Goes to Gbank, fetches 8 more items, 2 bagslots free again.
      - Runs back to mailbox, starts to prospect another stack ore it got from mail and gbank
      - Starts to Mill, free bagslots slowly increasing again.

      Few things i noticed, not real bugs, but still worth mentioning.

      - Prospecter/ inscription is mage, but i assume other self buffing classes have this as well, singular keeps in the way as soon as self buff's wear off, sometimes tries to cast self buff's (mage armor in my case) annyoing and suspisous in log.
      - Lots of 'that Object is busy messages, continiously 3 on the screen. 24ms latency, 31 fps on bot pc.

      Still, awesome profile, lot of hard work went into it, thanks a lot!
       
      Last edited: Jan 29, 2013
    6. Horoboro

      Horoboro New Member

      Joined:
      Jan 24, 2013
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Though You can DE blue and green separately in the profile if I adjust that only blue to DE it DE green as well. Its not good cause I can vendor the green ring for 8.97g but the spirit dust it gives only quarter of the price of this.
       
    7. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48
      I did look at the enchanting code and it should not de green when only blue is selected, make sure the setting is correct, i am going to sleep now have some fixes to do tomorrow and will most likely release a new version within 24 hrs
       
    8. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48
      I said i would release a new version within 24 hours, but i am not, i have applied a lot of changes and fixes and need some sleep and time to test it, this is what i have done so far.

      Add option for scroll off wisdom. Check!

      [/QUOTE]
      Mill before prospecting. Check!
      Should solve some issues here and give extra free bag slots.

      Check personal and guild bank for JCS. Check!
      Better logic with full bags when buying JCS. Not Check, fixing Stormwind issue the existing logic was not working. Dalaran and Orgrimmar should have worked just fine.

      Bags should not be full now, if they get full i must add a logic for this.

      Add a logic to check if bags are full before running around over the world.. Partially Check!

      Did the bot put JCS in personal bank?. .......

      All personal and guild bank is set to 10 free slots just as mail now, and it should buy JCS depending on how many free bag slots it has, less free bag slots = more trips to vendor but no full bags.

      This should work better now with a bit new logic, used to fix the above issues.

      This is a Singular issue.
      go to \HB1\Routines\Singular\ClassSpecific\Mage\ and open the file Common.cs

      Remove the line
      PHP:
      Spell.BuffSelf("Ice Barrier"),
      it is on row 40.
      Now you don?t want to combat without the shield do you?
      We must add in in the class file, open your class, Frost.cs or Fire.cs or Arcane.cs the one you use.

      Find the line
      PHP:
      public static Composite CreateMageFireNormalPull()
      The is the pull function.
      Now under this line about 7-8 lines down you find this
      PHP:
      Spell.WaitForCast(true),
      Then it should be the spells it uses, add right under this line this.
      PHP:
                      //Shield
                      
      Spell.Cast("Ice Barrier",
                          
      ret => !StyxWoW.Me.ActiveAuras.ContainsKey("Ice Barrier")),
      It should now cast the shield before pulling the mob, if the fight last longer then 30 seconds you might want to recast the shield?
      then you can add the same line as above right under
      PHP:
      Spell.BuffSelf("Ice Block"ret => StyxWoW.Me.HealthPercent 15 && !StyxWoW.Me.ActiveAuras.ContainsKey("Hypothermia")),
      This line apperas 3 times, first is normal, second is PVP thirs is instances.
      And they will all only activate while in combat or about to start combat.


      Thanks, hope it gets better soon.
       
    9. Horoboro

      Horoboro New Member

      Joined:
      Jan 24, 2013
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Can You add a function that ore/ herb withdraw from guildbank separately?

      Thx
       
    10. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48
      This function already exists, if you deactivate mailing off herbs and milling then it wont get herbs, if you deactivate prospecting and mailing off ore it wont get ore.
      It will only get the materials it is setup to use in some way.
       
    11. c4sper

      c4sper New Member

      Joined:
      Sep 13, 2012
      Messages:
      91
      Likes Received:
      0
      Trophy Points:
      0
      hi

      first of all, thanks a lot for creating this profile!
      second, it would be great if we could have the choice which herbs are getting milled. i deleted the foolscap line now but i dont know whether i did it right..^^
      and it would be great if the bot would trade the low ink to snowfall ink.

      thanks
       
    12. Horoboro

      Horoboro New Member

      Joined:
      Jan 24, 2013
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Its ok but I withdraw the materials from the guild bank. Is this method ok for the guild bank withdraw as well?
      Because my problem is that my INS/ENC toon wants to get the ores after the herb shuffle and then he stands with the ores and doesnt know what to do...
       
    13. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48
      Did it get the ore even with prospecting and mail minerals disabled?
       
    14. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48

      If it dosn?t mill fools cap you did it right, and sadly i wont add that option, i would need to add it for something like 60 herbs and around 60 options and the list off avilable options would be to long when most people just want to mill all, the lines could easely be edited as you did. and i think i added the name for every herb and mineral so they will be easy to find.
       
    15. grig

      grig New Member

      Joined:
      Dec 28, 2012
      Messages:
      120
      Likes Received:
      0
      Trophy Points:
      0
      Hey! Great profile, thanks!

      Any plans to support Alchemy in the future? Like, transmute Primal Diamonds and stuff. :D I would do it myself, but I never wrote a profile so if you could give me a few tips that would be awesome too :p
       
    16. Elitechampion

      Elitechampion New Member

      Joined:
      Nov 13, 2012
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
      Would it be possible to add another functionality for miners and alchemists?

      I would like my miner to smelt Ghost Iron Ore into Ghost Iron Bars, and put them in the guild bank.

      I would also like my transmute master alchemist to be able to withdraw the Ghost Iron Bars from the guild bank, transmute them into Trillium Bars, make the daily Living Steel, and then deposit the finished goods into the guild bank.

      This is an alternative for people who would rather turn their ore into consolidated bar product, than prospect and JC it.
       
    17. Horoboro

      Horoboro New Member

      Joined:
      Jan 24, 2013
      Messages:
      27
      Likes Received:
      0
      Trophy Points:
      0
      Mailing minerals and prospecting is off but he still wants to get ore from guild bank. Cant you add a row to adjustement that withdraw herb and withdraw ore separately? Thx
       
    18. Cukie

      Cukie Active Member

      Joined:
      Dec 3, 2011
      Messages:
      1,255
      Likes Received:
      3
      Trophy Points:
      38
      Has the option to buy in Pandaria been implemented in newer versions? I'm still using 2.3.2 I think.
       
    19. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48
      That is something i forgot about, thanks for reminding me.
       
    20. Bengan12

      Bengan12 Well-Known Member

      Joined:
      Feb 24, 2011
      Messages:
      1,967
      Likes Received:
      31
      Trophy Points:
      48
      I?l add it in the next release.
       

    Share This Page