安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
Weapon damage scales with weapon attributes, and is plugged straight into the damage calculation. That's just how it be.
Use a staff or another mod to get intelligence-scaling weapon damage. There is also the Catalyst's Hammer.
The code for the Glyph changes was a bit janky to start, and it would appear that it's just not doing things in the order that was previously expected.
For now, these three glyphs are affected:
Glyph of Storms
Glyph of Power
Glyph of Harmony
The immediate workaround is to keep them all memorized or have memory slots for them to occupy. Use mods or console to remove them if this is unacceptable due to memory constraints, but until this is actually working, this is the only real way to have a stable memorized list of skills.
What is essentially happening is that the function that handles Glyph Changes is called half a dozen times per attunement change, and overlapping one another. So when a glyph is removed to be swapped, the other instances of the function are filling in the space right away with their swap. I need to redesign the functions so this change is only called once, and not resulting in a nearly-recursive loop.
I am sorry for the late reply. I'll see about getting to the issues.