Jump to content

shirsig

Player
  • Content count

    288
  • Joined

  • Last visited

Everything posted by shirsig

  1. shirsig

    MrPlow

    There's one around somewhere but it's pretty bad anyway. You could try this but currently there's a server bug on nost that sometimes items get stuck and you have to relog or wait a while for them to get unstuck: https://github.com/shirsig/Clean_Up_GUI
  2. shirsig

    [Addon] DebuffTimers

    The cooldown shadow animation is actually not the same as the debuff shadow animation on retail. The cooldown starts fully shadowed and the debuff starts unshadowed. There is a workaround for creating the other effect that I came up with for cooldowns which is to manually calculate the reverse progress and constantly restart the animation in the onupdatemodel handler: https://github.com/shirsig/cooldowns/blob/master/frame.lua#L215-L228 There is still a difference which is that the animation's rotation is reversed, but I still think it looks better for something that's "expiring".
  3. shirsig

    [AddOn] aux and more

    I've now added pet cooldowns to the player cooldown frame. For enemy pet cooldowns they will sometimes be shown on the pet (combat log events include the pet name) and sometimes on the player (special case for combat log events without caster name where it will be assigned to your most recent hostile target with a matching class)
  4. Disables toggling behavior of Attack, Auto Shot and Shoot https://github.com/shirsig/notoggle IMPORTANT: Folder name must be "!toggle"
  5. shirsig

    [AddOn] attack (non toggling attack)

    Not for me. Some other addon? I don't see how it could as the behavior is simply to do literally nothing when you use Attack/Auto Shot/Shoot while attacking/shooting. Edit: actually it seems it never flashes for shooting and always flashes for attacking (that seems to be the default behavior, even without spamming the abiility?)
  6. shirsig

    [AddOn] attack (non toggling attack)

    Changed it a bit and merged it with the shoot addon. Now there are no macros. The addons simply disables the toggling behavior of Attack, Auto Shot and Shoot. To use them in a macro simply do the regular /cast attack etc. Folder name must be "!toggle"
  7. shirsig

    [AddOn] attack (non toggling attack)

    Your macro only works if you put Attack on your actionbar though. Actually, there's another, easier way to do it with just a macro: /run if not PlayerFrame.inCombat then CastSpellByName'Attack' end This works because the blizzard UI already sort of does what this addon does, but some unitframe addons might mess with it so it may not be completely reliable.
  8. shirsig

    [AddOn] aux and more

    Resizing it with a scale factor is not gonna work as it's going to scale the font too. Other ways of resizing would be way too complicated, sorry. Hm, they're not shown when you target your pet? Or do you mean they're just not shown together with your own cooldowns? You'll have to go through the commits yourself to find the right one (it's always been the same repo) but I would recommend against it.
  9. merged with (https://github.com/shirsig/notoggle)
  10. shirsig

    [AddOn] aux and more

    I guess you could get it from a later version of informant. Also you might be able to import another addon's database with a similar script, but I don't know of any. /aux populate wdb is used to fill the client's item cache. There isn't much of a reason to use it besides testing as an ah scan will cache most auctionable items anyway and also it may disconnect you by generating too much traffic.
  11. shirsig

    [AddOn] aux and more

    you need to delete the savedvariables (account wide file, client must be closed when deleting), you have an outdated history format.
  12. shirsig

    [AddOn] aux and more

    Then you must be missing something. vial maybe? Not interested in changing WIM beyond bugfixes sorry.
  13. shirsig

    [AddOn] aux and more

    The button's functionality is and always has been to only show crafts for which you have the mats. The name filter is independent from that. You can combine them if you wish. Also, you can always search for mats with the name filter, independent of that button.
  14. shirsig

    [AddOn] aux and more

    It's the same "Mats available" filter button with a different label.
  15. shirsig

    [AddOn] enemyFrames

    It never remembers the position for me for some reason. After ReloadUI() it stays the same but logging out and back in it's always moved to the left border of the screen.
  16. shirsig

    [AddOn] aux and more

    I've looked at WIM and it seems to be using a hook, not an event, which is good. The bad news is the problem would be that it's hooking too late, not too early and it already is hooking as early as possible. The only way to make it earlier would be to change the name of the addon (as they're loaded in alphabetical order) but I guess it would be more sensible to change it in spamthrottle instead (maybe hook it in the PLAYER_LOGIN handler or something).
  17. shirsig

    [AddOn] aux and more

    looks like you have an old version Well, it seems those are hacked accounts and eventually they'll get banned. I don't get them often anyhow.
  18. shirsig

    [AddOn] aux and more

    Well, most non gold whispers from lowlvls are portal/summon beggars in my experience so no big loss. People on your friendlist or that you have whispered in the active session are exempt. There's also a text filtering feature in WIM but I've never used it. It depends how much you craft. I mostly only use arcanite transmute/mooncloth when I have those professions. And for single-item queries you can also easily type them out with the help of autocompletion. If it bothers you so much you could move aux_recent_searches to SavedVariablesPerCharacter in the aux-addon.toc file.
  19. shirsig

    [AddOn] aux and more

    I'm still not sure what you want for WIM ("catch whispers after SpamThrottle"? What does that mean?). Like I said, it has a setting to ignore whispers from <lvl10 which I find gets rid of most of the gold spam. Separate profiles I don't think are worth it like I said. Sometimes it's useful to not have to retype the queries when on an alt and vanilla doesn't have enough useful items to make it messy. No.
  20. shirsig

    [AddOn] aux and more

    https://forum.elysium-project.org/index.php?showtopic=23657&p=275874 It's now called vend-profit.
  21. shirsig

    [Addon] DebuffTimers

    Yeah, like I said, it's not as smooth as the target api, but in many cases it does work pretty well, like, most CCs can't even have multiple applications on a target, and in pve dispelling is rare. I wouldn't use it in your context either but e.g. for cc timer bar addons I think it's definitely preferable to having nothing.
  22. shirsig

    [Addon] DebuffTimers

    This is not entirely true. There are three ways to track debuffs: through the target api, through combat log events and through player cast events. The last only works for your own spells so trivially you know they're your own. There are some further limitations though like it doesn't work for all effects, only those directly applied from a cast and it needs a delay to be reliable (like half a second or something) so it's not as smooth for target-only tracking as the target api. My newest https://github.com/shirsig/aurae uses player cast events exclusively and thus only tracks the player's own spells (actually only CCs+DRs and some dots). Some old addons like dotimer and chronometer do the same. It is a pretty good option for cross-target tracking where combat log events are the only alternative which have a few downsides too.
  23. shirsig

    [AddOn] aux and more

    possible that there's no combat log message for non-imp cs
  24. shirsig

    [AddOn] aux and more

    Not sure, I think it should work but only under limited conditions. Also, will have to look at the combat log events on new nost, maybe they're different.
  25. shirsig

    [AddOn] aux and more

    No idea. Have you tried it on both the laptop and pc multiple times and it always happened on the pc and never on the laptop? It could be a server side issue otherwise. Frankly I don't know how addons even could crash the client, besides freezing or disconnecting. You could try increasing the addon memory (or setting it to 0 for automatic) but I think if that were the issue you would get a warning before the client closes.
×