You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Virindi XPHelper helps determine how much your character's primary attributes (strength, endurance, etc) should cost to raise based on the costs of your skills and secondary attributes (health, stamina, mana).
To determine this, the following algorithm is used for each primary attribute type:
optimal_cost = 0
foreach (skill or secondary attribute)
{
if (this skill depends on the current primary attribute)
{
optimal_cost = optimal_cost + cost_to_raise_this_skill / attribute_divisor_for_this_skill
}
}
The text was updated successfully, but these errors were encountered:
From V's XPHelper:
The text was updated successfully, but these errors were encountered: