Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

['Cures'] = {
CureNow = function(self, type, targetId)
local cureSpell = RGMercUtils.GetResolvedActionMapItem('SingleTgtCure')
if not cureSpell or not cureSpell() then return false end
return RGMercUtils.UseSpell(cureSpell.RankName.Name(), targetId, true)
end,
},
['SingleTgtCure'] = {
-- Single Target Multi-Cure >= 84
"Expurgated Blood",
"Unblemished Blood",
"Cleansed Blood",
"Perfected Blood",
"Purged Blood",
"Purified Blood",
"Sanctified Blood",
},
I guess enabling it is sort of the problem. I saw "IsCuring = function() return RGMercUtils.IsModeActive("Heal") end," and thought healing would enable it. I cant find any way to enable curing and was looking through all the files to find IsCuring and checking /rgl set. I see no mode for it either.RGmercs will setup your observers for you.
If you have curing enabled here is what the druid does:
Code:['Cures'] = { CureNow = function(self, type, targetId) local cureSpell = RGMercUtils.GetResolvedActionMapItem('SingleTgtCure') if not cureSpell or not cureSpell() then return false end return RGMercUtils.UseSpell(cureSpell.RankName.Name(), targetId, true) end, },
and Single Tgt Cure is one of these:
Code:['SingleTgtCure'] = { -- Single Target Multi-Cure >= 84 "Expurgated Blood", "Unblemished Blood", "Cleansed Blood", "Perfected Blood", "Purged Blood", "Purified Blood", "Sanctified Blood", },
So do you have cures enabled and one of these spells?
If you have the Mode set to healing he should be curing assuming you have one of the cure spells listed above.I guess enabling it is sort of the problem. I saw "IsCuring = function() return RGMercUtils.IsModeActive("Heal") end," and thought healing would enable it. I cant find any way to enable curing and was looking through all the files to find IsCuring and checking /rgl set. I see no mode for it either.
Mode is Heal and /dnet info shows all characters. Druid has more than one of the cure spells.If you have the Mode set to healing he should be curing assuming you have one of the cure spells listed above.
