• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • AutoSmelt

    Discussion in 'Archives' started by highvoltz, Jul 13, 2010.

    1. abzatzz

      abzatzz New Member

      Joined:
      Jan 15, 2010
      Messages:
      78
      Likes Received:
      0
      Trophy Points:
      0
      Can smb continue his work ????
       
    2. John1337

      John1337 New Member

      Joined:
      Jan 15, 2010
      Messages:
      320
      Likes Received:
      0
      Trophy Points:
      0
      i working on it, but my knowledge of c shard is poor .s
       
    3. axazol

      axazol New Member

      Joined:
      Jun 27, 2010
      Messages:
      308
      Likes Received:
      8
      Trophy Points:
      0
      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.
       
      Last edited: Aug 8, 2010
    4. gathernub

      gathernub New Member

      Joined:
      Jan 15, 2010
      Messages:
      11
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
      Last edited: Aug 11, 2010
    5. John1337

      John1337 New Member

      Joined:
      Jan 15, 2010
      Messages:
      320
      Likes Received:
      0
      Trophy Points:
      0
      if you add sending smelted or crafted items via mail, i ll be glad using your cc :]
       
    6. highvoltz

      highvoltz Well-Known Member

      Joined:
      Mar 22, 2010
      Messages:
      1,729
      Likes Received:
      141
      Trophy Points:
      63
      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..
       
      Last edited: Aug 11, 2010
    7. highvoltz

      highvoltz Well-Known Member

      Joined:
      Mar 22, 2010
      Messages:
      1,729
      Likes Received:
      141
      Trophy Points:
      63
      this should exit while loop if bags are full,
      Code:
      while (NumOfItemsInBag(36912) > 1 && !Me.NormalBagsFull)
       
    8. gathernub

      gathernub New Member

      Joined:
      Jan 15, 2010
      Messages:
      11
      Likes Received:
      0
      Trophy Points:
      0
      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?
       

    Share This Page