User contributions for Alex

A user with 47,390 edits. Account created on 10 October 2024.
Jump to navigation Jump to search
Search for contributionsshowhide
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

17 October 2024

  • 01:0001:00, 17 October 2024 diff hist +5,291 N Module:Average drop value/SandboxCreated page with "local curr = require('Module:Currency')._amount local dpl = require('Module:DPLlua') local geprices = mw.loadJsonData('Module:GEPrices/data.json') local p = {} -- TODO move to helper function local a_an_arr = { a = true, e = true, i = true, o = true, u = true } function a_an(x) local _x = mw.text.truncate(string.lower(x), 1, '') if a_an_arr[_x] then return 'an' end return 'a' end function calcValue(item, lowqty, highqty, rarity, rolls, alchprice, options)..."
  • 01:0001:00, 17 October 2024 diff hist 0 Module:Average drop value/docNo edit summary current
  • 00:5900:59, 17 October 2024 diff hist +1,316 N Module:Arceuus library book calculator/docCreated page with "{{documentation}} {{:User:Faison/Template/Invokes|page=Calculator:Arceuus_library_book/Template}} {| class="wikitable" !Function !Type !Use |- |p.main(frame) |table |The main function to run if invoked from a template that is the results template for a calculator.<br> Valid arguments from the calculator: <code>skill = 'Magic' or 'Runecraft', inputType/targetType = 'Level' or 'Experience', currentLevel/targetLevel = 1 – 126, currentExperience/targetExperience = 1..." current
  • 00:5900:59, 17 October 2024 diff hist +2,725 N Module:Arceuus library book calculatorCreated page with "local p = {} local addCommas = require('Module:Addcommas')._add local experience = require('Module:Experience') local scaledExperience = require('Module:ScaledExperience') local scp = require('Module:SCP')._main function p.buildTable(skill, itemData) local ret = mw.html.create('table'):addClass('wikitable'):done() ret:tag('tr'):tag('th'):wikitext('link=' .. itemData.link .. ' ' .. itemData.name .. ' require..." current
  • 00:5900:59, 17 October 2024 diff hist +4,281 N Module:ApocalypseBoostedDropCreated page with "local p = {}; local lang = mw.language.getContentLanguage() local rarity_class = { { 1, 'table-bg-blue' }, { 1/25, 'table-bg-green' }, { 1/99.99, 'table-bg-yellow' }, { 1/999.99, 'table-bg-orange' }, { 1/9999999, 'table-bg-red' } } function get_rarity_class(val) for i,v in ipairs(rarity_class) do curr = v if val >= v[1] then break end end return curr[2] end function sigfig(n, f) f = math.floor(f-1) if n == 0 then return 0 end local m = math.floor(m..." current
  • 00:5900:59, 17 October 2024 diff hist +2,268 N Module:Ammo cost efficiencyCreated page with "-- <nowiki> local p = {} local gep = mw.loadJsonData('Module:GEPrices/data.json') local curr = require('Module:Currency')._amount local yesNo = require('Module:Yesno') function coins(x) return curr(string.format('%.2f', x), 'coins') end function p.main(frame) return p._main(frame.args) end function p._main(args) mw.logObject(args) local UsingBlowpipe = yesNo(args['UsingBlowpipe']) local ScalePrice = gep['Zulrah\'s scales'] local AttackSpeed = args['AttackSpeed']..." current
  • 00:5900:59, 17 October 2024 diff hist +1,862 N Module:Abyssal pearlsCreated page with "-- -- Invoked by Calculator:Abyssal pearls/Template -- Implements Calculator:Template/Abyssal_pearls -- local p = {} local paramTest = require('Module:Paramtest') local addCommas = require('Module:Addcommas')._add local yesNo = require('Module:Yesno') function p.invoke_main(frame) return p.main(frame:getParent().args) end function p.main(args) local pearls, goal, pouchesOwned, shop = paramTest.defaults{ { tonumber(args.pearls), 0 }, { tonumber(args.goal), 0 },..." current
  • 00:5900:59, 17 October 2024 diff hist +473 N Module:@/docCreated page with "{{Documentation}} This module is used by {{tl|Reply to}} to trigger a notification to one or several registered user(s) you are replying to in a discussion. ==Usage from wikitext== This module cannot be used directly from wikitext. Please use the {{tl|Reply to}} template instead. ==Usage within templates== <nowiki>{{#invoke:@|replyto|<noinclude></nowiki>example=''example name''<nowiki></noinclude></nowiki>|max=''maximum number of names''}}" current
  • 00:5900:59, 17 October 2024 diff hist +1,660 N Module:@Created page with "local p = {} local function makeError(msg) msg ='Error in Template:@: ' .. msg return mw.text.tag('strong', {['class']='error'}, msg) end function p.replyto(frame) local origArgs = frame:getParent().args local args = {} local maxArg = 1 local usernames = 0 for k, v in pairs(origArgs) do if type(k) == 'number' then if mw.ustring.match(v,'%S') then if k > maxArg then maxArg = k end usernames = usernames + 1 local title = mw.title.new(v) if..." current
  • 00:5900:59, 17 October 2024 diff hist +20 N Module:200mxp/docCreated page with "{{No documentation}}" current
  • 00:5900:59, 17 October 2024 diff hist +928 N Module:200mxp/dataCreated page with "-- skill = all, im, uim, hcim return { ['attack'] = {502, 80, 13, 17}, ['defence'] = {406, 66, 11, 16}, ['strength'] = {1400, 245, 15, 19}, ['hitpoints'] = {1094, 243, 13, 11}, ['ranged'] = {1497, 209, 12, 8}, ['prayer'] = {248, 10, 1, 2}, ['magic'] = {500, 30, 5, 2}, ['cooking'] = {3392, 89, 6, 21}, ['woodcutting'] = {692, 94, 15, 11}, ['fletching'] = {619, 22, 2, 3}, ['fishing'] = {315, 42, 7, 6}, ['firemaking'] = {914, 315, 63, 92}, ['crafting'] = {459, 1..." current
  • 00:5900:59, 17 October 2024 diff hist +583 N Module:200mxpCreated page with "-- <pre> local p = {} local lookuptable = require("Module:200mxp/data") local gamemodeindex = { ["all"] = 1, ["im"] = 2, ["uim"] = 3, ["hcim"] = 4 } local function lookup(skill,gamemode) local info = lookuptable[skill] if info == nil then return 'Invalid {{{1}}} param' elseif skill=='update' then return info else return info[gamemodeindex[gamemode] or 1] end end function p.lookup(frame) local args = frame:getParent().args local skill = string.lower(..." current
  • 00:5900:59, 17 October 2024 diff hist +234 N Module:$Created page with "local p = {} function p.serialize(frame) return mw.text.jsonEncode(frame:getParent().args) end function p.deserialize(args) local out = {} for k, v in pairs(args) do out[k] = mw.text.jsonDecode(v) end return out end return p" current

16 October 2024

  • 16:4516:45, 16 October 2024 diff hist 0 N File:Music.pngNo edit summary current
  • 16:3516:35, 16 October 2024 diff hist +1,320 N Template:Music track list/docCreated page with "{{Documentation}} This template can be used to generate a list of music tracks based on a Semantic MediaWiki query. It takes two optional parameters, but if these are not speicfied the output will simply return a ''full'' list of ''all'' music tracks in the game. A category of music tracks can be specified through the <code>category</code> parameter. This takes any wikilink or property format like SMW queries do. For example {{t|Music track list|category=<nowiki>Cate..." current
  • 16:3516:35, 16 October 2024 diff hist +369 N Template:Music track listCreated page with "<includeonly>{{#ask: Category:Music tracks {{#if:{{{category|}}}|{{{category}}}}} {{#if:{{{prefix|}}}|[[~{{#replace:{{{prefix}}}|,|*{{!}}{{!}}~}}*]]}} |?#=Name |?Unlock hint=Unlock details |?Music duration=Duration |?Music track=Play track |format=table |headers=plain |limit=5000 |class=wikitable lighttable sortable }}</includeonly><noinclude>{{/doc}}</noinclude>" current
  • 16:3516:35, 16 October 2024 diff hist +3,061 N Template:Music track map/docCreated page with "{{Documentation}} This template can be used on Map pages to create a music track map. This template will include a notice about the function of the page, as well as providing the relevant categories and SMW properties to the page. The first unnamed parameter must be the coordinates for the polygon indicating the music track area. == Example == <pre>{{Music track map |songs=Dreamstate |files=File:Dreamstate.ogg |x=1760|y=5088|plane=2 |align=right|[ [ [1728,5056],[1728,5..."
  • 16:3516:35, 16 October 2024 diff hist +1,567 N Template:Music track mapCreated page with "<includeonly>{{#if:{{{1|}}}|{{#tag:mapframe |{ "type": "FeatureCollection", "features": [{{#vardefineecho:geoJSON|{ "type": "Feature", "geometry": { "type": "Polygon", "coordinates": {{{1}}} }, "properties": { "mapID": {{{mapID|-1}}}, "plane": {{{plane|0}}} } } }}] } |width={{{width|300}}} |height={{{height|300}}} |zoom={{{zoom|2}}} |mapid={{{mapID|-1}}} |plane={{{plane|0}}} |x={{{x|3200}}} |y={{{y|3200}}} |align={{{align|center}}} |frameless={{#..." current
  • 16:3516:35, 16 October 2024 diff hist +1,978 N Map:Lumbridge musicCreated page with "{{Music track map|[[[3136,3136],[3136,3200],[3133,3200],[3133,3204],[3134,3204],[3134,3205],[3135,3205],[3135,3206],[3136,3206],[3136,3207],[3137,3207],[3137,3208],[3138,3208],[3138,3209],[3139,3209],[3139,3210],[3140,3210],[3140,3211],[3141,3211],[3141,3212],[3142,3212],[3142,3213],[3143,3213],[3143,3214],[3144,3214],[3144,3215],[3145,3215],[3145,3216],[3146,3216],[3146,3267],[3143,3267],[3142,3268],[3140,3268],[3138,3270],[3138,3275],[3139,3276],[3139,3280],[3138,3281]..." current
  • 16:2516:25, 16 October 2024 diff hist 0 N File:Map region Zoom 0.pngNo edit summary current
  • 16:2416:24, 16 October 2024 diff hist 0 File:OSRS Layers of Map creation example.pngAlex uploaded a new version of File:OSRS Layers of Map creation example.png current
  • 16:2016:20, 16 October 2024 diff hist 0 N File:OSRS Layers of Map creation example.pngNo edit summary
  • 16:2016:20, 16 October 2024 diff hist 0 N File:Map region Zoom 2.pngNo edit summary current
  • 16:2016:20, 16 October 2024 diff hist 0 N File:Map region Zoom 3.pngNo edit summary current
  • 16:2016:20, 16 October 2024 diff hist 0 N File:Map tile Zoom -1.pngNo edit summary current
  • 16:1916:19, 16 October 2024 diff hist 0 N File:Map tile Zoom 0.pngNo edit summary current
  • 16:1916:19, 16 October 2024 diff hist 0 N File:Map tile Zoom 1.pngNo edit summary current
  • 16:1916:19, 16 October 2024 diff hist 0 N File:Map tile Zoom 3.pngNo edit summary current
  • 16:1916:19, 16 October 2024 diff hist 0 N File:Map region Zoom 1.pngNo edit summary current
  • 16:0816:08, 16 October 2024 diff hist +12,277 N RuneScape:Map/mapIDsCreated page with "Below are the mapIDs and the map name. IDs 10000 and up are user-defined maps, and -1 displays all regions and planes. {| class="wikitable sortable" !mapID !!Map !!Center |- | -1 || debug || (2656, 6912) |- | 0 || Gielinor Surface || (3232, 3232) |- | 1 || Ancient Cavern || (1760, 5344) |- | 2 || Ardougne Underground || (2575, 9694) |- | 3 || Asgarnia Ice Cave || (2989, 9566) |- | 4 || Braindeath Island || (2144, 5101) |- | 5 || Dorgesh-Kaan || (2720, 5344) |- | 6 || D..." current
  • 16:0716:07, 16 October 2024 diff hist +20,269 N RuneScape:MapCreated page with "{{external|rs}} {{otheruses|the cartography project|documentation and help creating maps|RuneScape:Create Map}} This page contains documentation for the cartographer project. This project is still in development and is prone to changes. This project uses the codename ''Doogle'' or ''Doogle Maps'' sometimes. {| class="wikitable" |- ! View/Create Maps !! Issues !! Development |- | Open the map: <maplink mapid=0 plane=0 zoom=2 x=3293 y=3139 text="click here"/> * OSRS pro..." current
  • 16:0516:05, 16 October 2024 diff hist +229 N Template:Nowrap/docCreated page with "{{Documentation}} This template prevents content from wrapping. ==Usage== <code><nowiki>{{</nowiki>Nowrap|''content which is not to be wrapped''}}</code> <includeonly>{{PAGENAME}}</includeonly>" current
  • 16:0516:05, 16 October 2024 diff hist +80 N Template:NowrapCreated page with "<span style="white-space:nowrap;">{{{1|}}}</span><noinclude>{{/doc}}</noinclude>" current
  • 16:0416:04, 16 October 2024 diff hist 0 N File:X mark.svgNo edit summary current
  • 16:0316:03, 16 October 2024 diff hist +22,926 N RuneScape:Create MapCreated page with "This page provides a guide on how to create interactive maps using manually-defined '''GeoJSON'''. If you would like to use the easier, faster method of creating maps, see Template:Map. This was created using the Cartography project and uses a modified [https://www.mediawiki.org/wiki/Help:Extension:Kartographer Kartographer extension]. ==Starting out== ===Tools=== Finding the coordinates of a specific map square is most easily done using [https://m..." current
  • 16:0216:02, 16 October 2024 diff hist +2,472 N Module:APIDocCreated page with "local p = {} local styles = { w = 'width:1%;', ws = 'white-space:pre;', bgc = 'background-color:var(--wikitable-header-bg);' } function p.main(frame) local tArgs = frame:getParent().args local mArgs = {} local mArgNames = {} local argCount = 0 if not tArgs.funcName then error('APIDoc requires `funcName` argument', 0) end while tArgs['arg'..(argCount + 1)] do argCount = argCount + 1 end for i = 1, argCount do table.insert(mArgNames, tArgs['arg'....." current
  • 16:0016:00, 16 October 2024 diff hist +1,966 N Template:Quest details/docCreated page with "{{documentation}} <pre>{{Quest details |start = Quest start location |startmap = 4444,4444,plane:1 |difficulty = Official difficulty as given by Jagex |length = Length of the quest |requirements = *{{SCP|Thieving|54|link=yes}} {{Boostable|}} *{{SCP|Woodcutting|52|link=yes}} {{Boostable|}} *{{SCP|Herblore|49|link=yes}} {{Boostable|}} *{{SCP|Construction|47|link=yes}} {{Boostable|}} *{{SCP|Mining|47|link=yes}} {{Boostable|}} *{{SCP|Hunter|46|link=yes}} {{Boostable|}} |ite..." current
  • 16:0016:00, 16 October 2024 diff hist +63 N Template:Quest detailsCreated page with "{{#invoke:QuestDetails|details}}<noinclude>{{/doc}}</noinclude>" current
  • 16:0016:00, 16 October 2024 diff hist +20 N Module:QuestDetails/docCreated page with "{{No_documentation}}"
  • 16:0016:00, 16 October 2024 diff hist +8,694 N Module:QuestDetailsCreated page with "-- <nowiki> -- {{Quest details}} local p = {} local yesno = require('Module:Yesno') local onmain = require('Module:Mainonly').on_main() local buildMap --= require('Module:Map').buildMap -- lazy loaded local title = mw.title.getCurrentTitle() local difficulties = { none = 'None', novice = 'Novice', intermediate = 'Intermediate', experienced = 'Experienced', master = 'Master', grandmaster = 'Grandmaster', special = 'Special' } difficulties['..." current
  • 15:5915:59, 16 October 2024 diff hist +84 N Module:Clues/docCreated page with "{{documentation}} Creates the table rows (and pins) for compass and scan type clues." current
  • 15:5915:59, 16 October 2024 diff hist +2,936 N Module:CluesCreated page with "--<nowiki> local p = {} local maps = require('Module:Map').buildMap function p.temps(frame) local args = frame:getParent().args local ctype = frame.args['ctype'] or 'compass' return p._compscan(args, ctype) end function p.convertDegMin(ns, ndeg, nmin, ew, edeg, emin) if string.lower(ns) == 'n' or string.lower(ns) == 'north' then ns = -1 end if not tonumber(ns) then ns = 1 end if string.lower(ew) == 'w' or string.lower(ew) == 'west' then ew = -1 end if n..." current
  • 15:5615:56, 16 October 2024 diff hist +240 N Template:Unknown/docCreated page with "{{documentation}} Displays the text 'Unknown' along with a link to edit the page the template is used on. Useful in templates. ==Usage and examples== {{T|unknown}} {{unknown}} <includeonly>Category:Maintenance templates</includeonly>" current
  • 15:5615:56, 16 October 2024 diff hist +130 N Template:UnknownCreated page with "<includeonly>Unknown <small>([{{fullurl:{{FULLPAGENAME}}|action=edit}} edit])</small></includeonly><noinclude>{{/doc}}</noinclude>" current
  • 15:5415:54, 16 October 2024 diff hist +65,372 N Theatre of Blood/StrategiesCreated page with "The Theatre of Blood is a raid located in Ver Sinhaza. It is the second raid released to date. Unlike in Tombs of Amascut, players are not allowed to teleport out of the Theatre of Blood - the only way to escape in the middle of a fight is through an escape crystal, sold by the Mysterious Stranger outside the raid for {{NoCoins|75000|c}} each. Players who die during the raid will be placed in purgatory. If the room is successfully cleared by the rema..." current
  • 15:4115:41, 16 October 2024 diff hist +1,505 N Template:Safe activity/docCreated page with "{{documentation}} This template displays a notification stating that an activity is safe. ==Usage and Examples== This template can be used by entering the following onto a relevant page: <pre>{{Safe activity}}</pre> {{Safe activity}} For activities that allow no items to be taken in or out, you can use: <pre>{{Safe activity|noitems=yes}}</pre> {{Safe activity|noitems=yes}} For instanced areas you can use: <pre>{{Safe activity|instance=yes}}</pre> {{Safe activity|insta..." current
  • 15:4115:41, 16 October 2024 diff hist +799 N Template:Safe activityCreated page with "<includeonly>{{MessageBox |class = safe |img = center|link= |This is a safe {{#if: {{{pvp|}}}|PvP}} activity{{#if: {{{instance|}}}| in an instanced area}}. |{{#if: {{{noitems|}}}|<nowiki/>You cannot bring any items in or out of this activity.<br/>}} If you die here, you will not lose any of your items, including those stored inside an Item Retrieval Service (deathbank){{#if: {{{instance|}}}|<nowiki/>.<br/>However, any..." current
  • 15:3915:39, 16 October 2024 diff hist +2,746 N Template:Blockquote/docCreated page with "{{Documentation}} The '''Blockquote''' template is used to add a block quote into an article. This is easier to type and more wiki-like than the equivalent HTML <code><nowiki><blockquote></blockquote></nowiki></code> tags, has additional pre-formatted attribution and source parameters. This template should be used for longer quotes (four or more sentences); for short, one or two-sentence quotes, use Template:Cquote2. ==Usage== <pre>{{Quote|quote|author|source}}</pr..." current
  • 15:3915:39, 16 October 2024 diff hist +584 N Template:BlockquoteCreated page with "<blockquote {{#if:{{{style|}}}|style="{{{style}}}"}}>{{{quote|{{{1|{{{quotetext|<noinclude>Legend tells us that a swan, before it dies, sings a song of outstanding beauty as a fitting conclusion to its graceful life. This adventure will be my swan song.</noinclude>}}}}}}}}}{{#if:{{{2|}}}{{{3|{{{quotesource|}}}}}}| <div class="quote-source" style="padding-left:1.6em">— <cite>{{{2|}}}{{#if: {{{3|{{{quotesource|}}}}}} | {{#switch: {{{3|{{{quotesource|}}}}}} |no= | {{..." current
  • 15:3915:39, 16 October 2024 diff hist +33 N Template:QuoteRedirected page to Template:Blockquote current Tag: New redirect
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)