Page 2 of 2 FirstFirst
1
2
  1. #21
    Is there an updated version of the TrinketDB?

  2. #22
    Quote Originally Posted by Nokura View Post
    Is there an updated version of the TrinketDB?
    Looks like wago user 'Not' has updated it a bit, I understand Cyous stopped playing some time ago.

    I can't post the link yet.. but search WAGO for 'WA_TrinketDB - Not edits'

    He hasn't mentioned exactly what trinkets were added, Cyous' WAGO page (search 'WA_TrinketDB') does show how to manually add trinkets to the DB for any that don't work.

    I hope this helps anyone still searching.

  3. #23
    I haven't updated it in a while (the page will show a recent update, but that was to fix a failsafe).

    You can still add trinkets to the database. Be sure to add the itemID to "live trinkets" table as well. (And any "dead" trinkets to the "dead" table...like stat sticks.)
    The Boomkings(WIP) :: YouTube Project

  4. #24
    Big ole bump.

    I've updated this for 7.2 and TOS. I need to create multi-spell support, but it's very... uhh... challenging, to say the least.

    Anyhow, to test some basics of multi-spell support, Whispers in the Dark now shows the debuff and Dreadstone will track all 3 procs (mostly to see how im going to handle it).
    The Boomkings(WIP) :: YouTube Project

  5. #25
    So, can you teach me how to do the same for Memento of Angerboda and Entwined Elemental Foci?

    Trinkets information following your directions:

    Code:
    	[133644] = {   -- Memento of Angerboda
                ["spellid"] = 214807,      
                ["spellname"] = "Dirge of Angerboda",
                ["duration"] = 8, 
                ["cooldown"] = 0, 
                ["icon"] = "spell_deathknight_unholypresence",
                ["mode"] = "RPPM",
                ["rppm"] = 1.5,
            },
    		
    		[133644] = {   -- Memento of Angerboda
                ["spellid"] = 214802,      
                ["spellname"] = "Howl of Ingvar",
                ["duration"] = 8,
                ["cooldown"] = 0,
                ["icon"] = "spell_deathknight_bloodpresence",
                ["mode"] = "RPPM",
                ["rppm"] = 1.5,
            },
    				
    		[133644] = {   -- Memento of Angerboda
                ["spellid"] = 214803,      
                ["spellname"] = "Wail of Svala",
                ["duration"] = 8,
                ["cooldown"] = 0,
                ["icon"] = "spell_deathknight_frostpresence",
                ["mode"] = "RPPM",
                ["rppm"] = 1.5,
            },
    		
    		[140796] = {   -- Entwined Elemental Foci
                ["spellid"] = 225729,      
                ["spellname"] = "Frost Enchant",
                ["duration"] = 20,
                ["cooldown"] = 0,
                ["icon"] = "inv_staff_15",
                ["mode"] = "RPPM",
                ["rppm"] = 0.7,
            },
    		
    		[140796] = {   -- Entwined Elemental Foci
                ["spellid"] = 225726,      
                ["spellname"] = "Fiery Enchant",
                ["duration"] = 20,
                ["cooldown"] = 0,
                ["icon"] = "spell_fire_flameblades",
                ["mode"] = "RPPM",
                ["rppm"] = 0.7,
            },
    		
    		[140796] = {   -- Entwined Elemental Foci
                ["spellid"] = 225730,      
                ["spellname"] = "Arcane Enchant",
                ["duration"] = 20,
                ["cooldown"] = 0,
                ["icon"] = "spell_holy_removecurse",
                ["mode"] = "RPPM",
                ["rppm"] = 0.7,

  6. #26
    Spells with multiple effects aren't supporting in-full. I need to add some code to check for alternative spell ids. In the means time, you can try to find the Dreadstone override (it's hardcoded in the Trinket triggers). Basically, swap the spell ids from there and you're golden.
    The Boomkings(WIP) :: YouTube Project

  7. #27
    On the other hand you dont have interest in take over this addon?

    https://mods.curse.com/addons/wow/extracd

    Pretty much do the same as your aura, easy to add new buffs, support for sets, talents and more.
    Very good addon, It is a pity that the author could not continue to update
    Last edited by Senx; 2017-05-16 at 04:30 PM.

  8. #28
    No interest in taking over anything.
    The Boomkings(WIP) :: YouTube Project

  9. #29
    Does it track trinkets like DMD:Immortailty aswell? Or just trinkets with cooldown on them?

  10. #30
    Quote Originally Posted by Odengard View Post
    Does it track trinkets like DMD:Immortailty aswell? Or just trinkets with cooldown on them?
    If the item ID is in the database, it will track it if it's set up properly.
    The Boomkings(WIP) :: YouTube Project

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •