Accel World
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Fight for your right to burst!
 
HomeSearchLatest imagesRegisterLog in
We moved sites to the site in the topic called TO ALL MEMBERS, please join us. We would love to have you. Thank you.--UPDATE:NEW SITE OPENS ON MIDNIGHT
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Word Count

Free JavaScripts provided
by The JavaScript Source

Latest topics
» C.C's ability
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Gen Sun Aug 17, 2014 4:21 am

» C.C's Enhanced Armament
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Gen Sun Aug 17, 2014 3:45 am

» Gen's D.A character form
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Gen Sun Aug 17, 2014 3:33 am

» Gen's R.L character form
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Gen Sun Aug 17, 2014 3:19 am

» Big Beater
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sat Sep 29, 2012 9:39 pm

» Another Accel World RP
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sun Aug 19, 2012 1:50 am

» RE: TO ALL MEMBERS
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sun Aug 19, 2012 1:47 am

» Naruto Mirage (Advertisement)
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Mon Aug 13, 2012 7:56 pm

» PREdormitum: A Post-Game Civil War Pokemon RP
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Tue Jul 31, 2012 10:56 pm

» Origake's character
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Mon Jul 09, 2012 10:34 am

» Ability's Blue Barrage
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sun Jun 24, 2012 8:24 am

» Rapier Of Pierce
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sun Jun 24, 2012 8:20 am

» Face Claim : Careless Karim
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sun Jun 24, 2012 8:16 am

» Karim Saed's Character
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sun Jun 24, 2012 8:14 am

» Karim Saed
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Sun Jun 24, 2012 8:03 am

» TO ALL MEMEBERS
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Tue Jun 05, 2012 10:02 pm

» Aoi's group (W.I.P.)
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Fri Jun 01, 2012 9:54 pm

» Armor up! *White's armor ability*
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Guest Fri Jun 01, 2012 3:32 pm

» Your misc creations Template
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Dark Sparrow Fri Jun 01, 2012 1:48 pm

» Prometheus vs Illusive Grater
Damage Formula and Critical Counting Suggestion I_icon_minitimeby Dark Sparrow Fri Jun 01, 2012 12:55 pm

Statistics
We have 8 registered users
The newest registered user is ugolikam

Our users have posted a total of 1078 messages in 197 subjects

 

 Damage Formula and Critical Counting Suggestion

Go down 
AuthorMessage
Guest
Guest




Damage Formula and Critical Counting Suggestion Empty
PostSubject: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitimeThu May 17, 2012 5:30 am

I've been thinking of a good damage formula that makes sense and I came up with a few things. I've made the formula and comparisons between Aoi's Formula and Shikyo's damaging Formula. To change the random number in excel just edit an empty place and it should re-randomize.

Excel Download : http://www.mediafire.com/?yh2hosus5au39gb

== Formula 1 == (Base Attack Calculations)
(Our Attack-Enemy Defense)*0.1*If(Random(1,6)<=3,8,9) as an Attack Formula
Code:
(A1-A2)*0.1*IF(RANDBETWEEN(1,6)<=3,8,9)
to be used in Excel

== Formula 2 == (Critical Calculations)
If(Random(1,6)=1,RoundUp(Formula1*(Our Agility/133),0),Formula1) as a Critical Counter
Code:
IF(RANDBETWEEN(1,6)=1,ROUNDUP(U5*(F9/133),0),U5)
to be used in Excel

That excel is also the same excel that I use to measure whether I'll win versus someone or not :3
Back to top Go down
Guest
Guest




Damage Formula and Critical Counting Suggestion Empty
PostSubject: Re: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitimeThu May 17, 2012 5:40 am

Quote :
*If(Random(1,6)<=3,8,9) as an Attack Formula

whats this part suppose to be?

Quote :
If(Random(1,6)=1

this is dice, then the later part is

damage x (agi/133) 0) damage) ? whats the 0? and 133 and why this way?
Back to top Go down
Guest
Guest




Damage Formula and Critical Counting Suggestion Empty
PostSubject: Re: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitimeThu May 17, 2012 5:55 am

lucchini wrote:
Quote :
*If(Random(1,6)<=3,8,9) as an Attack Formula

whats this part suppose to be?

Quote :
If(Random(1,6)=1

this is dice, then the later part is

damage x (agi/133) 0) damage) ? whats the 0? and 133 and why this way?

The first formula randomizes a number from 1 - 6 or should you say randomize a dice, and If the result is 1 - 3 then your damage is (Your Attack - Enemy Defense)*0.8, If the result is 4 - 6 then (Your Attack - Enemy Defense)*0.9

The second formula is multiplying the base damage you got from the first formula with your agility divided by 133. In other words your critical damage is based on agility divided by 133 multiplied to the original damage.
Back to top Go down
Guest
Guest




Damage Formula and Critical Counting Suggestion Empty
PostSubject: Re: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitimeThu May 17, 2012 2:59 pm

Shiro, your formula sound very interesting.
A bit confusing but i think we could go for your formula.
Back to top Go down
Guest
Guest




Damage Formula and Critical Counting Suggestion Empty
PostSubject: Re: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitimeThu May 17, 2012 7:43 pm

Shikyo wrote:
Shiro, your formula sound very interesting.
A bit confusing but i think we could go for your formula.

Thanks, We could always use excel to count things :3
Back to top Go down
Guest
Guest




Damage Formula and Critical Counting Suggestion Empty
PostSubject: Re: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitimeThu May 17, 2012 8:28 pm

lol excel will keep things in order, and for that i thank you EXCEL!
Back to top Go down
Guest
Guest




Damage Formula and Critical Counting Suggestion Empty
PostSubject: Re: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitimeFri May 18, 2012 12:14 am

Shikyo wrote:
lol excel will keep things in order, and for that i thank you EXCEL!

We'll excel is also the key for me when it comes to challenging Players or NPCs, I always use it to calculate whether I would win or lose and for how many turns will the battle last.
Back to top Go down
Sponsored content





Damage Formula and Critical Counting Suggestion Empty
PostSubject: Re: Damage Formula and Critical Counting Suggestion   Damage Formula and Critical Counting Suggestion I_icon_minitime

Back to top Go down
 
Damage Formula and Critical Counting Suggestion
Back to top 
Page 1 of 1
 Similar topics
-
» Ideas/ Suggestion
» Rules Suggestion
» Usage of Speed Suggestion
» Question (since suggestion is block to normal user)

Permissions in this forum:You cannot reply to topics in this forum
Accel World  :: Off-Topic :: General Discussion-
Jump to: