
 Originally Posted by 
Raksha
					
				 
				Like I said, you dont need 2 cure 5s
Just have cure5 check wether your mainjob is whm, if so give low enmity, else give high enmity.
It's actually pretty easy to do.  If-then statements are some of the first things you learn when studying a programming language.
<if spell="Cure V">
<amount_cured=" MND + Healing skill * cure potency" />
<if $main_job = "WHM">
 <Enmity_Gained="400 CE", "700 VE" />
</if>
<else>
 <Enmity_Gained="$Cure_enmity_formula" />
</else>
</if>
Crude, I know, but it really isnt that difficult.  You could probably learn to do something similar in 1 hour if you tried.