• 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

Request - PAL pull settings

morfilicious

Member
Joined
Jan 8, 2024
RedCents
127¢
RGMercs Build?
current
What level is the character?
125
Using a 125 paladin to pull and tank, I have only three options: Autoattack, taunt, and body pull.
I notice that SHD have a couple of spell options for pulling, but PAL doesn't.

I use the threat-over-time ("For Honor" line, or "Challengetaunt" in the pal_class_config.Lua) as a pull spell. To add it, I copied the "ForPower" section of the shd_class_config.Lua and changed "ForPower" to "Challengetaunt", and added it to my pal config. It works a treat.

However, this gets overwritten with each update.

Can we get this added to the defaults?
 
[CODE title="pal_class_config.Lua" highlight="27-38"] ...
['PullAbilities'] = {
...
{
id = 'Challengetaunt',
Type = "Spell",
DisplayName = function() return RGMercUtils.GetResolvedActionMapItem('Challengetaunt').RankName.Name() or "" end,
AbilityName = function() return RGMercUtils.GetResolvedActionMapItem('Challengetaunt').RankName.Name() or "" end,
AbilityRange = 150,
cond = function(self)
local resolvedSpell = RGMercUtils.GetResolvedActionMapItem('Challengetaunt')
if not resolvedSpell then return false end
return mq.TLO.Me.Gem(resolvedSpell.RankName.Name() or "")() ~= nil
end,
},
},
...[/CODE]
 
[CODE title="pal_class_config.lua" highlight="27-38"] ...
['PullAbilities'] = {
...
{
id = 'Challengetaunt',
Type = "Spell",
DisplayName = function() return RGMercUtils.GetResolvedActionMapItem('Challengetaunt').RankName.Name() or "" end,
AbilityName = function() return RGMercUtils.GetResolvedActionMapItem('Challengetaunt').RankName.Name() or "" end,
AbilityRange = 150,
cond = function(self)
local resolvedSpell = RGMercUtils.GetResolvedActionMapItem('Challengetaunt')
if not resolvedSpell then return false end
return mq.TLO.Me.Gem(resolvedSpell.RankName.Name() or "")() ~= nil
end,
},
},
...[/CODE]
Range is 200 for these spells, not 150. Other than that, its what I use on my pally as well.
 
Request - PAL pull settings

Users who are viewing this thread

Back
Top
Cart