Legendary Tempestuous Willow Staff of Destruction (Soulbound, IW)
Legendary Radiant Phase Cap of Freyr (Soulbound, AIW)
Legendary Radiant Phase Gloves of Freyr (Soulbound, AIW)
Legendary Radiant Phase Pants of Freyr (Soulbound, AIW)
Legendary Radiant Phase Shoes of Freyr (Soulbound, AIW)
Legendary Charged Cotton Robe of the Elementalist (Soulbound, AIW)
我這一套風法裝備,收裝備花了 22,846,000Credits ,IW花了 3,600,000Credits ,鍛造花了大約 12,568,350Credits (我把 phase 也給鍛造了,所以花的比較多),魂綁花了大約(6件裝備裡有4件500級的) 7,000,000Credits ,開環按 1Hath@2800C 算大約花了 9800×2800=27,440,000Credits ,這麼算下來一共花了 73,454,650Credits 。今天拿這套裝備打95層的那個競技場花了 2214turns ,14分鐘左右。我覺得拿這套裝備打競技場已經可以算得上很舒服了。看起來如果轉風法預算有 75m 的話應該會轉的很順利的。另外,算上金星的話每天清完競技場收益能到 500kCredits 左右,打個一年半載的應該能把轉法的預算賺回來。希望這個數據能有些幫助。
-------------------
我開的環:
Postage Paid
Vigorous Vitality
Effluent Ether
Enigma Energizer
Eminent Elementalist
Evil Enchantress
Force of Nature
Thinking Cap
Mentats
Learning Chip
Cybernetic Implants
Dæmon Duality I
-------------------
QUOTE(yskwqr @ Apr 25 2024, 07:23)

你好,感谢你的回答,但还是遇到了些问题
考虑了一下后,我最终下载的是ericeric91大佬帖子里的Battle stats 1.1.4
(原帖里的那个版本太旧,龙场显示还是150层)
虽然能打开统计页面,但是打了几个40层左右AR后发现脚本并未正常统计
脚本运行顺序是1,HV Utils 2,MB 3,Battle stats 4,各种汉化脚本
MB里的track是这样设定的

也不知道是版本问题还是设定错了,都没AR可以测了,再要测只能上GF了 (IMG:[
invalid]
style_emoticons/default/anime_cry.gif)
Battle stats 腳本樓裡應該有 bug 的回饋吧,你可以去看看有沒有能幫到你的地方。
QUOTE(l13763824039 @ Mar 5 2024, 21:28)

Error found and some fixes
000000000000000000000000000000000000000000000000000000000000000000000000000000
line 225
CODE
if (window.location.href.includes("/isekai/")) {
this.isekai = true
}
this.isekai = null if window.location.href.includes("/isekai/") = false
Fix:
CODE
this.isekai =window.location.href.includes("/isekai/")
000000000000000000000000000000000000000000000000000000000000000000000000000000
line 234
CODE
this.persona = persona.plist[persona.pidx].name;
In line 233, we have
CODE
let persona = JSON.parse(this.isekai ? localStorage.hvuti_persona : localStorage.hvut_persona);
But persona has no attribute of plist anymore in current Monsterbation version
Fix:
CODE
this.persona = persona[persona.pidx].name;
000000000000000000000000000000000000000000000000000000000000000000000000000000
line 235
CODE
let equip_set = JSON.parse(this.iseka ? localStorage.hvuti_eq_set : localStorage.hvut_eq_set);
In current Monsterbation version, "eq_set" is changed to "equipset".
Fix:
CODE
let equip_set = JSON.parse(this.iseka ? localStorage.hvuti_equipset : localStorage.hvut_equipset);
000000000000000000000000000000000000000000000000000000000000000000000000000000
After changing these, it works fine.
This post has been edited by KagamiHiiragiSama: Apr 25 2024, 09:41