Anonymous
×
Create a new article
Write your page title here:
We currently have 97 articles on The Dream Shrine. Type your article name above or click on one of the titles below and start writing!



The Dream Shrine

Module:UtilsVar: 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.

6 August 2024

  • curprev 09:5909:59, 6 August 2024MagicPixieDreamGirl talk contribs 1,016 bytes +1,016 Created page with "local p = {} VariablesLua = mw.ext.VariablesLua function p.set(name, val) -- Future-proofing in case the extension is no longer available if not VariablesLua then return nil end local json = mw.text.jsonEncode(val) VariablesLua.vardefine(name, json) end function p.get(name) if not VariablesLua then return nil end local json = VariablesLua.var(name) if json == "" then return nil end local val = mw.text.jsonDecode(json) return val end function p.add..."