「モジュール:Grid/Crafting Square Numbers」の変更履歴

ナビゲーションに移動 検索に移動

差分の選択: 比較したい版のラジオボタンを選択し、Enterキーを押すか、下部のボタンを押します。
凡例: (最新)=最新版との比較、(前)=直前の版との比較、=細部の編集

    2022年5月22日 (日)

    • 最新 21:422022年5月22日 (日) 21:42PerfectBoat トーク 投稿記録 1,171バイト +1,171 ページの作成:「local p = {} local g = require("Module:FTBCommon") local s = require("Module:FTBSprite") function p.makeCraftingNumbers(amount, link) local pos = {11, 11, 11} if amount > 1 then if amount > 99 then pos[1] = math.floor(amount / 100) amount = math.mod(amount, 100) pos[2] = math.floor(amount / 10) amount = math.mod(amount, 10) elseif amount > 9 then pos[2] = math.floor(amount / 10) amount = math.mod(amount, 10) end pos[3] = amount elsei…」