LibFire
Added new functions:
; Replaces `{}` tokens in `asFormat` with `argValues` (supports up to 9 values)
; Note: Arrays exceeding the maximum number of values will be truncated.
; Syntax: https://fmt.dev/latest/syntax.html
String Function FormatFloat(String asFormat, Float[] argValues) Global Native
; Replaces `{}` tokens in `asFormat` with `argValues` (supports up to 9 values)
; Note: Arrays exceeding the maximum number of values will be truncated.
; Syntax: https://fmt.dev/latest/syntax.html
String Function FormatInt(String asFormat, Int[] argValues) Global Native
; Replaces `{}` tokens in `asFormat` with `argValues` (supports up to 9 values)
; Note: Arrays exceeding the maximum number of values will be truncated.
; Syntax: https://fmt.dev/latest/syntax.html
String Function FormatString(String asFormat, String[] argValues) Global Native
; Returns highest minimum skill level for `akSpell` (does not account for conditions, like level-based perks)
Int Function GetHighestMinSkillLevelForSpell(Spell akSpell) Global Native