• 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 - Paladin Splash in MQ2Events

eqman22

Active member
Joined
Dec 31, 2014
RedCents
880¢
Hey guys, is there a way to make an mq2event to make a paladin target itself and cast splash when an emote is made? I can handle the emote part of the mq2event, but for the life of me I can't figure out how to make a paladin cast splash via mq2events. Any help would be greatly appreciated!
 
[Splash]
trigger=#*#TriggerTextHere#*#
command=/multiline ; /if (${Select[${Me.Class.ShortName},PAL]}) /cast "Splash of BlahBlah"

/return

Dont think you need to target yourself for splash to cast. I always just have the mob on my target.
 
Here's what i did for Shei. The goal here in certain situations, only cast splash when twincast is up. And an event to enable casting of twincast (which in turn enables splash).

By default, will just use splash to heal. To enable the trigger mode do
/varset hTwincastMode 2
/varset hSplashMode 2

muleassist config
Code:
DPS6=Brilliant Acquittal|99
DPSCond6=${hTwincastMode}==1 || (${hTwincastMode}==2 && ${hTwincastTrigger})

Heals7=Splash of Repentance|100
HealsCond7=(${hSplashMode}==1 && ${Group.Injured[80]} > 2) || (${hSplashMode}==2 && ${Me.Song[Healing Twincast].ID})


ingame.cfg
[CODE title="ingame.cfg"]/squelch /echo hTwincastMode, 1=always, 2=when hTwincastTrigger
/if (!${Defined[hTwincastMode]}) /declare hTwincastMode int global 1
/if (!${Defined[hTwincastTrigger]}) /declare hTwincastTrigger timer global 0
/squelch /echo hSplashMode, 1=for healing, 2=when twincast
/if (!${Defined[hSplashMode]}) /declare hSplashMode int global 1[/CODE]

[CODE title="MQ2Eents"][tol-shei-dt]
trigger=#1#, You are unworthy#2#
command=/varset hTwincastTrigger 20s[/CODE]
 
Last edited:
Question - Paladin Splash in MQ2Events

Users who are viewing this thread

Back
Top
Cart