• 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

EZ Server - Epic Clicky Holyshits?

Joined
Sep 1, 2013
RedCents
237¢
Has anyone been able to get MQ2Melee to successfully cast Zerker/Ranger epic Clicky via Holyshit? MQ2Cast isn't interacting with the augments right, I've tried all of the following:

/echo ${Cast.Ready[Berserker Class Augment 3.0]} (Returns FALSE)
/echo ${Cast.Ready[150303]} (150303 is the augment item ID, returns FALSE)
/echo ${Cast.Ready[Seismic Shatterer]} (Returns FALSE)
/echo ${Cast.Ready[151016]} (Item ID of the weapon itself, returns FALSE)

Is there something I'm missing? I'd appreciate a hand here. I suppose I could do put the item into MQ2Twist, and use a holy to twist it and a downshit to check if I'm currently twisting and turn it off when not in combat, but I was hoping for a more elegant solution. Any help is appreciated. Thanks guys.
 
The way I have it set up it cast but will spam it when if is off cooldown. Does any know of a way to add a timer to a holyshit so it only cast every 18 seconds?
 
Create a downshit to declare a timer variable:

Rich (BB code):
downshit#=/if (!${Defined[MyEpicTimer]}) /declare MyEpicTimer timer global 0

Create your holy shit based off the timer.

Rich (BB code):
holyshit#=/if (${MyEpicTimer.Equal[0]}) /multiline ; /useitem xxxxxxxx;/varset MyEpicTimer 18s


I think I helped someone with a similar problem before on the emu servers. Let me see if I can find the post from before.

- - - Updated - - -

http://www.redguides.com/community/showthread.php/35737-Holyshit?highlight=emu+clickies

Some EMU clicky info there that might help out a bit.
 
i'm trying to do something similar with a few clicky items in my holyshit's .... and i've checked that linked forum you have there... tried what they said... i have to be doing something derpishly wrong. but i can't for the life of me figure out what it is... atm this is what i have

holyshit13=/if (${Target.PctHPs} < 99 && ${Target.Type.Equal[NPC]} && ${Cast.Ready[Savage Spirit Infusion]}) /squelch /keypress 6

i've tried
holyshit13=/if (${Target.PctHPs} < 99 && ${Target.Type.Equal[NPC]} && ${Cast.Ready[6398]}) /Savage Spirit Infusion
holyshit13=/if (${Target.PctHPs} < 99 && ${Target.Type.Equal[NPC]} && ${Cast.Ready[Savage Spirit Infusion]}) /Savagesoul Jerkin of the Wilds
holyshit13=/if (${Target.PctHPs} < 99 && ${Target.Type.Equal[NPC]} && ${Cast.Ready[6398]}) /Savagesoul Jerkin of the Wilds
holyshit13=/if (${Target.PctHPs} < 99 && ${Target.Type.Equal[NPC]} && ${Cast.Ready[6398]}) /squelch /keypress 6
holyshit13=/if (${Target.PctHPs} < 99 && ${Target.Type.Equal[NPC]} && ${Cast.Ready[6398]}) /cast 6398


seems no matter what i do i get " Faled to parse /if condition '(TRUE && {Cast.Ready(6398)} && 80>1 && 80<97)', non-numeric encountered Unparsable in Calculation: '{'
 
Last edited:
"/savage spirit infusion" isn't going to be doing anything. You would need to either have a /useitem or /casting or some command in front of it for it to have any effect. I'm assuming the Savage Spirit Infusion is the aug in the Savagesoul Jerkin of the Wilds?

Type these in game and let me know what happens:

/echo ${Cast.Ready[6398]}
/echo ${Cast.Ready[Savage Spirit Infusion]}
/echo ${Cast.Ready[Savagesoul Jerkin of the Wilds]}
 
this is what i have now that is working for me.... i'm sure it's not as pretty or anything... would love some insight on how to tweak it to maybe get better performance out of it? if possible.

holyshit13=/if (${Cast.Ready[Blood Drinker's Coating]} && !${Me.Song[Vampiric Aura].ID}) /cast item "Blood Drinker's Coating"
holyshit14=/if (${Cast.Ready[Necromantic Dragon Bone]} && ${Target.PctHPs}<96) /casting "Necromantic Dragon Bone" item
holyshit15=/if (${Cast.Ready[Savagesoul Jerkin of the Wilds]} && ${Target.PctHPs}<96) /casting "Savagesoul Jerkin of the Wilds" Item
holyshit16=/if (${Cast.Ready[Boreal Tunic of the Fang]} && ${Target.PctHPs}<96) /casting "Boreal Tunic of the Fang" Item

- - - Updated - - -

first two came up "false" last came up "true " i'm assuming that's why the above holy 15 worked?
 
Yes, needed to check the right item for cast status. As long as they're working for you, not a whole lot to change on those though. Just a matter of keeping the items clicked as they're ready, no?
 
EZ Server - Epic Clicky Holyshits?

Users who are viewing this thread

Back
Top
Cart