All public logs
Jump to navigation
Jump to search
Combined display of all available logs of RuneSaga Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 17:42, 21 July 2024 User account Ray talk contribs was created by Admin talk contribs and password was sent by email
- 21:33, 18 July 2024 Admin talk contribs unblocked TheDiabeto talk contribs
- 09:53, 18 July 2024 Admin talk contribs changed group membership for Harry from (none) to administrator, interface administrator and bureaucrat
- 19:07, 14 April 2024 User account Harry talk contribs was created by Admin talk contribs
- 01:11, 2 March 2024 Admin talk contribs moved page Worn Equipment to Equipment
- 11:21, 29 February 2024 Admin talk contribs moved page Benefits to Donator Benefits without leaving a redirect
- 10:11, 26 February 2024 Admin talk contribs moved page / to Main Page over redirect
- 10:11, 26 February 2024 Admin talk contribs deleted redirect Main Page by overwriting (Deleted to make way for move from "/")
- 10:09, 26 February 2024 Admin talk contribs moved page Main Page to /
- 01:36, 23 February 2024 Admin talk contribs created page Template:DropsTableBottom (Created page with "</table>{{#ifeq:{{#var:_refs_used_}}|true|{{#tag:references||group="d"}}|}}{{#vardefine:Version|}}{{#vardefine:_smw|}}<noinclude>{{/doc}}</noinclude>")
- 01:34, 23 February 2024 Admin 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 --...")
- 01:34, 23 February 2024 Admin 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...")
- 01:33, 23 February 2024 Admin talk contribs created page Module:Currency Image (Created page with "-- Static table to map currency names to filename and available quantities local lookup = { ['abyssal pearls'] = { filename = 'Abyssal_pearls_%d.png', bins = { 1, 2, 3, 4, 5 } }, ['barronite shards'] = { filename = 'Barronite_shards_%d.png', bins = { 1, 2, 3, 4, 5, 10, 25 } }, ['blood money'] = { filename = 'Blood_money_%d.png', bins = { 1, 2, 3, 4, 5, 25, 100, 250, 1000, 10000 } }, ['coins'] = { filename = 'Coins_%d.png', bins = { 1, 2, 3, 4, 5, 25, 100, 250, 1000,...")
- 01:32, 23 February 2024 Admin talk contribs created page Module:Coins image (Created page with "-- Like Module:Coins, but only for the image return function(q) return require('Module:Currency Image')('coins', q) end")
- 01:31, 23 February 2024 Admin 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},...}...")
- 01:29, 23 February 2024 Admin talk contribs created page Module:DropsLine (Created page with "-- <nowiki> local p = {} local params = require('Module:Paramtest') local lang = mw.language.getContentLanguage() local coins_image = require('Module:Coins image') local curr_image = require('Module:Currency Image') local exchange = require('Module:Exchange') local yesno = require('Module:Yesno') local var = mw.ext.VariablesLua -- precalculated cached data local geprice = exchange._price local f_gealch = exchange._highalch local ptitle = mw.title.getCurrentTitle() l...")
- 01:29, 23 February 2024 Admin talk contribs created page Main Page/Module:DropsLine (Created page with "-- <nowiki> local p = {} local params = require('Module:Paramtest') local lang = mw.language.getContentLanguage() local coins_image = require('Module:Coins image') local curr_image = require('Module:Currency Image') local exchange = require('Module:Exchange') local yesno = require('Module:Yesno') local var = mw.ext.VariablesLua -- precalculated cached data local geprice = exchange._price local f_gealch = exchange._highalch local ptitle = mw.title.getCurrentTitle() l...")
- 22:14, 22 February 2024 Admin talk contribs created page Module:Format eq stat (Created page with "local p = {} function p.signed(arg) local first_char = string.sub(arg, 1, 1) if first_char == '+' or first_char == '-' then return arg else return '+'..arg end end function p.main(frame) local args = frame:getParent().args local arg = args[1] or '' return p.signed(arg) end return p")
- 22:13, 22 February 2024 Admin talk contribs created page Module:Edit button (Created page with "-- {{Helper module|name=Edit button|fname1=(text)|ftype1=string|fuse1=Creates an edit button for the current page that the module is invoked on<br><br><code>text</code> defaults to "edit"}} -- Creates a link that opens the editor screen for whatever page this module is invoked on return function(text, page) local page_title = page or mw.title.getCurrentTitle().fullText local url = tostring(mw.uri.fullUrl(page_title,'action=edit')) return '['..url..' '..(text or 'edi...")
- 22:13, 22 February 2024 Admin talk contribs created page Module:Infobox (Created page with "--[=[ -- For documentation, see Module:Infobox/doc --]=] -- <nowiki> local Infobox = {} Infobox.__index = Infobox Infobox.__tostring = Infobox.tostring -- Edit button for unknown params local editbutton = require('Module:Edit button') local var = mw.ext.VariablesLua local edit = editbutton("'''?''' (edit)") -- Page title local pagename = mw.title.getCurrentTitle().fullText -- map of flags to html tags used by Infobox.addRow() -- let's only define it once, since :...")
- 22:12, 22 February 2024 Admin talk contribs created page Module:Addcommas (Created page with "--[[ {{Helper module|name=Addcommas |fname1=_add(arg) |ftype1=Number |fuse1=Formats the number arg with commas |fname2=_strip(arg) |ftype2=Number |fuse2=Removes all commas from arg }} --]] -- <nowiki> -- -- Implements {{Addcommas}} -- local p = {} -- -- main function -- keep public so it can be used in other modules -- function p._add( arg ) local lang = mw.language.getContentLanguage() local z = tostring( arg ) local y = mw.text.split( z, '[%-–]' ) l...")
- 22:11, 22 February 2024 Admin talk contribs created page Template:Mainonly (Created page with "{{#ifeq:{{NAMESPACE}}|{{ns:0}}|{{{1|}}}}}<noinclude>{{/doc}}</noinclude>")
- 22:11, 22 February 2024 Admin 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:04, 22 February 2024 Admin talk contribs created page Module:Infobox Monster (Created page with "-------------------------- -- Module for Template:Infobox Monster ------------------------ local p = {} local onmain = require('Module:Mainonly').on_main local commas = require('Module:Addcommas')._add local infobox = require('Module:Infobox') local signed = require('Module:Format eq stat').signed local slayer_masters = { 'turael', 'spria', 'krystilia', 'mazchna', 'vannaka', 'chaeldar', 'konar', 'nieve', 'steve', 'duradel' } local attributes = { demon = '[[Demon (...")
- 21:10, 21 February 2024 Admin talk contribs changed group membership for Quakesz from (none) to administrator
- 21:04, 21 February 2024 User account Quakesz talk contribs was created by Admin talk contribs
- 16:18, 18 February 2024 Admin talk contribs changed group membership for TinyCow from (none) to administrator
- 16:17, 18 February 2024 User account TinyCow talk contribs was created by Admin talk contribs
- 05:59, 18 February 2024 Admin talk contribs changed group membership for Jesse from (none) to administrator
- 05:59, 18 February 2024 Admin talk contribs renamed user Jesse2 (0 edits) to Jesse
- 05:59, 18 February 2024 Admin talk contribs renamed user Jesse (0 edits) to Jesse55
- 05:57, 18 February 2024 User account Jesse talk contribs was created by Admin talk contribs
- 02:40, 18 February 2024 Admin talk contribs deleted page File:333.png (content was: "", and the only contributor was "Admin" (talk))
- 02:40, 18 February 2024 Admin talk contribs created page File:333.png
- 02:40, 18 February 2024 Admin talk contribs uploaded File:333.png
- 01:43, 18 February 2024 Admin talk contribs changed group membership for Bread from (none) to administrator
- 01:40, 18 February 2024 User account Bread talk contribs was created by Admin talk contribs
- 01:34, 18 February 2024 Admin talk contribs changed group membership for Plz2 from (none) to administrator
- 01:34, 18 February 2024 User account Plz2 talk contribs was created by Admin talk contribs
- 01:31, 18 February 2024 User account Plz talk contribs was created by Admin talk contribs and password was sent by email
- 04:18, 17 February 2024 Admin talk contribs changed group membership for Jesse55 from (none) to administrator
- 04:17, 17 February 2024 User account Jesse55 talk contribs was created by Admin talk contribs and password was sent by email
- 04:09, 17 February 2024 Admin talk contribs created page MediaWiki:Common.css (Created page with "<pre>: :root { --body-main: #e2dbc8; --body-light: #d8ccb4; --body-mid: #d0bd97; --body-dark: #b8a282; --body-border: #94866d; --body-background-color: #c0a886; --button-background: #605443; --button-color: #fff; --button-border: #3c352a; --button-dark: #18140c; --button-light: #3a301d; --sidebar: #cfc08d; --background-text-color: #444; --background-link-color: #52351e; --search-box: #efeee6; --link-col...")
- 03:58, 17 February 2024 Admin talk contribs created page User:Admin/common.css (Created page with "/* ------------------------------------------------------------------------------ This is the root LESS file that is parsed to produce MediaWiki:Vector-darkmode.css. Previously compiled via subpages at Special:PrefixIndex/MediaWiki:Vector-darkmode.less/, now adjusted via CSS Variables. To update MediaWiki:Vector-darkmode.css from here, users with the appropriate permissions can click the "Update CSS" button found to the left of the edit butto...")
- 03:55, 17 February 2024 Admin talk contribs created page User:Admin/vector.css (Created page with "<pre>: :root { --ul-list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23000'/%3E%3C/svg%3E"); } html { -webkit-text-size-adjust: 100%; } body { background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat; font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', s...")
- 03:54, 17 February 2024 Admin talk contribs created page User:Admin/vector-2022.css (Created page with "<pre>: :root { --ul-list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23000'/%3E%3C/svg%3E"); } html { -webkit-text-size-adjust: 100%; } body { background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat; font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', s...")
- 03:52, 17 February 2024 Admin talk contribs created page MediaWiki:Vector.css (Created page with "<pre>: :root { --ul-list-style-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='13'%3E%3Ccircle cx='2.5' cy='9' r='2.5' fill='%23000'/%3E%3C/svg%3E"); } html { -webkit-text-size-adjust: 100%; } body { background: var(--body-background-image) var(--body-background-color) top left / 1500px 375px no-repeat; font-family: 'IBM Plex Sans', 'Helvetica Neue', 'Arial', s...")