Results: 7Comments by: Adrese
File: nibPointDisplay11-15-12
That's most likely the same problem...
Posted By: Adrese
That's most likely the same problem that Roan is running into. Most (maybe all, don't remember) of the spells the addon tracks for Priests have had their SpellID's changed. Check the spells against wowdb or wowhead and update the numbers accordingly in the Get Spell Info section of the Core.lua file. As for Shadow Orbs, they've be...
File: nibPointDisplay11-13-12
Roan, what you have to do is update...
Posted By: Adrese
Roan, what you have to do is update the SpellID's in the Get Spell Info section of the Core.lua file. Get Spell Info is located near the bottom of the Core.lua file. SpellID's can be found on websites like wowdb.com. The SpellID will be the number in the URL (Example: http://www.wowdb.com/spells/81662-evangelism). Hope that hel...
File: nibPointDisplay10-31-12
I can't tell you whether or not you...
Posted By: Adrese
I can't tell you whether or not your coding is correct, but I can confirm that it doesn't work for me. : Hmm, that's odd. I've been using my changes since monks went live and haven't had any problems yet. Are you getting a Lua Error when you load up the addon? If you look through the comments here, there's a small change you ha...
File: nibPointDisplay09-25-12
Hey guys, so I'm playing around wit...
Posted By: Adrese
Hey guys, so I'm playing around with the settings and trying to make a Chi counter. So far this is what I did. Add this to the listing of classes near the top of the core.lua. Part of the nibPointDisplay.Types function = { name = "Monk", points = { = {name = "Chi", id = "chi", barcount = 5}, }, }, Note: I ma...
File: AuctionLite09-04-12
In the tooltip.lua file there is a...
Posted By: Adrese
In the tooltip.lua file there is a line that has LootSlotIsItem. You have to replace that with the new API's LootSlotHasItem. LootSlotIsItem was removed with 5.0.4.
File: nibRunes09-02-12
GetCompanionCooldown was removed. I...
Posted By: Adrese
GetCompanionCooldown was removed. I replaced it with GetSpellCooldown and it's working fine. But I also don't really know what that bit of the code does. I think it was just a way for the addon to get the speed of the global cooldown when it changes between 1 and 1.5. Though since all DK's now have a 1 second cd it may not be necessa...
File: nibPointDisplay08-29-12
There's a line in the Core.lua file...
Posted By: Adrese
There's a line in the Core.lua file that reads: function nibPointDisplay:UpdateSpec() PlayerSpec = GetActiveTalentGroup() end changing it to: function nibPointDisplay:UpdateSpec() PlayerSpec = GetActiveSpecGroup() end has made it work for me. (You still have to choose load out of date at character screen addons window)....