aerez hickup correction

Discussion in 'E3' started by Casai, Sep 1, 2020.

  1. Casai

    Casai Orc Legionnaire

    Messages:
    109
    in the e3_Classes_Cleric.inc

    SUB EVENT_AE_Rez and sub Event_Rez

    otherwise the resses dont work if clerics use spells instead of clickies and AAs

    Code:
          /if ((!${c_Ready} || !${check_Mana["rezArray2D",1]}) && ${Me.CombatState.NotEqual[COMBAT]}) {
                /if (!${Me.Sitting}) /sit on
                /delay 1s
                /goto :checkReady
              } else {
                /stand
              }

    original
    Code:
              :checkReady
              /call check_Ready "rezArray2D" 1
              /if ((!${c_Ready} || !${check_Mana["rezArray2D",1]}) && ${Me.CombatState.NotEqual[COMBAT]}) {
                /if (!${Me.Sitting}) /sit on
                /delay 1s
                /goto :checkReady
              }