Module:Matches Player

From Liquipedia Rocket League Wiki

A module that shows the 5 next upcoming matches for a player beneath the infobox. It does this by retrieving the player's team.

Basic use

The module can either be passed the pagename, or it will automatically get it if no argument is given. Usage:

{{#invoke:Lua|invoke|module=Matches_Player|fn=get|{{pagename}}}}

See also


local ticker = require('Module:Match Ticker').player

local p = {}

function p.get(frame)
    return ticker(frame.args) or ''
end

return p