Prior to the Cataclysm update I used to have a DK module that gave me a reminder for HoW
deathknight.lua in modules:
if select(2, UnitClass("player")) == "DEATHKNIGHT" and
UnitLevel("player")>= 65 then evl_Reminders:AddReminder("Missing Horn of Winter",
function() return not evl_Reminders:PlayerHasBuff("Horn of Winter") end,
"INV_Misc_Horn_02", {type1 = "spell", spell1 = "Horn of Winter", unit1 = "player"})
end
, which worked perfect.
I wanted to use it now and also add battle shout with a warrior module. However it doesn't seem to work anymore with your update (the way to integrate new modules).
I did put it into the .toc file and I also added
deathknight = {
enabled = true
},
to the evl_Reminders.lua
Am I missing something?
Prior to the Cataclysm update I used to have a DK module that gave me a reminder for HoW
deathknight.lua in modules:
if select(2, UnitClass("player")) == "DEATHKNIGHT" and
UnitLevel("player")>= 65 then evl_Reminders:AddReminder("Missing Horn of Winter",
function() return not evl_Reminders:PlayerHasBuff("Horn of Winter") end,
"INV_Misc_Horn_02", {type1 = "spell", spell1 = "Horn of Winter", unit1 = "player"})
end
, which worked perfect.
I wanted to use it now and also add battle shout with a warrior module. However it doesn't seem to work anymore with your update (the way to integrate new modules).
I did put it into the .toc file and I also added
to the evl_Reminders.lua
Am I missing something?