Results 1 to 10 of 55

Hybrid View

  1. #1
    Player
    Spald's Avatar
    Join Date
    Sep 2013
    Posts
    19
    Character
    Spald Spaldington
    World
    Goblin
    Main Class
    Fisher Lv 40
    Would you mind telling the formula you use for Progress (from your craftmanship and the effect of recipe level difference)? I can't find this anywhere.
    (0)

  2. #2
    Player
    LinKendel's Avatar
    Join Date
    Dec 2013
    Posts
    1
    Character
    Lin Kendel
    World
    Exodus
    Main Class
    Armorer Lv 39
    Quote Originally Posted by Spald View Post
    Would you mind telling the formula you use for Progress (from your craftmanship and the effect of recipe level difference)? I can't find this anywhere.
    Hello,

    I would like to know this formula too. It seems you don't take into account the level (for Spald, the code is there) :

    static public double Progress(int Craftmanship)
    {
    return 2.1094765455111721e+000 * Math.Pow(Craftmanship, 0)
    + 2.0220592590969483e-001 * Math.Pow(Craftmanship, 1)
    + 2.9264519107365955e-005 * Math.Pow(Craftmanship, 2);
    }

    I guess the level is not taken into account because this program is done for level 50 crafting level 50 items ?
    So you did your regression with a difference of level = 0

    Still if you have the formula for when there is a difference in level, I would be interested.

    Regards
    (0)