All public logs
Jump to navigation
Jump to search
Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:13, 17 October 2024 Alex talk contribs created page Module:Subobjecthelper (Created page with "local p = {} function p.main(frame) local args = frame.args local subobj = {} for k,v in pairs(args) do if not (k == 'splitpoint' or k == 'subobjectname') then v = v:gsub('[\r\n]', '') subobj[k] = mw.text.split(v, args.splitpoint or '&split&') end end if args.subobjectname then mw.smw.subobject(subobj, args.subobjectname) else mw.smw.subobject(subobj) end end return p")