Temporary sollution: 1. Go to Stormwind 2. Go to Dwarf District 3. Find MailBox at 65,38 4. place your crafter toon between mailbox and anclave 5. open mailbox 6. start smelth/craft (by macro) 7. run any script/macro 3rd party program to send mails every time when your backpack is coming to be full (by macro) Mail Macro: Code: /run for i=0,4 do for q=1,32 do s=GetContainerItemID(i,q) if s==35622 or s==35624 or s==35623 then UseContainerItem(i,q) end end end /run SendMail("NAME", "HEADER") Note: Every "s==????" is some sort of filter on items what u wanna to send. Item's ID can be found on WowHead.com.
I'm also trying to continue his work, if that's okay. I'll give appropriate credit to original author afterwards. Mines working a little bit differently. His script takes saronite ore from mailbox, goes to forge, smelts it, goes to vendor and vendors it. Mine takes cobalt bars from mailbox, goes to anvil, crafts them into cobalt triangle shields, goes to vendor and vendors them. It works for the most part, the part I am having trouble with is getting it to stop. It continues to craft them even when bags are full. I need to play around with the numbers in it a bit. The original script uses to stop crafting, since it's when theres no saronite ore left in bags. With the shields I cant use that because they take up heaps more space than the saronite bars do (since they don't stack) so theres bound to be some left. Since this is the case, I therefore want it to do a 2nd "crafting session" between vendoring and getting more from the mailbox. So am looking for alternatives to this if anyone wants to write to this thread or PM me that'd be terrific. Edit/PS: I also didn't have any trouble using the original script to smelt saronite in Orgrimmar - what issues were you guys having so that I can perhaps try fixing it.
You're free to to continue this plugin as long as credit is given. I think the main issues were plugin didn't leave any empty bag space for smelting bars when retrieving mail. and it didn't go back to the mailbox after smelting+ vendoring 1st batch. also guild bank retrieval needs testing Have been rather busy lately plus I didn't run any gathering bots for months so didn't have the items to test bulk mailing..
this should exit while loop if bags are full, Code: while (NumOfItemsInBag(36912) > 1 && !Me.NormalBagsFull)
the function in the code is what keeps tripping me up. It doesn't work properly but the function for it is not in the same file. Is it in another file or is it part of generic HB code?