Alright now, I did not copy this one, lol!
I copied the jabba one and the BH prof one, but the temps,macro,and nym exploit were all by me. This took me a while, and i hope i get premuim for this.
Ok, so by calculating the speed you fire your weapon, and learning how the different variables interact, you can learn a lot about how to play the game. Firstly, here's the speed to figure out how fast you fire a weapon:
$speed = ($S * $D) * ((100 - $P)/100.0)
speed: the actual rate between attacks, in seconds. caps at 1.0
S: the speed rating of the weapon you are using
D: the delay modifier of the special attack you are using. This is speed multiplier for how long you have to wait in between attacks.
P: Your character personal weapon speed modifier.
Those mathematics out their, will notice a problem here.once pistol_speed >= 100, you have a less than zero problem. In otherwords, if this was really the formula for weapon speed, woudln't this make it so if you had +100 or greater weapon speed, you could do any special with any speed gun at the cap of 1.0 seconds? The slowest special with the slowest gun on the server at 1.0 seconds per shot? That can't be correct! Who would use a broken formula like that to calculate speed? SOE WOULD.
Damage per a sec.
$DPS = ($M * (($Wmin + $Wmax) / 2)) / (($S * $D) * (100 - $P) / 100.0)
DPS: the average amount of damage done per second.
Wmax: the minimum damage range of your weapon.
Wmin: the maximum damage range of your weapon.
M: the damage modifier of the special attack you are using.
S: the speed rating of the weapon you are using.
D: the delay modifier of the special attack you are using.Ê
Wana know the damage of your gun with diffrent attacks? Ask me i'll let you know.
Info needed to calculate using my formuals:
Weapon Proffesion: Ex. Pistols
Min Damage
Max Damage
DPS
|