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)- 08:00, 16 February 2022 Soulgazer talk contribs created page MediaWiki:Gadget-switch-infobox.css (Created page with ".switch-infobox > p, .switch-infobox-triggers > p { display: none; } .switch-infobox > p:first-child, .switch-infobox-triggers > p:first-child { display: block; } .switch-infobox > .item { display: none; } .switch-infobox > .item.showing { display: block; } .switch-infobox > .loading-button { display: none; } .switch-infobox.loading > .loading-button { display: inline-block; } .switch-infobox.loading > .switch-infobox-triggers { display:...")
- 07:59, 16 February 2022 Soulgazer talk contribs created page MediaWiki:Gadget-switch-infobox.js (Created page with "// <nowiki> /* switch infobox code for infoboxes * contains switching code for both: * * originalInfoboxes: * older infobox switching, such as Template:Infobox Bonuses * which works my generating complete infoboxes for each version * * moduleInfoboxes: * newer switching, as implemented by Module:Infobox * which generates one infobox and a resources pool for switching * * synced switches * as generated by Module:Synced switch and its template *...")
- 07:59, 16 February 2022 Soulgazer talk contribs created page MediaWiki:Gadget-Less.js (Created page with "window.lessOpts = window.lessOpts || []; window.lessOpts.push( { target: 'MediaWiki:Common.css', source: 'MediaWiki:Common.less', load: [ 'MediaWiki:Common.css', 'MediaWiki:Common.less' ] }, { target: 'MediaWiki:Vector.css', source: 'MediaWiki:Vector.less', load: [ 'MediaWiki:Vector.css', 'MediaWiki:Vector.less' ], }, { target: 'MediaWiki:Gadget-toplinksDropdown.css', source: 'MediaWiki:Gadget-topli...")
- 22:56, 15 February 2022 Soulgazer talk contribs created page Module:FetchItemStats (Created page with "-- Note: This module is not meant to be invoked directly, and instead is intended to be used from other modules. local exchange = require('Module:Exchange') local yesno = require('Module:Yesno') local p = {} -- Obtain information about which version of an item is the default version of the item -- if no switch infoobox is present, the item name itself will be returned. -- The second return value is the actual pagename of the page that is retrieved in the SMW call, taki...")
- 22:55, 15 February 2022 Soulgazer talk contribs created page Module:Exchange (Created page with "--[[ {{Helper module|name=Exchange |fname1=_price(arg) |ftype1=String |fuse1=Gets the current median price of item named arg |fname2=_value(arg) |ftype2=String |fuse2=Gets the value of item named arg }} --]] -- <nowiki> -- -- Implements various exchange templates -- See Individual method docs for more details -- -- See also: -- - Module:ExchangeData -- - Module:ExchangeDefault -- -- Original version: http://runescape.wiki/w/Module:Exchange local p = {} -- only...")
- 22:55, 15 February 2022 Soulgazer talk contribs created page Module:Equipment (Created page with "-- <pre>Sandbox for testing stuff. Infoked by User:Joeytje50/Module -- Current module being tested: Module:Equipment local p = {} local hasc = require('Module:Paramtest').has_content local itemstats = require('Module:FetchItemStats') local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local GEPrice = require('Module:Exchange')._price -- Parse item string and check if GIF icons are allowed local function parseItem(ret, itemString, eq...")
- 22:54, 15 February 2022 Soulgazer talk contribs created page Module:Table list (Created page with "-- <pre> local p = {} local alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0' function p.main(frame) return p._main(frame:getParent().args) end function p._main(args) local columns = tonumber(args.columns) or 4 local header = args.header or '' local links = string.lower(args.links or '') local alphabeticalheaders = string.lower(args.alphaheader or '') if alphabeticalheaders == 'yes' then alphabeticalheaders = true else alphabeticalheaders = false end local entrie...")
- 22:54, 15 February 2022 Soulgazer talk contribs created page Module:Tabber (Created page with "local p = {} -- Access point for other modules -- argument format: {{"tab 1 label", "tab 1 content"}, {"tab 2 label", "tab 2 content"}, {"etc", "..."}} function p.tabber(tabs) preprocess = preprocess == nil and true or preprocess -- if no preprocess defined, set to true local tabber = "" for i, tab in ipairs(tabs) do if i > 1 then tabber = tabber .. "\n|-|\n" end tabber = tabber .. mw.text.trim(tab[1]) .. ' = ' .. tab[2] end return mw.getCurrentFrame():cal...")
- 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...")
- 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