View source for Module:Test
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- This is a Lua module for MediaWiki
-- It provides functionality to calculate percentages of a number
-- Create a table to hold the functions
local Test = {}
-- Function to calculate percentages
function Test.calculatePercentages(frame)
local args = frame.args
local dropRate = args[1] or "0/1" -- Extract the drop rate from the args, default to "0/1"
-- Parsing the drop rate
local numerator, denominator = dropRate:match("(%d+)/(%d+)")
denominator = tonumber(denominator) or 1 -- Convert denominator to a number or default to 1
local percentages = {}
-- Original number
table.insert(percentages, dropRate)
-- Donator (85% of original drop rate)
local donatorDenominator = math.floor(denominator * 0.85)
000
1:0
Template used on this page:
Return to Module:Test.