Log in

View Full Version : Macro to roll greed?



Vicker
09-10-2009, 06:18 PM
Is there a macro out there that will roll greed for me? I threebox heroics and pick up two people to dps for me, so I usually leave group loot on.

Iceorbz
09-10-2009, 06:27 PM
Doesnt jamba do this? If not maybe it should !

Fizzler
09-10-2009, 09:37 PM
I will have to check if Jamba does this I want to say it has a pass on roll option.

This post might be interesting. http://forums.worldofwarcraft.com/thread.html?topicId=14287009260&sid=1

I have quoted it below. I have no idea if it works.


These will choose a roll on the roll with the lowest ID. I believe the lowest ID would be the first roll to come up and so on, no necessarily the "top" one, so use these carefully. I also think that the roll ID does not start at 1 until you log out or exit.


For Passing the first roll
/script t=0 for i=1,100 do if GetLootRollItemInfo(i) then RollOnLoot(i,t) break end

For Greeding the first roll
/script t=2 for i=1,100 do if GetLootRollItemInfo(i) then RollOnLoot(i,t) break end

For Needing the first roll
/script t=1 for i=1,100 do if GetLootRollItemInfo(i) then RollOnLoot(i,t) break end


And also a "pass all" macro
/script t=0 for i=1,100 do if GetLootRollItemInfo(i) then RollOnLoot(i,t) end

Fizzler
09-10-2009, 09:40 PM
Try this click command it use to result in an error but a blue post said it was fixed in 3.0.8

/click GroupLootFrame1Greed

If you use a addon to manage rolls and loot you might need to ID the frame there is a simple script for that and just do a /click function based on the FrameID

Vicker
09-10-2009, 10:17 PM
I will have to check if Jamba does this I want to say it has a pass on roll option.

This post might be interesting. http://forums.worldofwarcraft.com/thread.html?topicId=14287009260&sid=1

I have quoted it below. I have no idea if it works.


Try this click command it use to result in an error but a blue post said it was fixed in 3.0.8

/click GroupLootFrame1Greed

If you use a addon to manage rolls and loot you might need to ID the frame there is a simple script for that and just do a /click function based on the FrameID

Neither of these commands work.

Vicker
09-10-2009, 10:34 PM
Doesnt jamba do this? If not maybe it should !

Jamba only has an option to pass on loot rolls. I would like my guys to roll greed.

coupas
09-12-2009, 08:05 AM
http://www.wowace.com/addons/pass-loot/

Vicker
09-13-2009, 10:44 PM
http://www.wowace.com/addons/pass-loot/

That works perfectly! Thanks a bunch!