Minecraft Wiki
Advertisement
Lang-pt
A tradução da página está em andamento 
Sinta-se livre para ajudar a Minecraft Wiki em Português!

This module lists users, linking their names to their user pages, therefore notifying them about being mentioned.

Names are separated by commas and "and" conjunction. Example: Majr, Quatroking e KnightMiner.

[ver | editar | histórico | purgar]A documentação acima é transcluída de Módulo:Ping/doc.
local p = {}
p.ping = function( f )
	local names =  {}
	for _, name in ipairs( f:getParent().args ) do
		table.insert( names, '[[Usuário:' .. name .. '|' .. name .. ']]' )
	end
	
	return mw.text.listToText( names )
end
return p
Advertisement