Multiboxing.com - Multiboxing in World of Warcraft and more!
          

Go Back   Multiboxing in World of Warcraft and Beyond! > All Gaming Forums > World of Warcraft - Macros, UIs, Mods, Addons

Reply
 
LinkBack Thread Tools Display Modes
Old 10-29-2011, 04:09 PM   #1
Junior Member
 
Join Date: Oct 2011
Posts: 4
Exclamation Auto disenchanting

Hello.
I would like to know how is it possible to make a auto disenchanting.
Found this:
Code:
local f = CreateFrame("Frame", "MyAddon")
f:RegisterEvent("CONFIRM_LOOT_ROLL")
f:SetScript("OnEvent",function(self,event,...)
   if event == "CONFIRM_LOOT_ROLL" then
     local RollID = select(1, ...)
     local roll = select(3, ...)
     ConfirmLootRoll( RollID, roll )
   end    
end)
I would like to include only when the character is in a dungeon, and turned off when a character leaves the dungeon.
kakawkin is offline   Reply With Quote
Old 10-29-2011, 04:56 PM   #2
Super Moderator
 
Nghtmr9999's Avatar
 
Join Date: Aug 2009
Location: Minnesota, US
Posts: 1,662
Blog Entries: 6
Default Re: Auto disenchanting

I don't think you can auto disenchant per se, because it might fall under botting. You most likely will need to press the button every time you want to disenchant.
__________________
Nghtmr9999 is offline   Reply With Quote
Old 10-29-2011, 05:00 PM   #3
Junior Member
 
Join Date: Oct 2011
Posts: 4
Default Re: Auto disenchanting

The fact that the automatic disenchants does.
Here it is only necessary to include only the underground and off at exit
kakawkin is offline   Reply With Quote
Old 10-30-2011, 08:44 AM   #4
Moderator
 
EaTCarbS's Avatar
 
Join Date: Jul 2009
Posts: 1,213
Default Re: Auto disenchanting

set loot to group loot.
set slaves to pass on loot.
bask in easy disenchants.
__________________
Multiboxing.com Moderator Please read the rules before posting

EaTCarbS is offline   Reply With Quote
Old 10-31-2011, 05:18 AM   #5
Super Moderator
 
Join Date: Jul 2009
Posts: 409
Default Re: Auto disenchanting

Thinking about this, i do however see an option to write a macro script to auto roll pass on my alts, and greed on my main guy.

(i wrote an auto-stack macro a while back, that auto-stacks all blue and green and epic items, so mostly gems, so i know the drill lol)

How to use :P

1. At start of it it says x = 21. This is the bag it will put the gems in.

Bags are 19 = backpack, 20 = rightmost, 23 = leftmost (so 19-23)

2. y is the range, this goes 0-4 (0 being backpack, 4 rightmost)





ONLY items from your Backpack:
Uncommon items:
Quote:
/run x = 21; for j=1,GetContainerNumSlots(0) do local link = GetContainerItemLink(0,j); if link ~= nil then if string.sub(link,3,10)=="ff1eff00" then PickupContainerItem(0,j); PutItemInBag(x); end; end; end;
Rare items:
Quote:
/run x = 21; for j=1,GetContainerNumSlots(0) do local link = GetContainerItemLink(0,j); if link ~= nil then if string.sub(link,3,10)=="ff0070dd" then PickupContainerItem(0,j); PutItemInBag(x); end; end; end;
Epic items:
Quote:
/run x = 21; for j=1,GetContainerNumSlots(0) do local link = GetContainerItemLink(0,j); if link ~= nil then if string.sub(link,3,10)=="ffa335ee" then PickupContainerItem(0,j); PutItemInBag(x); end; end; end;


For bags y = 0,1 (backpack and 2nd bag from right)
Uncommon items:
Quote:
/run x = 21; for y=0,1 do for j=1,GetContainerNumSlots(y) do local link = GetContainerItemLink(y,j); if link ~= nil then if string.sub(link,3,10)=="ff1eff00" then PickupContainerItem(y,j); PutItemInBag(x); end; end; end; end;
Rare items:
Quote:
/run x = 21; for y=0,1 do for j=1,GetContainerNumSlots(y) do local link = GetContainerItemLink(y,j); if link ~= nil then if string.sub(link,3,10)=="ff0070dd" then PickupContainerItem(y,j); PutItemInBag(x); end; end; end; end;
Epic items:
Quote:
/run x = 21; for y=0,1 do for j=1,GetContainerNumSlots(y) do local link = GetContainerItemLink(y,j); if link ~= nil then if string.sub(link,3,10)=="ffa335ee" then PickupContainerItem(y,j); PutItemInBag(x); end; end; end; end;
have fun with it :P

Last edited by Chamassa; 10-31-2011 at 05:22 AM.
Chamassa is offline   Reply With Quote
Old 10-31-2011, 05:55 PM   #6
Tim
Administrator
 
Tim's Avatar
 
Join Date: Jun 2009
Location: USA
Posts: 6,768
Default Re: Auto disenchanting

Whoa...

So essentially make one guy have NOTHING in his backpacks but the items you want to DE, and make him get all the blues/epics, and spam those macros after each boss fight?
Tim is offline   Reply With Quote
Old 10-31-2011, 07:16 PM   #7
Super Moderator
 
Join Date: Jul 2009
Posts: 409
Default Re: Auto disenchanting

Nono, these macros are stack all gems and crap u craft 1 by 1 macros, ill figure out a auto-disenchant option later :P
Chamassa is offline   Reply With Quote
Old 10-31-2011, 09:29 PM   #8
Senior Member
 
Join Date: Nov 2009
Location: Vancouver, Canada.
Posts: 2,421
Default Re: Auto disenchanting

There was an addon called Panda Disenchant.
It was for WotLK era, not Cataclysm.

It would auto disenchant any item up to whatever rarity you set.
But you'd need to click a button in the addon for each disenchant.

For a while there, I was using disenchanting as a form of arbitrage.

You could start with that addon, as a point of reference for disenchants.
__________________
Google: Ualaa's guide to IS Boxer
Streaming in HD: www.twitch.tv/ualaa
Ualaa is offline   Reply With Quote
Old 10-31-2011, 10:12 PM   #9
Super Moderator
 
Join Date: Jul 2009
Posts: 409
Default Re: Auto disenchanting

Quote:
Originally Posted by Ualaa View Post
There was an addon called Panda Disenchant.
It was for WotLK era, not Cataclysm.

It would auto disenchant any item up to whatever rarity you set.
But you'd need to click a button in the addon for each disenchant.

For a while there, I was using disenchanting as a form of arbitrage.

You could start with that addon, as a point of reference for disenchants.
O no, what i was thinking is make alts pass on a macro click
and make the main guy rll dis/greed/need (whatever u wanted) and confirm with 2 clicks
Chamassa is offline   Reply With Quote
Old 11-21-2011, 11:59 AM   #10
Member
 
Join Date: Feb 2011
Posts: 66
Default Re: Auto disenchanting

I have looked into this before, and all I found was people saying that it's not doable because of the fact that the player has to interact (cast the disenchant spell etc).


I know that TukUI has a built-in feature that select disenchant automatically if there's an enchanter in the group - otherwise picks greed - on green items (at max level). Possibly do something that way. Change the code to do the same on blues but not epics. I don't know, hehe.

But as said in the previous posts, just tell your slaves to pass on loot if nothing else and simply hit the greed/need/disenchant. It's not perfect, but it gets the job done. Luckily you can trade looted items for two hours. :P
__________________
Revision is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
auto spftware installer Bobby79 Off Topic 0 04-10-2011 10:45 PM
Auto Focus bug in Pwnboxer Drarkan Multiboxing Software 7 12-30-2010 10:52 PM
Auto Delete Greys... Teál World of Warcraft - Macros, UIs, Mods, Addons 10 12-07-2009 02:24 AM
any addon that will auto cast a spell for me ? pinki104 World of Warcraft - Macros, UIs, Mods, Addons 4 10-27-2009 11:41 AM
Great auto-bandaid macro Tim World of Warcraft - Macros, UIs, Mods, Addons 0 07-01-2009 04:40 PM


SEO by vBSEO 3.3.2