speshulk926
Community Developer
- Joined
- Dec 8, 2014
- Messages
- 911
It casts for me. I'm not sure why. Can you tell me what the name of your warglaives are?speshulk, i setup the Soul Carver like you but still not working![]()
Here is the code it uses:
Code:
if (Me.HasTankWarglaivesEquipped())
{
if (await S.Cast(SB.SoulCarver, C.DefensiveColor,
M.IS.VengeanceAllowSoulCarver
&& Me.HealthPercent <= M.IS.VengeanceSoulCarverHp,
string.Format($"AM: HP:{Me.HealthPercent.ToString("F0")}<={M.IS.VengeanceSoulCarverHp}")
))
{ return true; }
}
Here's what it uses for making sure you have warglaives... It may be a cultural thing. I may need to change that to the ID number instead of text.
Code:
if (mh.Name == "Aldrachi Warblades" && oh.Name == "Aldrachi Warblades")
{
return true;
}
Last edited: