Module:GameRoles: Revision history

From TwogPedia

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

30 September 2023

  • curprev 21:1021:10, 30 September 2023Couchor talk contribsm 416 bytes +1 No edit summary
  • curprev 21:0821:08, 30 September 2023Couchor talk contribs 415 bytes +415 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"