EQ2 Inquisitor hopeful quick fix

The_N

Member
my inquis. has his mythical. When using cure how do i get inquis to use mythical first then cast cure as well.

Thanks all for your help
 
Last edited:

bob_the_builder

Well-Known Member
In the class routine the Mythical gets cast first and only will cast group cure if the Mythical isn't ready.

Code:
;Cure the group if 3 or more people need curing
if ${grpcure}>2
{
	if ${Me.Ability[Cleansing of the Soul].IsReady}
	{
		eq2execute /useability "Cleansing of the Soul"
		eq2execute /p "Cleansing of the Soul - Group cure"				
		wait 2
	}	
	elseif ${Me.Ability[${SpellType[220]}].IsReady}
	{
		call CastSpellRange 220 0 0 0 ${Me.ID}
		wait 2
	}		
}
I have no clue why you would even want the Mythical to cast AND to have a cure cast ... but I guess just remove the ELSE from the ELSEIF and then the Inq will cast both....

*shrug*
 

flatlined

Active Member
I think the intention was to have it prioritize the myth cure, but if that's down, drop back to the group cure?
 
Top Bottom