Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of HighSpell Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:59, 9 June 2025 Ryan talk contribs created page Module:MaxHit (Created page with "local p = {} -- Helper: parse a stat string like "30+20 Bonus" into total numeric value (e.g., 50) local function parseStat(statString) local total = 0 for num in string.gmatch(statString or "", "%d+") do total = total + tonumber(num) end return total end function p.maxhit(frame) local args = frame.args local parent = frame:getParent() -- Fetch and parse all three stat types local str = parseStat(args.Strength or parent.args.Str...")