Anonymous
×
Create a new article
Write your page title here:
We currently have 924 articles on WIKI - Flat MMO. Type your article name above or click on one of the titles below and start writing!



WIKI - Flat MMO
924Articles

Module:RandomText: Revision history

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.

29 July 2025

  • curprev 06:3906:39, 29 July 2025 Liam talk contribs 431 bytes −39 No edit summary
  • curprev 06:3606:36, 29 July 2025 Liam talk contribs 470 bytes +470 Created page with "inspect = require("Module:InspectLua") local p = {} function p.pp(text) return mw.getCurrentFrame():preprocess(text) end function p.randomizeText (frame) local args = frame:getParent().args local textArray = {} local allText = args[1] for word in string.gmatch(allText, '[^\r\n]+') do table.insert(textArray, word) end math.randomseed(os.time()) local randomIndex = math.random(table.getn(textArray)) return p.pp(textArray[randomIndex]) end return p"