• 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 - Quiet Miracle

Dutch_SK

Member
Joined
Aug 21, 2013
RedCents
1,713¢
Is there a way to make your CLR cast Quiet Miracle on your MAG or WIZ when they are low mana when using KissAssist?

Cant do it in your INI afaik, but maybe some Holyshit/Downshit on the MAG/WIZ that sends a bc to the cleric asking for Quiet Miracle?

Thanks in advance =)
 
If you have mq2bot loaded (but not /bot on, because /bot on it would auto use it), you can:
downshit1=/if (${Bot.MinMana[200].CurrentMana}<50 && ${Me.AltAbilityReady[Quiet Miracle]}) /multiline ; /squelch /tar id ${Bot.MinMana.ID} ; /timed 2 ; /alt act ${Me.AltAbility[Quiet Miracle].ID}

(change 50 to whatever percent you want to use it at)

Otherwise, it gets complicated without hardcoding by pc name for a downshit.

EDIT: forgot to add alt ability ready check. added it.
 
Okay that looks awesome, if I understand correctly it would cast Quiet Miracle on anyone in the group getting below 50% mana, right?
 
Righto. and the [200] is there because QM max range is 200 and if no index is passed, it uses 250.
 
in kiss no. I asked for it but no luck. This is the code i added to an afcleric macro i used to use for it . You could add this to kiss if you wanted to. Do a if Me.Class=cleric etc but i didnt bother. I use kiss now anyway my wizards dont really need QM.

Rich (BB code):
|---------------------------------------XMiracle Section---------------------------------------------------------------
Sub XMiracle
/declare i int local
    /for i 0 to 5 {
        /if (${Spawn[${Me.XTarget[${i}]}].Type.NotEqual[NPC]} && ${Me.AltAbilityReady[Quiet Miracle]} && (${Spawn[${Me.XTarget[${i}]}].CurrentMana}<=50 && ${i}>0||${i}==0) && ${Spawn[${Me.XTarget[${i}]}].CurrentMana}>0 && !${SpawnCount[${Group.Member[${i}]} corpse]}) {
            /squelch /tar ${Spawn[${Me.XTarget[${i}]}].Name}
    /if (${Announce}) /${MyChannel} Castng Quiet Miracle on ${Spawn[${Me.XTarget[${i}]}].Name}
            /delay 1 ${Target.ID}==${Spawn[${Me.XTarget[${i}]}].ID}
            /alt act ${Me.AltAbility[Quiet Miracle].ID}
            /delay 2
            /squelch /tar clear
        }    
    }
    /next i

}
/return
 
Last edited:
Question - Quiet Miracle

Users who are viewing this thread

Back
Top
Cart