Jump to content

zebus

Player
  • Content count

    7
  • Joined

  • Last visited

Community Reputation

0 Neutral

About zebus

  • Rank
    Newcomer
  1. zebus

    Seeking help with simple lua edit

    Hmm, ok, makes sense, made the following changes but for some reason it's still returning true and showing the button when gcd triggers, does it look right? Here is the entire block from the lua FBConditions["incooldown"] = function(target) if not target then return false end if type(target) ~= "table" then target = { target } end local index, value for index, value in pairs(target) do if type(value) == "number" then local button = FB_GetWidgets(value) local duration = GetActionCooldown(button:GetID()); if duration > 1.5 then return true end end end return false end *edit* Ok got it fixed, for some reason > 2 worked but not 1.5 which is totally fine. Thanks for your help.
  2. zebus

    Seeking help with simple lua edit

    Basically the addon picks up on events using conditionals which the user can then use to do stuff to his action bars. I set an event to show a button when the ability on it goes on cooldown, and then hide it when it comes off cooldown. However as written it is seeing every global cooldown as the ability both entering and leaving cooldown. So if I was to cast any ability the button would appear for 1.5s then disappear if off cooldown, which is weird because I don't remember having that issue with it back in the day. So I want it to ignore global cooldowns and only trigger when the ability is actually used and goes on cooldown. Like I said, I know nothing about lua, I might not even be looking at the right area of the code as the culprit.
  3. http://addons.us.to/addon/flexbar-0 Action bar addon that has ability to effect buttons based on events, one of those events is cooldown start and finish. However, it is seeing every global cooldown as both a cooldown start and finish for the ability.. making it pretty much useless for this function. The code reads like this, local start = GetActionCooldown(button:GetID()); if start ~= 0 then return true I thought changing it to > 1.5 would fix the issue but it's still doing it, so then decided I just don't know enough about lua and thought I'd ask you guys for help.
  4. Basically I want to place buttons to be used for checking range and cooldown only that will never be clicked on, is there any action bar that allows setting bars as clickthrough so I don't have to worry about it?
  5. zebus

    Binding keys to action bar

    I'm confused as to what the problem is. I bind things to the function keys no problem under the keybind settings. How is it not working for you?
  6. zebus

    [Warlock] Shard Counter

    ReagentFu and AmmoFu will both show soul shards on fubar. As for automatic deletion of soul shards, there were several back in the day, but the only one I've found the files for to use on Elysium is Necrosis. Unfortunate, because for me it's way heavier of an addon than I would prefer :P
  7. zebus

    Friends List Addon Help

    I prefer http://addons.us.to/addon/auldlangsyne A lot simpler than Notes U Need if friends notes is all you are wanting.
×