What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Can not cast Wrath because mana xx < xx ( using Essence Worm Ring)

rayzu

New Member
Joined
Jul 30, 2016
Messages
32
Hello as it is said in topic, bot won't use wrath because bot thinks he don't have enough mana to do that, but im using Essence Worm Ring which gives me no mana reservation for gem inside ( Wrath ). Where i can search and change it ?
 
Actually no, it could be a restriction API-wise, refraining auras to get casted even if socketed in it.

!summon Pushedx!

That's a good point.
Here's what Skill.SpellCost() consists of:

/// <summary>
/// The calculated relative spell cost.
/// E.g., 50% mana reserved will return 50.
///
/// </summary>
///
/// <returns/>
public float SpellCost()
{
float num1 = (float) this.Cost;
if (!this.RequiresPercentPower)
{
float num2 = (float) (1.0 + (double) this.GetStatFromAll(StatTypeGGG.MonsterLevelScaleMaximumManaAndManaCostPosPctFinal) / 100.0);
num1 *= num2;
}
int num3 = -this.GetStatFromAll(this.RequiresReservedPower ? StatTypeGGG.ManaReservationPosPct : StatTypeGGG.ManaCostPosPct);
if (num3 >= 100)
return 0.0f;
float num4 = num1 - (float) ((double) num1 * (double) num3 / 100.0);
if (!this.RequiresReservedPower)
num4 += (float) this.GetStatFromAll(StatTypeGGG.SkillManaCostPos);
if ((double) num4 < 0.0)
num4 = 0.0f;
return num4;
}

It looks like, unless the ManaReservationPosPct stat or RequiresReservedPower member is affected, it would run into issues.
I'd like to see a skill information dump for this socketed gem.
 
The solution for this is to change "wrath" position on skill bar, it need to be b4 other auras. It's not the best solution but it's working
 
Back
Top