All public logs

Combined display of all available logs of TwogPedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:08, 30 September 2023 Couchor talk contribs created page Module:GameRoles (Created page with "local gameRoles = { dota = { ['1'] = 'Safe Lane', ['2'] = 'Mid Lane', ['3'] = 'Off Lane', ['4'] = 'Support', ['5'] = 'Hard Support', } } local p = {} function p.convertRole(game, role) local gameData = gameRoles[game] if gameData then local roleData = gameData[role] if roleData then return roleData end end return role end return p")