We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i put a code which might be good or more friendly than AbbreviateLargeNumbers for target, especially for boss hp,hope it would be help.
AbbreviateLargeNumbers
local function FormatNumber(val) if val >= 10^6 then return string.format("%.2fm", val / 10^6) elseif val >= 10^3 then return string.format("%.1fk", val / 10^3) else return tostring(val) end end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i put a code which might be good or more friendly than
AbbreviateLargeNumbers
for target, especially for boss hp,hope it would be help.The text was updated successfully, but these errors were encountered: