
- UID
- 537440
- 帖子
- 477
- 精华
- 0
- 威望
- 8
- 阅读权限
- 100
- 来自
- 动物跆拳道协会
- 注册时间
- 2009-8-12
|
=。=貌似公式里*b2/100的前面少了个括号
我之前算来算去后面也是193-XX.X=100+的
然后才发现 Math.round((193- 这里有两个括号而后面少了个……
后面应该是(193-1XX)*b2/100吧?
觉得分开两个算式看起来没那么累~
比如:
X=weaponASPD+Math.floor[Math.sqrt(agi*agi/2+dex*dex/5)/4+agi*b1/200]
Y=weaponASPD+Math.floor[Math.sqrt(agi*agi/2+dex*dex/7)/4+agi*b1/200]
三转STR型(193上限):
ASPD=X+Math.round[(193-X)*b2/100]
三转DEX型(193上限):
ASPD=Y+Math.round[(193-Y)*b2/100]
非三转STR型(190上限):
ASPD=X+Math.round[(190-X)*b2/100]
非三转DEX型(190上限):
ASPD=Y+Math.round[(190-Y)*b2/100]
还有就是摇摆舞蹈估计是b1+20
传说中aspd175->185 aspd180->193的神技~ |
|