Mage MP gain wrong?

Discussion in 'Help & Advice' started by pokerface, Dec 10, 2016.

  1. pokerface
    Offline

    pokerface Member

    Joined:
    Nov 27, 2016
    Messages:
    9
    Likes Received:
    7
    I thought the formula was 22~24 + (Improved MaxMP * 2) + (INT / 10).

    I had 726 INT (with Maple Warrior), so the minimum gain should have been 22 + 20 + 72 = 114, but I gained 113 instead.

    Is the INT from Maple Warrior not being counted?
     
    Last edited: Dec 10, 2016
  2. pokerface
    Offline

    pokerface Member

    Joined:
    Nov 27, 2016
    Messages:
    9
    Likes Received:
    7
    At the next level up, I had 731 INT (with Maple Warrior) but my MP gain was 112 MP, even the minimum according the formula is 22 + 20 + 73 = 115.

    Without Maple Warrior, I had 700 INT. If you use this value, the MP gain would be 112~114, so the gain of 112 would fit.

    So, my theory is that the INT from Maple Warrior isn't being counted for MP increase.
     
  3. Hampa
    Offline

    Hampa Donator

    Joined:
    Jan 18, 2014
    Messages:
    1,710
    Likes Received:
    3,213
    i think its 18~20+20+(int/10) but these numbers doesn't match up with your mp gain either so i might be wrong
    Code:
                        } else if (c.getPlayer().getJob().isA(MapleJob.MAGICIAN)) {
                            ISkill improvingMaxMP = SkillFactory.getSkill(2000001);
                            int improvingMaxMPLevel = c.getPlayer().getSkillLevel(improvingMaxMP);
                            if (improvingMaxMPLevel >= 1) {
                                MaxMP += rand(18, 20) + improvingMaxMP.getEffect(improvingMaxMPLevel).getY();
                            } else {
                                MaxMP += rand(18, 20);
                            }
     
  4. pokerface
    Offline

    pokerface Member

    Joined:
    Nov 27, 2016
    Messages:
    9
    Likes Received:
    7
    Hampa likes this.
  5. Hampa
    Offline

    Hampa Donator

    Joined:
    Jan 18, 2014
    Messages:
    1,710
    Likes Received:
    3,213
    mybad
     
  6. pokerface
    Offline

    pokerface Member

    Joined:
    Nov 27, 2016
    Messages:
    9
    Likes Received:
    7
    I've leveled a few more times and my MP increase is always as though INT from Maple Warrior doesn't count. Is it supposed to?
     

Share This Page