Page 3 of 7

Re: [Release] MapleSea Multi-Calculator v0.04

Posted: Wed Oct 13, 2010 7:21 pm
by xiangloong
thx dude!^^ im freaking love u

Re: [Release] MapleSea Multi-Calculator v0.04

Posted: Thu Oct 14, 2010 5:56 pm
by babagreensheep
hey man, issit possible to help you with the monster list?

Re: [Release] MapleSea Multi-Calculator v0.04

Posted: Thu Oct 14, 2010 6:17 pm
by KFSPC8
babagreensheep wrote:hey man, issit possible to help you with the monster list?
well you can suggest what mobs you want to see on the next update

Re: [Release] MapleSea Multi-Calculator v0.04

Posted: Thu Oct 14, 2010 6:58 pm
by babagreensheep
lol i was thinking more along the lines of compiling a lists of monsters with their levels and avoid for easy input to help you. im bored

Re: [Release] MapleSea Multi-Calculator v0.04

Posted: Fri Oct 15, 2010 12:10 pm
by Raiden
Well can I know what is the Magic Accuracy formula???

I googled around but i only found a noob formula that is INT/10+LUK/10+BonusAcc. I`m pretty sure it`s WRONG.

Re: [Release] MapleSea Multi-Calculator v0.04

Posted: Fri Oct 15, 2010 3:37 pm
by KFSPC8
Magic Accuracy is just Accuracy for Magic attacks like magic claw / energy bolt etc..
Magical Accuracy is calculated as follows:
1.2 * Luck + Intelligence + Accuracy from Equipments
v0.05 is coming up later in they day :D

Re: [Release] MapleSea Multi-Calculator v0.05

Posted: Fri Oct 15, 2010 6:36 pm
by KFSPC8
Bump~ v0.05 is out
do provide feedback and bug reports :D
before you ask any qns, do read the first few lines on the first post^^

Re: [Release] MapleSea Multi-Calculator v0.04

Posted: Fri Oct 15, 2010 7:37 pm
by Raiden
KFSPC8 wrote:Magic Accuracy is just Accuracy for Magic attacks like magic claw / energy bolt etc..
Magical Accuracy is calculated as follows:
1.2 * Luck + Intelligence + Accuracy from Equipments
v0.05 is coming up later in they day :D
Ty very much^^

Re: [Release] MapleSea Multi-Calculator v0.05

Posted: Sun Oct 17, 2010 8:31 pm
by babagreensheep
cool love you man. wad did you use to make it?

EDIT:
also, im pretty sure that magic acc formula is for only after bigbang has been implemented.
check it out: http://www.southperry.net/showthread.php?t=31480

as for current accuracy, i think it should be in this thread:
http://www.southperry.net/showthread.php?t=855

^^

further edit:
i dun really like the way the number of monsters to lvl is calculated. try putting in 0 currentexp and 0%, it doesnt work
wouldnt it be better to calculate using current exp and lvl?

Re: [Release] MapleSea Multi-Calculator v0.05

Posted: Sun Oct 17, 2010 9:48 pm
by Raiden
@KFSPC8 : You used Delphi to code this program right. I have some problems: Whatz the formula that you use in your calculator. My code fails a lot zzz..... (I`m using VB)
*MaxAcc is the accuracy needed to 100% hit

Code: Select all

If CharLevel <= MobLvl Then
MaxAcc = ((55 + (2 * (MobLvl - CharLevel)) * MobAvd) / 15
Else
MaxAcc = 55 * MobAvd / 15
End If
This code fails. IDK why.