• 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

Problem - Clickies

Cannonballdex

Master Tinkerer
Joined
Feb 9, 2017
RedCents
1,610¢
RGMercs Build?
Latest
What level is the character?
125
Adding clickies, is there a way to specify the clicky as downtime or dps? I have added a few dps clickies and they arent being used. Not showing in the rotation.
 
You'll add something like this to the class_config, for which rotation you want it to be in. You'll need to make entries in two places. I've used the existing code and entered new items as needed.

[CODE lang="Lua" title="This goes into the classconfig section"]['ItemSets'] = {
['Epic'] = {
"Blade of Vesagran",
"Prismatic Dragon Blade",
},
['Chest'] = {
"Cohort's Loremaster Breastplate",
},
['Dreadstone'] = {
"Possessed Dreadstone Minstrel's Rapier",
},
['SymphonyOfBattle'] = {
"Rapier of Somber Notes",
"Songblade of the Eternal",
},
['Darkened'] = {
"Darkened Breath of Harmony",
},
['Unity'] = {
"Unified Phoenix Feather",
},
},[/CODE]

[CODE lang="Lua" title="This goes into the rotation section you want"]{
name = "Unity",
type = "Item",
cond = function(self, itemName)
-- This item is instant cast for free with almost no CD, just mash it forever when it's available
return mq.TLO.FindItem(itemName).TimerReady() == 0
end,
},[/CODE]
 
Problem - Clickies

Users who are viewing this thread

Back
Top
Cart