Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Azmarin Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:30, 24 June 2025 Admin talk contribs created page Module:CraftingRecipe (Created page with "local p = {} function p.show(frame) local ingredients = frame.args['ingredients'] local products = frame.args['products'] local ingredientList = mw.text.split(ingredients, ',') local productList = mw.text.split(products, ',') local result = '{| class="wikitable"\n! Ingredient !! Amount\n' for _, item in ipairs(ingredientList) do local parts = mw.text.split(item, ':') result = result .. '|-\n| ' .. parts[1] .. ' || ' .. parts[2]...")