Southperry.net
[Pre-BB] MapleStory Formula Compilation - Printable Version

+- Southperry.net (https://www.southperry.net)
+-- Forum: Maplestory (https://www.southperry.net/forumdisplay.php?fid=15)
+--- Forum: Game Mechanics (https://www.southperry.net/forumdisplay.php?fid=33)
+--- Thread: [Pre-BB] MapleStory Formula Compilation (/showthread.php?tid=1033)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36


[Pre-BB] MapleStory Formula Compilation - Fiel - 2009-12-13

Equips?
Blessing?


[Pre-BB] MapleStory Formula Compilation - Nikkey - 2009-12-13

Fiel Wrote:Equips?
Blessing?

As I said, stupid cygnus skill-buff.


oh: my edit was like 1 min lata.


[Pre-BB] MapleStory Formula Compilation - rainbowBean - 2009-12-14

Power Knock Back (both weapons, credit to AGF/Fiel):
MAX = (DEX * 3.4 + STR) * Weapon Attack / 150
MIN = (DEX * 3.4 * Mastery * 0.9 + STR) * Weapon Attack / 150
Mastery is 0.1 at all levels

Where is this mastery come from?
Does it depend on Bow/Crossbow mastery?

Or

Does it depend on skill level as in
power knockback is level 30 = mastery 0.1 + 0.3 ?

Or

Mastery is always 0.1 , doesnt depend on any skill nor factor.
If its so, then remove the word mastery and replace with 0.1


[Pre-BB] MapleStory Formula Compilation - KaidaTan - 2009-12-14

rainbowBean Wrote:Mastery is always 0.1 , doesnt depend on any skill nor factor.
If its so, then remove the word mastery and replace with 0.1
This.

Is it necessary to ask for clarification on every little thing? Not to say there's anything wrong with making the data clearer, but it can't be that confusing really.


[Pre-BB] MapleStory Formula Compilation - rainbowBean - 2009-12-14

well, i am not as experienced as you in maplestory formula
furthermore, clarification would be good.
if i were to make a guide on all those maplestory formula,
I would explain where each variable comes from.

I am making a damage calculator, so explanation would help me understand how to code 1 better Glitter


[Pre-BB] MapleStory Formula Compilation - Takebacker - 2009-12-14

rainbowBean Wrote:well, i am not as experienced as you in maplestory formula
furthermore, clarification would be good.
if i were to make a guide on all those maplestory formula,
I would explain where each variable comes from.

I am making a damage calculator, so explanation would help me understand how to code 1 better Glitter

OH WOW I'M RETARDED.

c


[Pre-BB] MapleStory Formula Compilation - rainbowBean - 2009-12-14

Bare Hands:
MAX = (STR * J + DEX) * Weapon Attack / 100
MIN = (STR * J * 0.1 * 0.9 + DEX) * Weapon Attack / 100
ATT equals floor((2*level+31)/3) and is capped at 31.
J equals 3.0 for Pirates and 4.2 for all 2nd+ job Pirates.

what does the bold means?

does the value ATT is calculated before being used in "Weapon Attack"?


[Pre-BB] MapleStory Formula Compilation - KaidaTan - 2009-12-14

rainbowBean Wrote:does the value ATT is calculated before being used in "Weapon Attack"?
Yes. Why bother asking if you know the answer? You've done that a lot too. The first post isn't all that confusing.


[Pre-BB] MapleStory Formula Compilation - rainbowBean - 2009-12-14

I do not know the answer , it was guessing Hurt
By explaining my view point, you will understand faster and easier whether I am on the right / wrong track.


[Pre-BB] MapleStory Formula Compilation - Stereo - 2009-12-14

rainbowBean Wrote:Power Knock Back (both weapons, credit to AGF/Fiel):
MAX = (DEX * 3.4 + STR) * Weapon Attack / 150
MIN = (DEX * 3.4 * Mastery * 0.9 + STR) * Weapon Attack / 150
Mastery is 0.1 at all levels

Where is this mastery come from?
Does it depend on Bow/Crossbow mastery?

Or

Does it depend on skill level as in
power knockback is level 30 = mastery 0.1 + 0.3 ?

Or

Mastery is always 0.1 , doesnt depend on any skill nor factor.
If its so, then remove the word mastery and replace with 0.1

Can I just ask how you misinterpret "mastery is 0.1 at all levels" to in fact mean something else? It says right there that it's 0.1, I think that's a better explanation than just having a random 0.1 in the formula and not saying why it's 0.1 or anything.


[Pre-BB] MapleStory Formula Compilation - Shidoshi - 2009-12-14

It's mastery over there because almost ALL damage formulas go that way:

MAX = (primarystat*multiplier + secondstat)*attack
MIN = (primarystat*multiplier*mastery*0.9 + second stat)*attack


[Pre-BB] MapleStory Formula Compilation - shouri - 2009-12-18

under the misc section, should we add in that the combo cap is 30k too?


[Pre-BB] MapleStory Formula Compilation - Russt - 2009-12-18

Not really. Beyond 200, combo count isn't really used to calculate anything.


[Pre-BB] MapleStory Formula Compilation - shouri - 2009-12-18

Russt Wrote:Misc/Constants

 Spoiler




true enough though the bolded part (inside the spoiler) seems to imply we should toss it in there anyways. How 'bout adding the damage cap in there though. It's occassionally useful.


[Pre-BB] MapleStory Formula Compilation - Russt - 2009-12-19

Ah, yes. That should go there. Even though it's mentioned elsewhere it isn't somewhere you would think to look.


[Pre-BB] MapleStory Formula Compilation - ¥-Striker-¥ - 2009-12-21

¥-Striker-¥ Wrote:--------------------------------------------------------------------------------

O.o my bad, shud be :

40 overswings per min
28 (70%) of them critical : (920%+(200%*5hits)) * 28 = 53760%
12 normal : 920 * 14 = 11040%
11040 + 53760 = 64800% per Overswing with 100+ combo (70% chance of +200% damage)


Correct?

help miie. F4


[Pre-BB] MapleStory Formula Compilation - D3ath - 2009-12-25

Anyone know the formula for how much EXP/% is required to gain (20) family rep?


[Pre-BB] MapleStory Formula Compilation - Kalovale - 2010-01-08

Have we looked into Dualcharge yet? I suppose there should be some kMST videos by now. :f6:


[Pre-BB] MapleStory Formula Compilation - Russt - 2010-01-08

Speculation's been going on in one of the KMST threads.


[Pre-BB] MapleStory Formula Compilation - Fiel - 2010-02-12

GameMX and I figured out Ninja Ambush formula on the official servers in this thread.

(STR + LUK) * (1.5 + (skillLevel * 0.05)) * damage%

So as an example dit that has 50 STR and 950 LUK with max Ninja Ambush, the calculation would be the following

(50 + 950) * (1.5 + (30 * 0.05)) * (100 / 100)

1000 * (1.5 + 1.5) * (1)

1000 * 3

3000 damage/sec

Considering max Ninja Ambush can hit 6 mobs for 12 seconds...

3000 * 6 mobs = 18,000 damage/sec with 216,000 damage over 12 seconds

It matched all of his results perfectly.