Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

All public logs

More actions

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

Logs
  • 20:20, 14 August 2025 Skycrafter talk contribs created page Module:ImageProxy (Created page with "local p = {} -- Pure Lua URL-safe Base64 encoder. local b = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_' function p.base64_encode(data) return ((data:gsub('.', function(x) local r, b = '', x:byte() for i = 8, 1, -1 do r = r .. (b % 2 ^ i - b % 2 ^ (i - 1) > 0 and '1' or '0') end return r; end) .. '0000'):gsub('%d%d%d?%d?%d?%d?', function(x) if (#x < 6) then return '' end local c = 0 for i = 1...")