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/th...87009260&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