Results -9 to 0 of 165

Threaded View

  1. #32
    Player Aaralyn's Avatar
    Join Date
    Mar 2011
    Posts
    48
    Quote Originally Posted by Raksha View Post
    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.
    Said I was assuming. Can you name a spell that has the example you've written out?
    (1)
    Last edited by Qeepel; 05-29-2011 at 02:39 AM. Reason: Inappropriate language.