What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

LFR Extra Roll

150nick

Member
Joined
Apr 15, 2012
Messages
31
Forgive me if there is already a plugin or an option that uses your extra rolls but thats what I'm asking for here
 
there is none, and i'm sure noone wants to keep the lootlist updated which will be needed to compare items somehow ;)
 
This is good wow addon . enjoy :)

HabeebIt - Boss Encounters - World of Warcraft Addons - Curse

bb687140a5665585ffb806b5f4e37394.png
 
there is none, and i'm sure noone wants to keep the lootlist updated which will be needed to compare items somehow ;)

Even so, I want a plugin that'll just click the button everytime it pops up (When Turned on) Elder Charms are like dimes to me now. I have 20 in my inventory right now and like 18 in Coffer Chests...
 
To anyone looking into this attach to event "SPELL_CONFIRMATION_PROMPT" and check its type "CONFIRMATION_PROMPT_BONUS_ROLL" then run "AcceptSpellConfirmationPrompt({0}" with the spell id from the events arg

the following should work although you do need to put in a check on arg 1 which i havent got yet
Code:
        private void Roll(object sender, LuaEventArgs args)
        {
            if (args != null)
            {
                Lua.DoString(string.Format("AcceptSpellConfirmationPrompt({0})", args.Args[0]));
            }
        }
 
Last edited:
Even so, I want a plugin that'll just click the button everytime it pops up (When Turned on) Elder Charms are like dimes to me now. I have 20 in my inventory right now and like 18 in Coffer Chests...


Umm they stay under curremcy not in your bags
 
And Amazing! It works :)

How much more work would it be to write a code to let me choose which bosses to use it on...?
I have 8 left and in Terrace there is nothing I need off the first of the 4 bosses...
Even if I have to add the names of the bosses or something myself I'll do it.. I just don't know how to even go about starting to do that...

THANK YOU!: I just got my Weapon off Tsulong.. :)))
 
how did u guys get this working? im still looking for a way to roll bonus loot so I don't stuck with full tokens. I don't care if I don't need any loot, just don't want it full tokens.
 
Back
Top