• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - Cures

radraug

Member
Joined
Oct 18, 2016
RedCents
174¢
I am trying to get a 110 druid to cure diseases/corruption/poison. I don't know if Dannet is required but it is running on all toons. What would I be doing wrong?
 
I noticed with the RGMercs Macro version, curing never really worked. Hopefully this gets sorted in the Lua version
 
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?
 
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?
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.
 
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.
If you have the Mode set to healing he should be curing assuming you have one of the cure spells listed above.
 
If you have the Mode set to healing he should be curing assuming you have one of the cure spells listed above.
Mode is Heal and /dnet info shows all characters. Druid has more than one of the cure spells.
 
Question - Cures

Users who are viewing this thread

Back
Top
Cart