All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Zeah RSPS - Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 22:52, 15 February 2022 Soulgazer talk contribs created page Module:SCP (Created page with "-- <pre> local p = {} local pics = { quests = { image = 'Quest point icon', link = 'Quest points' }, quest = { image = 'Quest point icon', link = 'Quest points' }, ['quest points'] = { image = 'Quest point icon', link = 'Quest points' }, combat = { image = 'Attack style icon', link = 'Combat level' }, all = { image = 'Attack style icon', link = 'Combat styles' }, music = { image = 'Music', link = 'Music' }, favour = { image = 'Kourend Favour icon', link = 'Great...")
- 22:52, 15 February 2022 Soulgazer talk contribs created page Module:Inventory (Created page with "-- <pre> local p = {} local hasc = require('Module:Paramtest').has_content function formatAmount(_x) local x = tonumber(_x) or 1 if x < 100000 then return x, 'qty-1' elseif x < 10000000 then return tostring(math.floor(x/1000))..'K', 'qty-100k' else return tostring(math.floor(x/1000000))..'M', 'qty-10m' end end function p.main(frame) local bgType = frame.args.bgType if bgType == nil then bgType = "inventory"...")
- 22:50, 15 February 2022 Soulgazer talk contribs created page Module:Navbox (Created page with "-- <nowiki> -- -- Implements {{navbox}} -- local p = {} local tnavbar = require( 'Module:Tnavbar' ) local yesno = require( 'Module:Yesno' ) local page_title = mw.title.getCurrentTitle().fullText -- -- Helper for inserting a new row into the navbox -- -- @param tbl {mw.html table} -- @return tbl {mw.html table} -- local function insertRow( tbl ) return tbl:tag( 'tr' ) end -- -- Creates the navbox table -- -- @param args {table} -- @return tbl {mw.html table} -- local f...")
- 22:49, 15 February 2022 Soulgazer talk contribs created page Module:Mainonly (Created page with "--[[ {{Helper module|name=Mainonly |fname1=_main(arg) |ftype1=Any value |fuse1=If the module is invoked in the content namespace, it will return arg, otherwise, it will return an empty string |fname2=on_main() |ftype2=N/A |fuse2=Returns true if invoked in the content namespace, otherwise false }} --]] -- -- Module to return text only when invoked in the content namespace -- local p = {} function p.main(frame) local ret = frame:getParent().args[1] or '' return p._main...")
- 22:46, 15 February 2022 Soulgazer talk contribs created page Module:Paramtest (Created page with "--[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |fname4 = defaults{ {arg1,arg2},...}...")
- 22:45, 15 February 2022 Soulgazer talk contribs created page Module:Recommended equipment (Created page with "local p = {} local params = require('Module:Paramtest') local slots = { { placement = 1, name = 'helm', icon = 'Head slot', txt = 'Head', link = 'Head slot table' }, { placement = 2, name = 'neck', icon = 'Neck slot', txt = 'Neck', link = 'Neck slot table' }, { placement = 3, name = 'cape', icon = 'Cape slot', txt = 'Back', link = 'Cape slot table' }, { placement = 4, name = 'body', icon = 'Body slot', txt = 'Body', link = 'Body slot table' }, { placement = 5, nam...")
- 22:10, 15 February 2022 Redhat talk contribs created page MediaWiki:Common.less (Created page with "******************************************************** This file is used to update MediaWiki:Common.css. These styles will be applied to all skins (desktop and mobile). ********************************************************: @common: 'MediaWiki:Common.less'; :root { --body-main: #e2dbc8; --body-light: #d8ccb4; --body-mid: #d0bd97; --body-dark: #b8a282; --body-border: #94866d; --body-background-color: #c0a886; --butto...")
- 22:10, 15 February 2022 Redhat talk contribs created page MediaWiki:Common.less/lighttable.less (Created page with "Highlight tables: :root { --lighttable-bg-hover: #CCCCCC; --lighttable-bg-active: #CCFFCC; --lighttable-border: black; } table.lighttable { .highlight-on { background-color: var(--lighttable-bg-active); } .highlight-over { background-color: var(--lighttable-bg-hover); } } Underground pass and Lunar Diplomacy lighttable layout to make a 5x5 grid: .underpasstable { margin-left: 3em; // only needed on desktop // need to overrid...")
- 20:49, 15 February 2022 Redhat talk contribs protected MediaWiki:Common.css [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 20:24, 15 February 2022 User account Jacob talk contribs was created
- 19:40, 15 February 2022 Soulgazer talk contribs created page Silver Relic (Redirected page to Relic) Tag: New redirect
- 19:39, 15 February 2022 Soulgazer talk contribs created page Gold Relic (Redirected page to Relic) Tag: New redirect
- 19:36, 15 February 2022 Soulgazer talk contribs created page Relics (Redirected page to Relic) Tag: New redirect
- 19:07, 15 February 2022 Soulgazer talk contribs created page Module:Yesno (Created page with "--[[ {{Helper module|name=Yesno |fname1=(arg) |ftype1=Any value |fuse1=Reads arg for yes/no and returns the appropriate boolean or nil |fname2=(arg1,arg2) |ftype2=Any value, Any value |fuse2=Reads arg1 for yes/no and returns the appropriate boolean; returns arg2 if arg1 was not an applicable value }} --]] -- <pre> -- Used to evaluate args to booleans where applicable -- -- Based on <https://en.wikipedia.org/wiki/Module:Yesno> -- see page history there for contributors --...")
- 19:05, 15 February 2022 Soulgazer talk contribs created page Module:Tnavbar (Created page with "-- <nowiki> -- -- Implements {{tnavbar}} and variants -- -- @todo move the hardcoded css to MediaWiki:Common.css given how many pages it's found on -- local p = {} local yesno = require( 'Module:Yesno' ) function p._navbar( args ) local tag tag = mw.html.create( 'div' ) :css( { ['background-color'] = 'transparent', padding = '0' } ) tag :addClass( 'plainlinks' ) :addClass( 'noprint' ) :...")
- 19:04, 15 February 2022 Soulgazer talk contribs created page Module:NavBox (Created page with "-- <nowiki> -- -- Implements {{navbox}} -- local p = {} local tnavbar = require( 'Module:Tnavbar' ) local yesno = require( 'Module:Yesno' ) local page_title = mw.title.getCurrentTitle().fullText -- -- Helper for inserting a new row into the navbox -- -- @param tbl {mw.html table} -- @return tbl {mw.html table} -- local function insertRow( tbl ) return tbl:tag( 'tr' ) end -- -- Creates the navbox table -- -- @param args {table} -- @return tbl {mw.html table} -- local f...")
- 15:48, 15 February 2022 Soulgazer talk contribs created page File:Background.jpg (Zeah Background)
- 15:48, 15 February 2022 Soulgazer talk contribs uploaded File:Background.jpg (Zeah Background)
- 15:47, 15 February 2022 Soulgazer talk contribs deleted page File:Frame 1 2.png
- 07:02, 15 February 2022 Soulgazer talk contribs created page File:Silver ArtisanAficionado.png (Uploaded own work with UploadWizard)
- 07:02, 15 February 2022 Soulgazer talk contribs uploaded File:Silver ArtisanAficionado.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 07:00, 15 February 2022 Soulgazer talk contribs deleted page File:Silver ArtisianAficionado.png
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Weedwhacker.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Weedwhacker.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver SavvySupport.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver SavvySupport.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Pyromaniac.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Pyromaniac.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver ProfessionalPickpocket.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver ProfessionalPickpocket.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Overclocked.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Overclocked.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver MasterFletcher.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver MasterMagician.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver MasterFletcher.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver MasterMagician.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver MasterFarmer.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver MasterFarmer.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Investigator.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Investigator.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Inflammable.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver ImbuedGratitude.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver ImbuedGratitude.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Inflammable.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Huntsman.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Huntsman.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Graceful.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs created page File:Silver Herbalist.png (Uploaded own work with UploadWizard)
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Graceful.png (Uploaded own work with UploadWizard) Tag: Upload Wizard
- 06:52, 15 February 2022 Soulgazer talk contribs uploaded File:Silver Herbalist.png (Uploaded own work with UploadWizard) Tag: Upload Wizard