[Release] MapleSea Multi-Calculator v0.10
- xiangloong
- The Great Lord
- Posts: 1794
- Joined: Sat May 15, 2010 6:44 pm
- Location: Kajang,Selangor
Re: [Release] MapleSea Multi-Calculator v0.04
thx dude!^^ im freaking love u
add me on MSN if u need help
xiangloong@xmtmail.tk
Never Be A Hacker when you're Not Talented

Uploaded with ImageShack.us
xiangloong@xmtmail.tk
Never Be A Hacker when you're Not Talented

Uploaded with ImageShack.us
-
- Apprantice Knight
- Posts: 19
- Joined: Wed Jun 09, 2010 3:58 pm
Re: [Release] MapleSea Multi-Calculator v0.04
hey man, issit possible to help you with the monster list?
Re: [Release] MapleSea Multi-Calculator v0.04
well you can suggest what mobs you want to see on the next updatebabagreensheep wrote:hey man, issit possible to help you with the monster list?
-
- Apprantice Knight
- Posts: 19
- Joined: Wed Jun 09, 2010 3:58 pm
Re: [Release] MapleSea Multi-Calculator v0.04
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
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.
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
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
Magical Accuracy is calculated as follows:
1.2 * Luck + Intelligence + Accuracy from Equipments
v0.05 is coming up later in they day

Re: [Release] MapleSea Multi-Calculator v0.05
Bump~ v0.05 is out
do provide feedback and bug reports
before you ask any qns, do read the first few lines on the first post^^
do provide feedback and bug reports

before you ask any qns, do read the first few lines on the first post^^
Re: [Release] MapleSea Multi-Calculator v0.04
Ty very much^^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
-
- Apprantice Knight
- Posts: 19
- Joined: Wed Jun 09, 2010 3:58 pm
Re: [Release] MapleSea Multi-Calculator v0.05
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?
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
@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
This code fails. IDK why.
*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