Roblox Wiki
Roblox Wiki
m (Adding egg-simulator and treasurequestroblox)
mNo edit summary
Line 56: Line 56:
 
"roblox-ninja-legends",
 
"roblox-ninja-legends",
 
"notoriety",
 
"notoriety",
  +
"overlook-bay-roblox",
 
"pet-simulator",
 
"pet-simulator",
 
"pinewood",
 
"pinewood",

Revision as of 06:33, 29 December 2020

This module contains a list of interwiki wikis, as well as a function to generate a notice for the Interwiki template. If someone tries to add a link to a wiki that is not in the below list in the Interwiki template, the template will show an error message.


-- This is a general database for every interwiki wiki, as well as control for the {{Interwiki}} template. Wikis should be added to this list upon being added to the interwiki.
-- Thundermaker300

local categorization = require("Module:Categorization")
local categorize = categorization.categorize_in_namespaces(0, 'Community')

local p = {}

p.Wikis = {
    --A - D--
    "adoptme",
    "roblox-apocalypse-rising",
    "robloxarsenal",
    "bee-swarm-simulator",
    "black-hole-simulator",
    "roblox-blackhawk-rescue-mission-5",
    "black-magic-ii",
    "blox-cards",
    "boku-no-robloxremastered",
    "booga-booga-roblox",
    "boss-fighting-stages-rebirth",
    "bubble-gum-simulator",
    "build-a-boat-for-treasure",
    "case-clicker-roblox",
    "crown-academy",
    "dinosimulator",
	"dbog",
    "dragon-ball-z-final-stand",
    "dungeonquestroblox",
    "dss-iii",
    --E - M--
    "eclipsis",
    "electric-state-darkrp",
    "egg-simulator",
    "roblox-elemental-battlegrounds",
    "entry-point",
    "fantastic-frontier-roblox",
    "robloxflicker",
    "roblox-galaxy-official",
    "roblox-game-store-tycoon",
    "greenville-wisconsin",
    "horrific-housing",
    "ice-cream-simulator",
    "jailbreak",
	"jtoh",
    "loomian-legacy",
    "lumber-tycoon-2",
    "mad-city",
    "minershaven",
    "mining-simulator",
    "monsterislands",
    "roblox-etheria",
    "ronroblox",
	"my-restaurant",
    --N - S--
    "roblox-ninja-legends",
    "notoriety",
    "overlook-bay-roblox",
    "pet-simulator",
	"pinewood",
	"quantum-science",
    "roblox-pilot-training-flightplane-simulator",
    "roblox-phantom-forces",
    "robloxpiggy",
    "r2da",
    "rocitizens",
    "robeats",
    "roghoul-rblx",
    "rolve",
    "royale-high",
    "rumble-quest",
    "robloxislands",
    "roblox-saber-simulator",
    "rblx-snow-shoveling-simulator",
    "roblox-super-bomb-survival",
    "scr",
    "shiguto",
    "sunshine-islands-roblox",
    "roblox-super-power-training-simulator",
    "roblox-survive-and-kill-the-killers-in-area-51",
    "swordburst2",
    --T - Z--
    "tpt2",
    "roblox-tower-battles",
    "tds",
    "tower-of-hell",
    "treelands",
    "treasurequestroblox",
    "typicalcolors2",
    "ultimate-driving-roblox",
    "vehicle-simulator-roblox",
    "welcome-to-bloxburg",
    "wfyb",
    "world-zero",
    "yar-roblox",
    "zombie-attack-roblox"
}

function p.makeInterwikiHeader(frame)
    local wiki = frame.args[1]
    local found = false
    for _,v in pairs(p.Wikis) do
        if wiki == v then
            found = true
            break
        end
    end
    if found then
        return frame:preprocess("{{Mbox|header=<center>This place has a Fandom-hosted wiki project dedicated to it through the [[w:c:community:Template:RobloxWikis|Interwiki project]].</center>|text=<center>[[w:c:{{{1|roblox}}}|Click here]] to access it.</center><includeonly></includeonly>|bordercolor=#DDE1E9|aside=[[w:c:community:Template:RobloxWikis/doc|About]]}}" .. categorize("Games with Interwiki wikis"))
    else
        return frame:preprocess("{{Mbox|header=<center><big>{{SUBPAGENAME}} is not part of the interwiki.</big></center>|text=<center>This template is made for wikis that are part of the interwiki. This place does not appear to be part of the interwiki. If the interwiki linked meets the requirements, or this is a mistake, reach out to a [[Project:Wiki Staff#Administration|wiki administrator]] to get this resolved.</center>|bordercolor=#f5601b}}" .. categorize("Non-interwiki games using Interwiki template"))
    end
end

return p