TheNomadMan
New member
- Joined
- Feb 8, 2014
- RedCents
- 451¢
Due to the way SoE did Nurturing Growth's casting timer, this spell can get KA stuck. Below is a fix I'm using, to allow my druid to safely cast this spell as a |Mana buff
Rich (BB code):
| Check and Cast mana type spells/aas/items - Canni/Paragon/Harvest
/if (${2ndPart.Equal[Mana]}) {
/if (${Me.PctMana}<=${3rdPart} && ${Me.PctHPs}>${4thPart} && ${Cast.Ready[${1stPart}]}) {
| Check for stupid druid bear
/if (${Me.Class.Name.Equal[Druid]} && ${1stPart.Find[Nurturing Growth]} && (${Me.Buff[Nurturing Growth].ID} || ${Me.Buff[Nurturing Growth RK. II].ID} || ${Me.Buff[Nurturing Growth Rk. III].ID})) {
/echo I see a bear
/goto :SkipBuff
}
/if (${DebugBuffs}) /echo DEBUGBUFFS Canni/Paragon/Harvest
/call CastWhat "${1stPart}" ${Me.ID} Buffs
/if (${Macro.Return.Equal[CAST_SUCCESS]}) /echo Casting >> ${1stPart} << for mana
| Combat check to return - no other buffing allowed
/goto :SkipBuff
}
}
Last edited:

