Module:Tips and tricks: Difference between revisions

From BTA-Mirror
imported>Ttv pedro270707
(Created page with "local p = {} -- It is possible to move this to Module:Tips and tricks/tips p.tips = { "Press R (default) to open the Guidebook.", "Portals can be as large (or small) as you want.", "Making a Nether portal requires obsidian edges.", "The trommel lets you turn useless dirt into valuable resources.", "Cherry trees bloom in spring.", "Leather boots keep your crops safe from trampling.", "Season change every 7 days.", "Items pass thro...")
imported>Ttv pedro270707
mNo edit summary
Line 30: Line 30:
end
end


function p.getTipList( amount )
function p.getTipList( f )
local args = f
if f == mw.getCurrentFrame() then
args = require( 'Module:ProcessArgs' ).merge( true )
else
f = mw.getCurrentFrame()
end
local list = mw.html.create( 'ul' )
local list = mw.html.create( 'ul' )
for i = 1, amount do
for i = 1, args.amount do
local tip = mw.html.create( 'li' )
local tip = mw.html.create( 'li' )
tip:wikitext( p.getRandomTip( i ) )
tip:wikitext( p.getRandomTip( i ) )

Revision as of 04:07, 1 April 2023

Documentation for this module may be created at Module:Tips and tricks/doc

local p = {}

-- It is possible to move this to Module:Tips and tricks/tips
p.tips = {
	"Press R (default) to open the Guidebook.",
	"Portals can be as large (or small) as you want.",
	"Making a Nether portal requires obsidian edges.",
	"The [[Trommel|trommel]] lets you turn useless dirt into valuable resources.",
	"[[Cherry tree|Cherry trees]] bloom in spring.",
	"Leather boots keep your crops safe from trampling.",
	"[[Seasons]] change every 7 days.",
	"Items pass through [[mesh block]]s.",
	"[[Blast furnace]]s smelt faster than regular ones.",
	"Press {{key|noclip}} to fly in creative.",
	"[[Moss]] spreads to nearby blocks. See what it can spread to!",
	"Use {{key|noclip}} + scroll up/down to change flying speed in creative.",
	"Sick of watching grass grow? Use bone meal on dirt.",
	"Beds need blankets! Use [[cloth]] to craft them.",
	"Quivers provide a convenient way to store a lot of arrows.",
	"[[Olivine]] is a decent substitute for [[Nether coal]].",
	"Outback soil is rich with minerals.",
	"There are 4 types of rock! See which one you like best.",
	"Fancy a splash of color? Try painting wooden planks!",
	"Fill the Guidebook by collecting resources. Gotta craft 'em all!"
}

function p.getRandomTip( i )
	math.randomseed(os.time() + i)
	return p.tips[math.random(#p.tips)]
end

function p.getTipList( f )
	local args = f
	if f == mw.getCurrentFrame() then 
		args = require( 'Module:ProcessArgs' ).merge( true )
	else
		f = mw.getCurrentFrame()
	end
	
	local list = mw.html.create( 'ul' )
	for i = 1, args.amount do
		local tip = mw.html.create( 'li' )
		tip:wikitext( p.getRandomTip( i ) )
		list:node( tip )
	end
	
	return tostring( list )
end

return p