• 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 - 100 mq2Melee INI - Zalikor's Fang issue

obii1kanobie

New member
Joined
Feb 11, 2014
RedCents
73¢
I don't use Kiss for my active toon, I use mq2melee with holyflag's on my toon I activaly play. But I was curious on if there is a way to get Zalikor's Fang to fire using that. I have used the coding below to test it out but no luck to me.

Rich (BB code):
/if (${Me.PctEndurance}<2 && ${Me.CombatAbilityReady[Zalikor's Fang]}) /casting 35101

Have also used /casting Zalikor's Fang

Rich (BB code):
/if (${Melee.Combat} && ${Me.AltAbilityReady[Zalikor's Fang]}) /alt activate Zalikor's Fang



I have tried a few other's but still can not get it to fire correctly. If anyone want's, I can post my whole INI for that. But figured i'd at least ask about that
 
I would think the following would work:

Rich (BB code):
/if (${Melee.Combat} && ${Me.AltAbilityReady[35101]}) /alt act 35101

My monk is not level 99 so I can't test it. Oh make sure you have the holyflag turned on.
 
I don't use Kiss for my active toon, I use mq2melee with holyflag's on my toon I activaly play. But I was curious on if there is a way to get Zalikor's Fang to fire using that. I have used the coding below to test it out but no luck to me.

Rich (BB code):
/if (${Me.PctEndurance}<2 && ${Me.CombatAbilityReady[Zalikor's Fang]}) /casting 35101

Have also used /casting Zalikor's Fang

Rich (BB code):
/if (${Melee.Combat} && ${Me.AltAbilityReady[Zalikor's Fang]}) /alt activate Zalikor's Fang



I have tried a few other's but still can not get it to fire correctly. If anyone want's, I can post my whole INI for that. But figured i'd at least ask about that

The highlighted portion is what I see will cause a problem. You are saying you want this to fire off when your endurance is less than 2 percent.

You are mixing names and numbers. If you want the alternate ability to fire use the number for it:
Rich (BB code):
/if (${Me.PctEndurance}>10 && ${Me.AltAbilityReady[Zalikor's Fang]}) /alt act INSERTNUMBERHERE
If it is a disc
Rich (BB code):
=/if (${Me.CombatAbilityReady[Zalikor's Fang]} && ${Me.PctEndurance}>10 ) /disc "Zalikor's Fang"

Might try that.
 
It is a disc, that last line should work for it. Can post mine when I get home if still not working.
 
To cast if there is enough Endurance you can use this. ${Me.CurrentEndurance} > ${Spell[Zalikor's Fang].EnduranceCost}

I did some testing on my SK and it seems he won't fire the disc if there are quotes around it, "".
Take away the quotes and he fired it as expected. (Using Grelleth's Carapace on my SK, fires when there are three or more mobs on him)

Rich (BB code):
holyshit10=/if (${Me.XTarget} > 2 && ${Me.CombatAbilityReady[Grelleth's Carapace]} && ${Me.CurrentEndurance} > ${Spell[Grelleth's Carapace].EnduranceCost}) /disc Grelleth's Carapace

Might try this:
Rich (BB code):
=/if (${Me.CombatAbilityReady[Zalikor's Fang]} && ${Me.CurrentEndurance} > ${Spell[Zalikor's Fang].EnduranceCost}) /disc Zalikor's Fang
 
Question - 100 mq2Melee INI - Zalikor's Fang issue

Users who are viewing this thread

Back
Top
Cart