Divinity: Original Sin 2

Divinity: Original Sin 2

Custom Damage Types
正在显示第 51 - 60 项,共 84 项条目
< 1 ... 4  5  6  7  8  9 >
更新于:2021 年 10 月 3 日 下午 11:22

  • Possible fix for some non-host users not receiving CDT entries.
  • Fixed some console errors associated with trying to send information to player characters before they are assigned to a player.
  • DEBUG: Added client chat command !CDT_FetchEntries to allow individual clients to request CDT to resend them entries from the server.
  • DEBUG: Added server console command !CDT_SendEntriesToUser [USERID] to allow hosts to send individual users CDT entries.

更新于:2021 年 10 月 2 日 下午 9:00

  • Reverted resistance recalculation fix since the extender has patched a fix.

更新于:2021 年 10 月 1 日 下午 8:18

  • Fixed issue where combat point was being erroneously refunded when leaving the respec mirror in certain situations.
  • Fixed issue where Aerotheurge was not properly refunded when using !CDT_ResetMyAbilities chat command.

更新于:2021 年 10 月 1 日 下午 1:57

  • Implemented a workaround for an extender bug that causes some targets to have their resistances factored as twice their actual amount for certain damage types.

更新于:2021 年 9 月 24 日 下午 11:05

  • CDT resistances no longer show a decimal value in character sheet tooltips.
  • Fixed error in recalculation process involving critical states.

更新于:2021 年 9 月 23 日 下午 10:37

  • Added support for forcing a critical state during the CDT damage calculation process. A table of functions must be added to your CDT's Adjustments table, where each function should return true if a critical should be forced, false if a non-critical should be forced, and nil if the default critical state should be used. This table should be empty if your CDT has no such functions.
    Example:
    ---This forces simulated DoT ticks via exploding projectiles to never crit. ---@param status EsvStatus ---@param context HitContext ---@param cdt CDTObject ---@return boolean|nil local function NoCritAdjustment(status, context, cdt) local hitSkill = CDT.CDT_FormatSkill(status.SkillId) for i, skill in pairs(SimulatedDoTs) do if hitSkill == skill then return false end end end MyCDT.DamageType.Adjustments.Critical = {NoCritAdjustment}

更新于:2021 年 9 月 23 日 下午 4:40

  • Skill School icons for skills and skillbooks are now more aggressively positioned. Hopefully this fixes an issue where the icon was very far to left (I can't replicate this <_>)

更新于:2021 年 9 月 23 日 上午 7:58

  • Skillbooks of CDT skills will now display the scaling property if applicable.

更新于:2021 年 9 月 22 日 下午 10:38

  • Fixed CDT abilities and resistance from showing up on unidentified items.
  • Fixed character's max met ability requirements not updating when changing gear.

更新于:2021 年 9 月 22 日 上午 11:57

  • Possible fix for some clients' CDT skill tooltips not being constructed properly.