<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://dantdm.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ScrapBlox</id>
	<title>DanTDM Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://dantdm.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=ScrapBlox"/>
	<link rel="alternate" type="text/html" href="https://dantdm.wiki/w/Special:Contributions/ScrapBlox"/>
	<updated>2026-07-28T06:38:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Apology&amp;diff=41910</id>
		<title>Apology</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Apology&amp;diff=41910"/>
		<updated>2026-07-22T23:24:52Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: REDIRECT TO Apology. as links in discord and other platforms remove period from the link.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Apology.]]&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Sidebar&amp;diff=41657</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Sidebar&amp;diff=41657"/>
		<updated>2026-06-23T17:42:21Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Listing recent wiki edits in sidebar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* navigation&lt;br /&gt;
** mainpage|mainpage-description&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
** randompage-url|randompage&lt;br /&gt;
** helppage|help-mediawiki&lt;br /&gt;
* Recent changes&lt;br /&gt;
** recentchanges-url|recentchanges&lt;br /&gt;
* DanTDM Wiki&lt;br /&gt;
** Special:WikiForum|Forum&lt;br /&gt;
** DanTDM_Wiki:Rules|Wiki Rules&lt;br /&gt;
** DanTDM_Wiki:Staff|Wiki Staff&lt;br /&gt;
** https://discord.gg/RuTPdAhs|Discord&lt;br /&gt;
* SEARCH&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
* LANGUAGES&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadgets-definition&amp;diff=41656</id>
		<title>MediaWiki:Gadgets-definition</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadgets-definition&amp;diff=41656"/>
		<updated>2026-06-23T17:42:19Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Listing recent wiki edits in sidebar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* fixedWidth[ResourceLoader|type=styles|targets=desktop|skins=vector|supportsUrlLoad=true]|fixedWidth.css&lt;br /&gt;
* fixedWidthToggle[ResourceLoader|dependencies=mediawiki.util,mediawiki.user,mediawiki.cookie,mediawiki.api,user.options|targets=desktop|type=general|skins=vector|default|hidden]|fixedWidthToggle.js|fixedWidthToggle.css&lt;br /&gt;
* RCSidebar[ResourceLoader|default] | RecentChangesSidebar.js&lt;br /&gt;
* RCSidebarStyles[ResourceLoader|default|type=styles] | RecentChangesSidebar.css&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadget-RecentChangesSidebar.js&amp;diff=41655</id>
		<title>MediaWiki:Gadget-RecentChangesSidebar.js</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadget-RecentChangesSidebar.js&amp;diff=41655"/>
		<updated>2026-06-23T17:42:16Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Listing recent wiki edits in sidebar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;// From https://dev.miraheze.org/wiki/Recent_changes_sidebar&lt;br /&gt;
mw.loader.using([ &#039;mediawiki.api&#039;, &#039;mediawiki.util&#039; ], function () {&lt;br /&gt;
    const scriptPath = mw.config.get(&#039;wgScriptPath&#039;);&lt;br /&gt;
    const skin = mw.config.get(&#039;skin&#039;);&lt;br /&gt;
&lt;br /&gt;
    function articleUrl(title) {&lt;br /&gt;
        return mw.util.getUrl(title);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function contributionsUrl(user) {&lt;br /&gt;
        return mw.util.getUrl(&#039;Special:Contributions/&#039; + user);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function recentChangesUrl() {&lt;br /&gt;
        return mw.util.getUrl(&#039;Special:RecentChanges&#039;);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function message(key, fallback) {&lt;br /&gt;
        const msg = mw.message(key);&lt;br /&gt;
&lt;br /&gt;
        return msg.exists() ? msg.text() : fallback;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function formatAge(timestamp) {&lt;br /&gt;
        const timeDelta = Date.now() - Date.parse(timestamp);&lt;br /&gt;
        let timeString = Math.round(timeDelta / 60000) + &#039;m&#039;;&lt;br /&gt;
&lt;br /&gt;
        if (timeDelta &amp;gt;= 3600000) {&lt;br /&gt;
            timeString = Math.round(timeDelta / 3600000) + &#039;h&#039;;&lt;br /&gt;
        }&lt;br /&gt;
        if (timeDelta &amp;gt;= 86400000) {&lt;br /&gt;
            timeString = Math.round(timeDelta / 86400000) + &#039;d&#039;;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        return timeString;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function recentChangeItem(entry) {&lt;br /&gt;
        const user = entry.user;&lt;br /&gt;
        const userText = entry.anon === &#039;&#039; ? message(&#039;anonymous&#039;, &#039;anonymous&#039;) : user;&lt;br /&gt;
        const $timeLink = $(&#039;&amp;lt;a&amp;gt;&#039;, {&lt;br /&gt;
            href: scriptPath + `?diff=${entry.revid}`&lt;br /&gt;
        }).append(&lt;br /&gt;
            document.createTextNode(formatAge(entry.timestamp) + &#039; &#039;),&lt;br /&gt;
            $(&#039;&amp;lt;span&amp;gt;&#039;, {&lt;br /&gt;
                class: &#039;rc-sidebar-ago&#039;,&lt;br /&gt;
                text: &#039;ago&#039;&lt;br /&gt;
            })&lt;br /&gt;
        );&lt;br /&gt;
&lt;br /&gt;
        return $(&#039;&amp;lt;li&amp;gt;&#039;, {&lt;br /&gt;
            class: &#039;mw-list-item rc-sidebar-item&#039;&lt;br /&gt;
        }).append(&lt;br /&gt;
            $(&#039;&amp;lt;a&amp;gt;&#039;, {&lt;br /&gt;
                class: &#039;rc-sidebar-page&#039;,&lt;br /&gt;
                href: articleUrl(entry.title),&lt;br /&gt;
                text: entry.title&lt;br /&gt;
            }),&lt;br /&gt;
            $(&#039;&amp;lt;p&amp;gt;&#039;, {&lt;br /&gt;
                class: &#039;rc-sidebar-user&#039;&lt;br /&gt;
            }).append(&lt;br /&gt;
                $timeLink,&lt;br /&gt;
                document.createTextNode(&#039; - &#039;),&lt;br /&gt;
                $(&#039;&amp;lt;a&amp;gt;&#039;, {&lt;br /&gt;
                    href: contributionsUrl(user),&lt;br /&gt;
                    text: userText&lt;br /&gt;
                })&lt;br /&gt;
            )&lt;br /&gt;
        );&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function citizenShowMoreItem() {&lt;br /&gt;
        const $sidebar = $(&#039;.citizen-page-sidebar&#039;).first();&lt;br /&gt;
&lt;br /&gt;
        if (!$sidebar.length) {&lt;br /&gt;
            return $();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        const $showMore = $(&#039;&amp;lt;li&amp;gt;&#039;, {&lt;br /&gt;
            id: &#039;n-recentchanges&#039;,&lt;br /&gt;
            class: &#039;mw-list-item&#039;&lt;br /&gt;
        }).append(&lt;br /&gt;
            $(&#039;&amp;lt;a&amp;gt;&#039;, {&lt;br /&gt;
                &#039;data-mw&#039;: &#039;interface&#039;,&lt;br /&gt;
                href: recentChangesUrl(),&lt;br /&gt;
                rel: &#039;nofollow&#039;,&lt;br /&gt;
                title: &#039;A list of recent changes in the wiki&#039;&lt;br /&gt;
            }).append(&lt;br /&gt;
                $(&#039;&amp;lt;span&amp;gt;&#039;, {&lt;br /&gt;
                    text: &#039;Show more...&#039;&lt;br /&gt;
                })&lt;br /&gt;
            )&lt;br /&gt;
        );&lt;br /&gt;
&lt;br /&gt;
        const $portlet = $(&#039;&amp;lt;nav&amp;gt;&#039;, {&lt;br /&gt;
            id: &#039;citizen-sidebar-recentchanges&#039;,&lt;br /&gt;
            class: &#039;citizen-menu rc-sidebar-menu&#039;,&lt;br /&gt;
            role: &#039;navigation&#039;,&lt;br /&gt;
            &#039;aria-labelledby&#039;: &#039;citizen-sidebar-recentchanges-label&#039;&lt;br /&gt;
        }).append(&lt;br /&gt;
            $(&#039;&amp;lt;div&amp;gt;&#039;, {&lt;br /&gt;
                id: &#039;citizen-sidebar-recentchanges-label&#039;,&lt;br /&gt;
                class: &#039;citizen-menu__heading&#039;,&lt;br /&gt;
                text: &#039;Recent changes&#039;&lt;br /&gt;
            }),&lt;br /&gt;
            $(&#039;&amp;lt;div&amp;gt;&#039;, {&lt;br /&gt;
                class: &#039;citizen-menu__content&#039;&lt;br /&gt;
            }).append(&lt;br /&gt;
                $(&#039;&amp;lt;ul&amp;gt;&#039;, {&lt;br /&gt;
                    class: &#039;citizen-menu__content-list&#039;&lt;br /&gt;
                }).append($showMore)&lt;br /&gt;
            )&lt;br /&gt;
        );&lt;br /&gt;
&lt;br /&gt;
        const $lastModified = $(&#039;#citizen-sidebar-lastmod&#039;).first();&lt;br /&gt;
        const $toc = $(&#039;#citizen-toc&#039;).first();&lt;br /&gt;
&lt;br /&gt;
        if ($lastModified.length) {&lt;br /&gt;
            $lastModified.after($portlet);&lt;br /&gt;
        } else if ($toc.length) {&lt;br /&gt;
            $toc.before($portlet);&lt;br /&gt;
        } else {&lt;br /&gt;
            $sidebar.append($portlet);&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        return $showMore;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function showMoreItem() {&lt;br /&gt;
        if (skin === &#039;citizen&#039;) {&lt;br /&gt;
            return citizenShowMoreItem();&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        return $(&#039;#p-Recent_changes #n-recentchanges&#039;).first();&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function populateRecentChanges($showMore, changes) {&lt;br /&gt;
        $showMore&lt;br /&gt;
            .children(&#039;a&#039;)&lt;br /&gt;
            .children(&#039;span&#039;)&lt;br /&gt;
            .last()&lt;br /&gt;
            .text(&#039;Show more...&#039;);&lt;br /&gt;
&lt;br /&gt;
        $showMore.before(changes.map(function (entry) {&lt;br /&gt;
            return recentChangeItem(entry)[0];&lt;br /&gt;
        }));&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    const $showMore = showMoreItem();&lt;br /&gt;
&lt;br /&gt;
    if (!$showMore.length) {&lt;br /&gt;
        return;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    const api = new mw.Api();&lt;br /&gt;
&lt;br /&gt;
    function handleError(msg) {&lt;br /&gt;
        console.error(msg);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    api.get({&lt;br /&gt;
        action: &#039;query&#039;,&lt;br /&gt;
        list: &#039;recentchanges&#039;,&lt;br /&gt;
        rcprop: &#039;title|timestamp|user|ids&#039;,&lt;br /&gt;
        rcnamespace: &#039;0&#039;,&lt;br /&gt;
        rclimit: &#039;4&#039;,&lt;br /&gt;
        rctype: &#039;edit|new&#039;,&lt;br /&gt;
        rcshow: &#039;!bot&#039;,&lt;br /&gt;
        rctoponly: &#039;1&#039;,&lt;br /&gt;
        format: &#039;json&#039;,&lt;br /&gt;
        maxage: &#039;120&#039;,&lt;br /&gt;
        smaxage: &#039;120&#039;&lt;br /&gt;
    }).done(function (data) {&lt;br /&gt;
        const changes = data.query &amp;amp;&amp;amp; data.query.recentchanges ? data.query.recentchanges : [];&lt;br /&gt;
&lt;br /&gt;
        if (changes.length === 0) {&lt;br /&gt;
            handleError(&amp;quot;No recent change(s) found.&amp;quot;);&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        populateRecentChanges($showMore, changes);&lt;br /&gt;
    }).fail(function (msg) {&lt;br /&gt;
        handleError(msg);&lt;br /&gt;
    });&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadget-RecentChangesSidebar.css&amp;diff=41654</id>
		<title>MediaWiki:Gadget-RecentChangesSidebar.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadget-RecentChangesSidebar.css&amp;diff=41654"/>
		<updated>2026-06-23T17:42:15Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Listing recent wiki edits in sidebar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* From https://dev.miraheze.org/wiki/Recent_changes_sidebar */&lt;br /&gt;
/* The standard sidebar is not positioned as a true sidebar on these skins. */&lt;br /&gt;
.skin-cosmos #p-Recent_changes,&lt;br /&gt;
.skin-citizen #p-Recent_changes {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* When no CSS/JS exist. This RC entry serves as fallback. Otherwise, hide it&lt;br /&gt;
from the start to avoid a flash of single RC entry. */&lt;br /&gt;
#p-Recent_changes .vector-menu-content-list &amp;gt; #n-recentchanges:only-child {&lt;br /&gt;
    visibility: hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Reserve space for the inserted entries to avoid layout shift */&lt;br /&gt;
#p-Recent_changes .vector-menu-content-list &amp;gt; #n-recentchanges:only-child::after {&lt;br /&gt;
    content: &#039;&#039;;&lt;br /&gt;
    display: block;&lt;br /&gt;
    height: 12em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html {&lt;br /&gt;
    --gadget-rcsb-indicator-color: #3c7b07;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html.skin-theme-clientpref-night {&lt;br /&gt;
    --gadget-rcsb-indicator-color: #91df64;&lt;br /&gt;
}&lt;br /&gt;
@media (prefers-color-scheme: dark) {&lt;br /&gt;
	html.skin-theme-clientpref-os {&lt;br /&gt;
		--gadget-rcsb-indicator-color: #91df64;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.skin-monobook #p-Recent_changes-label:after,&lt;br /&gt;
.skin-timeless #p-Recent_changes-label:after,&lt;br /&gt;
#citizen-sidebar-recentchanges .citizen-menu__heading:after,&lt;br /&gt;
#p-Recent_changes .vector-menu-heading:after {&lt;br /&gt;
    content: &#039;&#039;;&lt;br /&gt;
    position: relative;&lt;br /&gt;
    background-color: var(--gadget-rcsb-indicator-color);&lt;br /&gt;
    left: 0.5em;&lt;br /&gt;
    display: inline-block;&lt;br /&gt;
    width: 6px;&lt;br /&gt;
    height: 6px;&lt;br /&gt;
    border-radius: 50%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-Recent_changes .rc-sidebar-page,&lt;br /&gt;
#citizen-sidebar-recentchanges .rc-sidebar-page {&lt;br /&gt;
    display: block;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
    text-overflow: ellipsis;&lt;br /&gt;
    overflow: hidden;&lt;br /&gt;
    max-width: max-content;&lt;br /&gt;
    /* Citizen sets this */&lt;br /&gt;
    min-height: unset;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-Recent_changes .rc-sidebar-page,&lt;br /&gt;
#p-Recent_changes .rc-sidebar-page:active,&lt;br /&gt;
#p-Recent_changes .rc-sidebar-page:visited,&lt;br /&gt;
#citizen-sidebar-recentchanges .rc-sidebar-page,&lt;br /&gt;
#citizen-sidebar-recentchanges .rc-sidebar-page:active,&lt;br /&gt;
#citizen-sidebar-recentchanges .rc-sidebar-page:visited {&lt;br /&gt;
    color: var(--color-link, #36c);;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-Recent_changes .rc-sidebar-user,&lt;br /&gt;
#citizen-sidebar-recentchanges .rc-sidebar-user {&lt;br /&gt;
    color: var(--color-subtle, #54595d);&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    white-space: nowrap;&lt;br /&gt;
    text-overflow: ellipsis;&lt;br /&gt;
    overflow: hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#p-Recent_changes .rc-sidebar-user a,&lt;br /&gt;
#citizen-sidebar-recentchanges .rc-sidebar-user a {&lt;br /&gt;
    color: inherit;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.skin-vector-2022 #p-Recent_changes .rc-sidebar-user a,&lt;br /&gt;
.skin-citizen #citizen-sidebar-recentchanges .rc-sidebar-user a {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.skin-citizen .rc-sidebar-item {&lt;br /&gt;
    margin-bottom: 4px;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=User_talk:ScrapBlox&amp;diff=41644</id>
		<title>User talk:ScrapBlox</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=User_talk:ScrapBlox&amp;diff=41644"/>
		<updated>2026-06-19T23:16:47Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: /* Page Deletion delayed? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When writing on talk pages, you should ensure you include your signature &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.  For more direct/private means of contact you may email scrapblox@gmail.com or DM me on Discord, thank you! &amp;lt;span style=&amp;quot;background:linear-gradient(45deg, navy, darkred);&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(45deg, blue, red);border-radius:5px;padding:3px;margin:5px;&amp;quot;&amp;gt;[[User:ScrapBlox|ScrapBlox]] - ([[User_talk:ScrapBlox|talk]]) (Admin/Host)&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; 23:32, 7 June 2025 (UTC)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Find unknown levels ==&lt;br /&gt;
&lt;br /&gt;
information is here:&lt;br /&gt;
&lt;br /&gt;
https://dantdm.wiki/w/Category_talk:Happy_Wheels#Find_unknown_levels&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 02:33, 18 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Should collabs have collaborator content? ==&lt;br /&gt;
&lt;br /&gt;
Hello Scrapbox. I had this Idea where if videos have collabs, they include both Dan&#039;s videos, and collaborator videos from the same time they were recorded. I did this as an experiment on Dan&#039;s Who&#039;s Your Daddy video: [[DAD MICROWAVES THE BABY?!]].&lt;br /&gt;
If this is fine with you, I will do more of this for the other videos of the Who&#039;s Your Daddy?! series and possibly more to come.&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 09:01, 19 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Sounds good, I like it lol. Also not a big deal but we do have [[Special:WikiForum]] which is a general place to discuss the about the wiki as there isn&#039;t a one person says all for the DanTDM Wiki.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 16:18, 19 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just letting you know, this wiki &#039;&#039;&#039;is&#039;&#039;&#039; dead. no-one is actually editing pages or talking in the forum. in fact, there are no posts in the forum to my knowledge. I probably started this conversation here because of the wiki being so baren.&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 14:48, 23 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Repost: old videos to add ==&lt;br /&gt;
&lt;br /&gt;
(copied most text from my message to DanTDMFan) hello admin! I came here to ask; If you have time, do you wanna add a bunch of old DanTDM videos to the wiki? I have made a list of them at [[Category talk:Video Pages#DGMO&#039;s undocumented videos 1|Category talk:Video Pages.]]&lt;br /&gt;
It is a lot, but i&#039;d be really happy to see all of these on the wiki. Best regards, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 02:08, 2 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Page Deletion delayed? ==&lt;br /&gt;
&lt;br /&gt;
Hello, Scrapblox! Before, I had noticed that marked pages were being deleted every 3 days, but now it has been a week since pages were deleted. Just wanted to let you know.. [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 23:52, 14 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yep, was letting the category fill up some before I run the removal script so it didn&#039;t flood [[Special:RecentChanges]] etc. But I&#039;ll run the script in a bit tonight. Thanks again! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 00:53, 15 June 2026 (UTC)&lt;br /&gt;
:I have cleared the [[:Category:&amp;quot;Quick delete&amp;quot; articles|quick delete]] category. Sry meant to do so sooner but I had work for those days and was tired lol. Much appreciated tho as always. (I also ran a database query to get a list of the remaining broken imported fandom files and am in process of deleting those as well) &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 23:06, 19 June 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=User_talk:ScrapBlox&amp;diff=41643</id>
		<title>User talk:ScrapBlox</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=User_talk:ScrapBlox&amp;diff=41643"/>
		<updated>2026-06-19T23:06:55Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: /* Page Deletion delayed? */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When writing on talk pages, you should ensure you include your signature &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.  For more direct/private means of contact you may email scrapblox@gmail.com or DM me on Discord, thank you! &amp;lt;span style=&amp;quot;background:linear-gradient(45deg, navy, darkred);&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(45deg, blue, red);border-radius:5px;padding:3px;margin:5px;&amp;quot;&amp;gt;[[User:ScrapBlox|ScrapBlox]] - ([[User_talk:ScrapBlox|talk]]) (Admin/Host)&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; 23:32, 7 June 2025 (UTC)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Find unknown levels ==&lt;br /&gt;
&lt;br /&gt;
information is here:&lt;br /&gt;
&lt;br /&gt;
https://dantdm.wiki/w/Category_talk:Happy_Wheels#Find_unknown_levels&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 02:33, 18 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Should collabs have collaborator content? ==&lt;br /&gt;
&lt;br /&gt;
Hello Scrapbox. I had this Idea where if videos have collabs, they include both Dan&#039;s videos, and collaborator videos from the same time they were recorded. I did this as an experiment on Dan&#039;s Who&#039;s Your Daddy video: [[DAD MICROWAVES THE BABY?!]].&lt;br /&gt;
If this is fine with you, I will do more of this for the other videos of the Who&#039;s Your Daddy?! series and possibly more to come.&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 09:01, 19 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Sounds good, I like it lol. Also not a big deal but we do have [[Special:WikiForum]] which is a general place to discuss the about the wiki as there isn&#039;t a one person says all for the DanTDM Wiki.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 16:18, 19 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just letting you know, this wiki &#039;&#039;&#039;is&#039;&#039;&#039; dead. no-one is actually editing pages or talking in the forum. in fact, there are no posts in the forum to my knowledge. I probably started this conversation here because of the wiki being so baren.&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 14:48, 23 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Repost: old videos to add ==&lt;br /&gt;
&lt;br /&gt;
(copied most text from my message to DanTDMFan) hello admin! I came here to ask; If you have time, do you wanna add a bunch of old DanTDM videos to the wiki? I have made a list of them at [[Category talk:Video Pages#DGMO&#039;s undocumented videos 1|Category talk:Video Pages.]]&lt;br /&gt;
It is a lot, but i&#039;d be really happy to see all of these on the wiki. Best regards, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 02:08, 2 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Page Deletion delayed? ==&lt;br /&gt;
&lt;br /&gt;
Hello, Scrapblox! Before, I had noticed that marked pages were being deleted every 3 days, but now it has been a week since pages were deleted. Just wanted to let you know.. [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 23:52, 14 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yep, was letting the category fill up some before I run the removal script so it didn&#039;t flood [[Special:RecentChanges]] etc. But I&#039;ll run the script in a bit tonight. Thanks again! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 00:53, 15 June 2026 (UTC)&lt;br /&gt;
:I have cleared the [[:Category:&amp;quot;Quick delete&amp;quot; articles|quick delete]] category. Sry meant to do so sooner but I had work for those days and was tired lol. Much appreciated tho as always. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 23:06, 19 June 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=User_talk:ScrapBlox&amp;diff=41551</id>
		<title>User talk:ScrapBlox</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=User_talk:ScrapBlox&amp;diff=41551"/>
		<updated>2026-06-15T00:53:53Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: /* Page Deletion (problematic) */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When writing on talk pages, you should ensure you include your signature &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;.  For more direct/private means of contact you may email scrapblox@gmail.com or DM me on Discord, thank you! &amp;lt;span style=&amp;quot;background:linear-gradient(45deg, navy, darkred);&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(45deg, blue, red);border-radius:5px;padding:3px;margin:5px;&amp;quot;&amp;gt;[[User:ScrapBlox|ScrapBlox]] - ([[User_talk:ScrapBlox|talk]]) (Admin/Host)&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt; 23:32, 7 June 2025 (UTC)&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Find unknown levels ==&lt;br /&gt;
&lt;br /&gt;
information is here:&lt;br /&gt;
&lt;br /&gt;
https://dantdm.wiki/w/Category_talk:Happy_Wheels#Find_unknown_levels&lt;br /&gt;
&lt;br /&gt;
~~DGMO~~&lt;br /&gt;
&lt;br /&gt;
== Should collabs have collaborator content? ==&lt;br /&gt;
&lt;br /&gt;
Hello Scrapbox. I had this Idea where if videos have collabs, they include both Dan&#039;s videos, and collaborator videos from the same time they were recorded. I did this as an experiment on Dan&#039;s Who&#039;s Your Daddy video: [[DAD MICROWAVES THE BABY?!]].&lt;br /&gt;
If this is fine with you, I will do more of this for the other videos of the Who&#039;s Your Daddy?! series and possibly more to come.&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 09:01, 19 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Sounds good, I like it lol. Also not a big deal but we do have [[Special:WikiForum]] which is a general place to discuss the about the wiki as there isn&#039;t a one person says all for the DanTDM Wiki.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 16:18, 19 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
Just letting you know, this wiki &#039;&#039;&#039;is&#039;&#039;&#039; dead. no-one is actually editing pages or talking in the forum. in fact, there are no posts in the forum to my knowledge. I probably started this conversation here because of the wiki being so baren.&lt;br /&gt;
&lt;br /&gt;
[[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 14:48, 23 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Repost: old videos to add ==&lt;br /&gt;
&lt;br /&gt;
(copied most text from my message to DanTDMFan) hello admin! I came here to ask; If you have time, do you wanna add a bunch of old DanTDM videos to the wiki? I have made a list of them at [[Category talk:Video Pages#DGMO&#039;s undocumented videos 1|Category talk:Video Pages.]]&lt;br /&gt;
It is a lot, but i&#039;d be really happy to see all of these on the wiki. Best regards, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 02:08, 2 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Page Deletion (problematic) ==&lt;br /&gt;
&lt;br /&gt;
Hello, Scrapblox! Before, I had noticed that marked pages were being deleted every 3 days, but now it has been a week since pages were deleted. Just wanted to let you know.. [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 23:52, 14 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Yep, was letting the category fill up some before I run the removal script so it didn&#039;t flood [[Special:RecentChanges]] etc. But I&#039;ll run the script in a bit tonight. Thanks again! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 00:53, 15 June 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=41465</id>
		<title>MediaWiki:Sitenotice</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=41465"/>
		<updated>2026-06-12T21:16:53Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Template:YIWA&amp;diff=41464</id>
		<title>Template:YIWA</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Template:YIWA&amp;diff=41464"/>
		<updated>2026-06-12T20:51:27Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Added OSFirstTimer wiki to members list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;plainlinks yiwa-template&amp;quot; style=&amp;quot;width:100%; border-collapse:collapse;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| id=&amp;quot;yiwa-logo&amp;quot; rowspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; padding:8px; white-space:nowrap;&amp;quot; |&lt;br /&gt;
&amp;lt;span class=&amp;quot;yiwaWording&amp;quot;&amp;gt;&#039;&#039;&#039;YIWA&amp;lt;span&amp;gt;.&amp;lt;/span&amp;gt;&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
| id=&amp;quot;yiwa-intro&amp;quot; style=&amp;quot;padding:8px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;[[DanTDM_Wiki:YouTube Independent Wiki Alliance|YouTube Independent Wiki Alliance]]&#039;&#039;&#039; (YIWA) is a network of independent, open-content encyclopedias focused on YouTube and its creators.&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;font-size:smaller; padding:8px;&amp;quot; |&lt;br /&gt;
&amp;lt;div id=&amp;quot;yiwa-list&amp;quot; class=&amp;quot;pixelated&amp;quot; style=&amp;quot;column-width:220px; column-gap:1em;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [[File:CaseOhWiki_Icon.png|16px|link=|alt=]] [https://caseoh.wiki &#039;&#039;&#039;CaseOh Wiki&#039;&#039;&#039;]&lt;br /&gt;
* [[File:DanTDMWikiFavicon.png|16px|link=|alt=]] [https://dantdm.wiki &#039;&#039;&#039;DanTDM Wiki&#039;&#039;&#039;]&lt;br /&gt;
* [[File:JSALWiki_Icon.png|16px|link=|alt=]] [https://wiki.jsal.org &#039;&#039;&#039;JackSucksAtLife Wiki&#039;&#039;&#039;]&lt;br /&gt;
* [[File:DougHole.png|16px|link=|alt=]] [https://thedougunofficialwiki.miraheze.org &#039;&#039;&#039;The Doug UNOFFICIAL Hole Wiki&#039;&#039;&#039;]&lt;br /&gt;
* [[File:Osfirsttimerwiki_icon.png|16px]] [https://osfirsttimer.wiki &#039;&#039;&#039;OSFirstTimer Wiki&#039;&#039;&#039;]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=File:Osfirsttimerwiki_icon.png&amp;diff=41463</id>
		<title>File:Osfirsttimerwiki icon.png</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=File:Osfirsttimerwiki_icon.png&amp;diff=41463"/>
		<updated>2026-06-12T20:50:58Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=40684</id>
		<title>MediaWiki:Sitenotice</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=40684"/>
		<updated>2026-06-04T16:11:07Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;mainpage-container&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-overlay&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-left&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-tagline&amp;quot;&amp;gt;&lt;br /&gt;
A Year&#039;s in review of the independent DanTDM Wiki [[DanTDM Wiki/One year independent|Learn More &amp;gt;]], Thank you!&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=DanTDM_Wiki/One_year_independent&amp;diff=40683</id>
		<title>DanTDM Wiki/One year independent</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=DanTDM_Wiki/One_year_independent&amp;diff=40683"/>
		<updated>2026-06-04T16:11:04Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Today is the day chat!!!!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__ __NOEDITSECTION__&lt;br /&gt;
&amp;lt;div class=&amp;quot;mainpage-container&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-overlay&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-left&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;Celebrating 1 Year Independent!&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-tagline&amp;quot;&amp;gt;&lt;br /&gt;
On June 4th, 2025, the DanTDM Wiki officially left Fandom and migrated to our independent home at &#039;&#039;&#039;dantdm.wiki&#039;&#039;&#039;. Today, we look back at what we&#039;ve built together.&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.08em; line-height: 1.8; background: rgba(2, 5, 35, 0.55); border: 1px solid rgba(0, 207, 255, 0.2); padding: 22px; margin-bottom: 30px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
One year ago, the future of the wiki was uncertain. Moving away from Fandom meant rebuilding templates, fixing broken pages, restoring files, improving search visibility, and learning how to independently host and maintain a community platform.&lt;br /&gt;
&lt;br /&gt;
While the community may be smaller today than during the peak Minecraft YouTube era, this wiki continues to exist because fans still care enough to archive videos, preserve history, improve pages, and keep the community alive.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.4em; font-weight: bold; color: #00cfff; margin-bottom: 16px; border-bottom: 2px solid rgba(0, 207, 255, 0.2); padding-bottom: 6px;&amp;quot;&amp;gt;&lt;br /&gt;
♦ One Year By The Numbers&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 35px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; min-width: 240px; background: #020523; border: 1px solid rgba(0, 207, 255, 0.3); border-top: 4px solid #00cfff; padding: 24px 16px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 2.5em; font-weight: bold; color: #00cfff;&amp;quot;&amp;gt;2,597&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.05em; font-weight: bold; color: #ffffff; margin: 8px 0;&amp;quot;&amp;gt;Edits Since Migration&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 0.9em; color: #a3c2db; line-height: 1.5;&amp;quot;&amp;gt;&lt;br /&gt;
Every typo fix, template update, image upload, and article expansion made entirely on our independent platform.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; min-width: 240px; background: #020523; border: 1px solid rgba(0, 207, 255, 0.3); border-top: 4px solid #00cfff; padding: 24px 16px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 2.5em; font-weight: bold; color: #00cfff;&amp;quot;&amp;gt;12&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.05em; font-weight: bold; color: #ffffff; margin: 8px 0;&amp;quot;&amp;gt;New Community Members&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 0.9em; color: #a3c2db; line-height: 1.5;&amp;quot;&amp;gt;&lt;br /&gt;
New editors and returning fans who joined after the move to help keep the wiki active.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; min-width: 240px; background: #020523; border: 1px solid rgba(0, 207, 255, 0.3); border-top: 4px solid #00cfff; padding: 24px 16px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 2.5em; font-weight: bold; color: #00cfff;&amp;quot;&amp;gt;30&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.05em; font-weight: bold; color: #ffffff; margin: 8px 0;&amp;quot;&amp;gt;Files Uploaded&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 0.9em; color: #a3c2db; line-height: 1.5;&amp;quot;&amp;gt;&lt;br /&gt;
Screenshots, thumbnails, artwork, old channel assets, and historical media archived locally.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;flex: 1; min-width: 240px; background: #020523; border: 1px solid rgba(0, 207, 255, 0.3); border-top: 4px solid #00cfff; padding: 24px 16px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 2.5em; font-weight: bold; color: #00cfff;&amp;quot;&amp;gt;0&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.05em; font-weight: bold; color: #ffffff; margin: 8px 0;&amp;quot;&amp;gt;Auto-Play Video Ads&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 0.9em; color: #a3c2db; line-height: 1.5;&amp;quot;&amp;gt;&lt;br /&gt;
Still one of the best parts of independence.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.4em; font-weight: bold; color: #00cfff; margin-bottom: 16px; border-bottom: 2px solid rgba(0, 207, 255, 0.2); padding-bottom: 6px;&amp;quot;&amp;gt;&lt;br /&gt;
♦ Highlights From The First Year&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative; padding-left: 20px; border-left: 2px solid rgba(0, 207, 255, 0.3); margin-bottom: 35px; margin-left: 15px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative; margin-bottom: 24px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: -53px; background: #00cfff; color: #020523; font-weight: bold; font-size: 0.78em; padding: 2px 6px; width: 68px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
JUNE 2025&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #020523; border: 1px solid rgba(0, 207, 255, 0.15); padding: 14px 18px; margin-left: 35px; line-height: 1.6;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;The Migration Begins&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
The DanTDM Wiki officially leaves Fandom and launches independently at dantdm.wiki. Core pages, templates, categories, and media begin restoration on the new platform.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative; margin-bottom: 24px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: -53px; background: #00cfff; color: #020523; font-weight: bold; font-size: 0.78em; padding: 2px 6px; width: 68px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
2025–26&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #020523; border: 1px solid rgba(0, 207, 255, 0.15); padding: 14px 18px; margin-left: 35px; line-height: 1.6;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Rebuilding The Wiki&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
Templates are cleaned up, SEO improvements are added, pages are restored, categories are reorganized, and the site receives major visual upgrades compared to the original fork.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative; margin-bottom: 24px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: -53px; background: #00cfff; color: #020523; font-weight: bold; font-size: 0.78em; padding: 2px 6px; width: 68px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
JAN 2026&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #020523; border: 1px solid rgba(0, 207, 255, 0.15); padding: 14px 18px; margin-left: 35px; line-height: 1.6;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Formation of YIWA&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
{{SITENAME}} becomes a founding member of the YouTube Independent Wiki Alliance — a network focused on supporting independent YouTuber and creator communities.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative; margin-bottom: 24px;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: -53px; background: #00cfff; color: #020523; font-weight: bold; font-size: 0.78em; padding: 2px 6px; width: 68px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
MAY 2026&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #020523; border: 1px solid rgba(0, 207, 255, 0.15); padding: 14px 18px; margin-left: 35px; line-height: 1.6;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;New homepage design&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
The wiki receives its first major homepage redesign since becoming independent.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: relative;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;position: absolute; left: -53px; background: #00cfff; color: #020523; font-weight: bold; font-size: 0.78em; padding: 2px 6px; width: 68px; text-align: center;&amp;quot;&amp;gt;&lt;br /&gt;
JUNE 2026&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #020523; border: 1px solid rgba(0, 207, 255, 0.15); padding: 14px 18px; margin-left: 35px; line-height: 1.6;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;One Year Later&#039;&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
The wiki continues to operate independently and created and maintained by YOU. We recently made it even easier to edit by not even needing an account nor verified email address.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.4em; font-weight: bold; color: #00cfff; margin-bottom: 16px; border-bottom: 2px solid rgba(0, 207, 255, 0.2); padding-bottom: 6px;&amp;quot;&amp;gt;&lt;br /&gt;
♦ Why Independence Matters&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #020523; border: 1px solid rgba(0, 207, 255, 0.2); padding: 22px; line-height: 1.8; margin-bottom: 35px;&amp;quot;&amp;gt;&lt;br /&gt;
Independent wikis allow communities to control their own design, policies, preservation efforts, and future direction without relying on corporate platform decisions.&lt;br /&gt;
&lt;br /&gt;
The DanTDM Wiki exists entirely because fans continue contributing their time, knowledge, screenshots, archival work, and technical support to preserve an important part of Minecraft and YouTube history.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;background: #112d4e; border: 1px solid #00cfff; padding: 30px; text-align: center; line-height: 1.8;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;color: #00cfff !important; border: none !important; font-size: 1.7em; margin: 0 0 14px 0 !important; padding: 0;&amp;quot;&amp;gt;&lt;br /&gt;
Thank You&lt;br /&gt;
&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Whether you’ve been here since [[User:Treepig_slayer|Treepig slayer]] founded the wiki in 2014, helped [[User:LostSnowDust|LostSnowDust]] during the 2023 adoption, contributed after the migration, or just made your first edit recently — thank you for helping keep the DanTDM Wiki alive.&lt;br /&gt;
&lt;br /&gt;
This project continues because people still care enough to preserve it.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=User_talk:DanTDMFan&amp;diff=40588</id>
		<title>User talk:DanTDMFan</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=User_talk:DanTDMFan&amp;diff=40588"/>
		<updated>2026-06-03T18:44:17Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: /* About Deleting Articles and Questions */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hey. It&#039;s Enayy. I&#039;m shocked to see you&#039;ve forked from Fandom, but ultimately not surprised. Never really thought you&#039;d do something like that, and I didn&#039;t even know you were still active. Good job on your fork and I hope it suits your wiki well!&lt;br /&gt;
[[User:Adam|Adam]] ([[User talk:Adam|talk]]) 13:15, 6 June 2025 (UTC)&lt;br /&gt;
  &lt;br /&gt;
Thanks man. It&#039;s good to see you still around too. I hope Wikitubia is going well even though I won&#039;t always be active on there except where I made my comeback post back on may. [[User:DanTDMFan|DanTDMFan]] ([[User talk:DanTDMFan|talk]]) 15:15, 6 June 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Greetings from Mark ==&lt;br /&gt;
&lt;br /&gt;
Hellou Dan. Congratulations on the new wiki! Just wanted to pass by and say hello. If you need help with the wiki at any time, I&#039;ll be more than happy to lend a hand. ~ Markus, &amp;lt;span style=&amp;quot;font-family:&#039;Open Sans&#039;,&#039;Noto Sans&#039;,sans-serif;font-size: 125%&amp;quot;&amp;gt;[[User:Headquarter8302|Headquarter]][[User talk:Headquarter8302|8302]]&amp;lt;/span&amp;gt; 07:39, 7 June 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey Mark. And thank you. I&#039;ll be sure to let you know! [[User:DanTDMFan|DanTDMFan]] ([[User talk:DanTDMFan|talk]]) 08:02, 7 June 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== old videos to add ==&lt;br /&gt;
&lt;br /&gt;
hello DanTDMfan! I&#039;ve seen you&#039;ve been adding some recent videos and came here to ask; If you have time, do you wanna add a bunch of old DanTDM videos to the wiki? I have made a list of them at [[Category talk:Video Pages#DGMO&#039;s undocumented videos 1|Category talk:Video Pages]].&lt;br /&gt;
&lt;br /&gt;
and you don&#039;t really have to worry about the Tomodachi Life uploads as I am already covering the basics of them as they come out.&lt;br /&gt;
&lt;br /&gt;
It is a lot, but i&#039;d be really happy to see all of these on the wiki. Best regards, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 02:58, 29 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Sure. once i have the freetime that is. i&#039;ve been quite busy the past few days so i&#039;ll come around and add maybe around 5 to 10 videos eventually. But thank you for the list. I&#039;ll make use of it soon. &amp;lt;b style=&#039;background:#28282B;border;4px solid blue;padding:3px;margin:2px;color:blue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(90deg, pink, pink, blue, pink, blue, pink); -webkit-background-clip:text !important; -webkit-text-fill-color:transparent;&amp;gt;[[User:DanTDMFan|&amp;lt;b style=&amp;quot;color:blue;&amp;quot;&amp;gt;DanTDMFan&amp;lt;/b&amp;gt;]] - ([[User_talk:DanTDMFan|talk]]) &amp;lt;b style=&amp;quot;color:lightblue;font-size:7px;&amp;quot;&amp;gt;(ADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 04:46, 29 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== About Deleting Articles and Questions ==&lt;br /&gt;
&lt;br /&gt;
:hello DanTDMfan. I just wanna know if you are okay with me using the &amp;quot;Quickdelete&amp;quot; template on pages that still haven&#039;t gotten deleted after 3 Months. they are pages that I think are unnecessary for the wiki. thanks, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 19:57, 1 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Sure, go ahead. &amp;lt;b style=&#039;background:#28282B;border;4px solid blue;padding:3px;margin:2px;color:blue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(90deg, pink, pink, blue, pink, blue, pink); -webkit-background-clip:text !important; -webkit-text-fill-color:transparent;&amp;gt;[[User:DanTDMFan|&amp;lt;b style=&amp;quot;color:blue;&amp;quot;&amp;gt;DanTDMFan&amp;lt;/b&amp;gt;]] - ([[User_talk:DanTDMFan|talk]]) &amp;lt;b style=&amp;quot;color:lightblue;font-size:7px;&amp;quot;&amp;gt;(ADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 22:31, 1 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:::I have no issues with use of the template either, I think linking them on [[DanTDM_Wiki:Candidates_for_deletion]] would show more benefit than a template tho (I tried keeping up and clearing the backlog a few days ago). Most articles you propose I agreed for deletion, but seems I missed a few of your proposals so apologies for that.. Thank you for your continued work and dedication here tho! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 00:59, 2 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:You can find the rest of the articles I propose at [[:Category:&amp;quot;Quick delete&amp;quot; articles|quick delete articles]]. [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 01:40, 2 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
::Alright, all deleted now. Thank you. &amp;lt;b style=&#039;background:#28282B;border;4px solid blue;padding:3px;margin:2px;color:blue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(90deg, pink, pink, blue, pink, blue, pink); -webkit-background-clip:text !important; -webkit-text-fill-color:transparent;&amp;gt;[[User:DanTDMFan|&amp;lt;b style=&amp;quot;color:blue;&amp;quot;&amp;gt;DanTDMFan&amp;lt;/b&amp;gt;]] - ([[User_talk:DanTDMFan|talk]]) &amp;lt;b style=&amp;quot;color:lightblue;font-size:7px;&amp;quot;&amp;gt;(ADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 01:46, 2 June 2026 (UTC)&lt;br /&gt;
:Deletion update: I have spent 3 hours putting the &amp;quot;QuickDelete&amp;quot; template on &amp;quot;Files&amp;quot; that aren&#039;t actually files, but rather, emptier pages with names of articles that already exist as regular pages on the wiki. I have applied QuickDelete to articles starting with &amp;quot;, numbers, A, B, and C, as well as some unused working files, too. there are 306 files on the [[:Category:&amp;quot;Quick delete&amp;quot; articles|quick delete articles]] page after this edit. thanks, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 06:47, 3 June 2026 (UTC)&lt;br /&gt;
::Respect, brother. I&#039;ll get to it soon, ty. &amp;lt;b style=&#039;background:#28282B;border;4px solid blue;padding:3px;margin:2px;color:blue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(90deg, pink, pink, blue, pink, blue, pink); -webkit-background-clip:text !important; -webkit-text-fill-color:transparent;&amp;gt;[[User:DanTDMFan|&amp;lt;b style=&amp;quot;color:blue;&amp;quot;&amp;gt;DanTDMFan&amp;lt;/b&amp;gt;]] - ([[User_talk:DanTDMFan|talk]]) &amp;lt;b style=&amp;quot;color:lightblue;font-size:7px;&amp;quot;&amp;gt;(ADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 06:52, 3 June 2026 (UTC)&lt;br /&gt;
::Noted, I can look into bulk removing these pages as they were made from the Fandom data fork (much like I did to these [[Special:Log/Admin]]). &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 18:44, 3 June 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=User_talk:DanTDMFan&amp;diff=40178</id>
		<title>User talk:DanTDMFan</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=User_talk:DanTDMFan&amp;diff=40178"/>
		<updated>2026-06-02T00:59:36Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: /* About Quickdelete */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hey. It&#039;s Enayy. I&#039;m shocked to see you&#039;ve forked from Fandom, but ultimately not surprised. Never really thought you&#039;d do something like that, and I didn&#039;t even know you were still active. Good job on your fork and I hope it suits your wiki well!&lt;br /&gt;
[[User:Adam|Adam]] ([[User talk:Adam|talk]]) 13:15, 6 June 2025 (UTC)&lt;br /&gt;
  &lt;br /&gt;
Thanks man. It&#039;s good to see you still around too. I hope Wikitubia is going well even though I won&#039;t always be active on there except where I made my comeback post back on may. [[User:DanTDMFan|DanTDMFan]] ([[User talk:DanTDMFan|talk]]) 15:15, 6 June 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Greetings from Mark ==&lt;br /&gt;
&lt;br /&gt;
Hellou Dan. Congratulations on the new wiki! Just wanted to pass by and say hello. If you need help with the wiki at any time, I&#039;ll be more than happy to lend a hand. ~ Markus, &amp;lt;span style=&amp;quot;font-family:&#039;Open Sans&#039;,&#039;Noto Sans&#039;,sans-serif;font-size: 125%&amp;quot;&amp;gt;[[User:Headquarter8302|Headquarter]][[User talk:Headquarter8302|8302]]&amp;lt;/span&amp;gt; 07:39, 7 June 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
Hey Mark. And thank you. I&#039;ll be sure to let you know! [[User:DanTDMFan|DanTDMFan]] ([[User talk:DanTDMFan|talk]]) 08:02, 7 June 2025 (UTC)&lt;br /&gt;
&lt;br /&gt;
== old videos to add ==&lt;br /&gt;
&lt;br /&gt;
hello DanTDMfan! I&#039;ve seen you&#039;ve been adding some recent videos and came here to ask; If you have time, do you wanna add a bunch of old DanTDM videos to the wiki? I have made a list of them at [[Category talk:Video Pages#DGMO&#039;s undocumented videos 1|Category talk:Video Pages]].&lt;br /&gt;
&lt;br /&gt;
and you don&#039;t really have to worry about the Tomodachi Life uploads as I am already covering the basics of them as they come out.&lt;br /&gt;
&lt;br /&gt;
It is a lot, but i&#039;d be really happy to see all of these on the wiki. Best regards, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 02:58, 29 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Sure. once i have the freetime that is. i&#039;ve been quite busy the past few days so i&#039;ll come around and add maybe around 5 to 10 videos eventually. But thank you for the list. I&#039;ll make use of it soon. &amp;lt;b style=&#039;background:#28282B;border;4px solid blue;padding:3px;margin:2px;color:blue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(90deg, pink, pink, blue, pink, blue, pink); -webkit-background-clip:text !important; -webkit-text-fill-color:transparent;&amp;gt;[[User:DanTDMFan|&amp;lt;b style=&amp;quot;color:blue;&amp;quot;&amp;gt;DanTDMFan&amp;lt;/b&amp;gt;]] - ([[User_talk:DanTDMFan|talk]]) &amp;lt;b style=&amp;quot;color:lightblue;font-size:7px;&amp;quot;&amp;gt;(ADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 04:46, 29 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== About Quickdelete ==&lt;br /&gt;
&lt;br /&gt;
hello DanTDMfan. I just wanna know if you are okay with me using the &amp;quot;Quickdelete&amp;quot; template on pages that still haven&#039;t gotten deleted after 3 Months. they are pages that I think are unnecessary for the wiki. thanks, [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 19:57, 1 June 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Sure, go ahead. &amp;lt;b style=&#039;background:#28282B;border;4px solid blue;padding:3px;margin:2px;color:blue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(90deg, pink, pink, blue, pink, blue, pink); -webkit-background-clip:text !important; -webkit-text-fill-color:transparent;&amp;gt;[[User:DanTDMFan|&amp;lt;b style=&amp;quot;color:blue;&amp;quot;&amp;gt;DanTDMFan&amp;lt;/b&amp;gt;]] - ([[User_talk:DanTDMFan|talk]]) &amp;lt;b style=&amp;quot;color:lightblue;font-size:7px;&amp;quot;&amp;gt;(ADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 22:31, 1 June 2026 (UTC)&lt;br /&gt;
:I have no issues with use of the template either, I think linking them on [[DanTDM_Wiki:Candidates_for_deletion]] would show more benefit than a template tho (I tried keeping up and clearing the backlog a few days ago). Most articles you propose I agreed for deletion, but seems I missed a few of your proposals so apologies for that.. Thank you for your continued work and dedication here tho! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 00:59, 2 June 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=UNCS&amp;diff=40141</id>
		<title>UNCS</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=UNCS&amp;diff=40141"/>
		<updated>2026-05-31T20:39:07Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Created page with &amp;quot;{{Stub}}{{YouTube_Channel |title = UNCS |image1 = UNCS.jpg |id = [https://www.youtube.com/4UNCS 4UNCS] |username = &amp;lt;span class=&amp;quot;g-ytsubscribe&amp;quot; data-channelid=&amp;quot;UCh-94h_0caBC9Veo5natk5w&amp;quot; data-layout=&amp;quot;default&amp;quot; data-count=&amp;quot;default&amp;quot;&amp;gt;&amp;lt;/span&amp;gt; |status = Inactive |inactive = |owner(s) = Daniel Middleton, Thnxcya, Thinknoodles and IBallisticSquid |creation = May 14, 2026 |schedule = Every Sunday |videos = 1 }} UNCS is a channel created May 14, 2026 with the first upload being...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}{{YouTube_Channel&lt;br /&gt;
|title = UNCS&lt;br /&gt;
|image1 = UNCS.jpg&lt;br /&gt;
|id = [https://www.youtube.com/4UNCS 4UNCS]&lt;br /&gt;
|username = &amp;lt;span class=&amp;quot;g-ytsubscribe&amp;quot; data-channelid=&amp;quot;UCh-94h_0caBC9Veo5natk5w&amp;quot; data-layout=&amp;quot;default&amp;quot; data-count=&amp;quot;default&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
|status = Inactive&lt;br /&gt;
|inactive =&lt;br /&gt;
|owner(s) = [[Daniel Middleton]], Thnxcya, Thinknoodles and IBallisticSquid&lt;br /&gt;
|creation = May 14, 2026&lt;br /&gt;
|schedule = Every Sunday&lt;br /&gt;
|videos = 1&lt;br /&gt;
}}&lt;br /&gt;
UNCS is a channel created May 14, 2026 with the first upload being  May 31st, 2026.&lt;br /&gt;
&lt;br /&gt;
It is a group owned channel by [[Daniel Middleton]], Thnxcya, Thinknoodles and IBallisticSquid&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=File:UNCS.jpg&amp;diff=40140</id>
		<title>File:UNCS.jpg</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=File:UNCS.jpg&amp;diff=40140"/>
		<updated>2026-05-31T20:38:56Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The profile picture for the youtube channel UNCS&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Template:Video&amp;diff=40116</id>
		<title>Template:Video</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Template:Video&amp;diff=40116"/>
		<updated>2026-05-29T06:08:01Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Edited parser function to detect youtube embed instead of &amp;lt;youtube&amp;gt; tag lol cross fingers&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;infobox&amp;gt;&lt;br /&gt;
  &amp;lt;title source=&amp;quot;title&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;default&amp;gt;{{PAGENAME}}&amp;lt;/default&amp;gt;&lt;br /&gt;
  &amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;image&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;caption source=&amp;quot;caption1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;publish_date&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Publish date&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;channel&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Channel&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;viewers&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Viewers&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;likes&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;label&amp;gt;Likes&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;game&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Game&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;group layout=&amp;quot;horizontal&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;data source=&amp;quot;previous&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Previous&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&lt;br /&gt;
         &amp;lt;data source=&amp;quot;next&amp;quot;&amp;gt;&amp;lt;label&amp;gt;&#039;&#039;&#039;Next&#039;&#039;&#039;&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&lt;br /&gt;
         &amp;lt;/group&amp;gt;&lt;br /&gt;
         &amp;lt;group collapse=&amp;quot;open&amp;quot;&amp;gt;&lt;br /&gt;
             &amp;lt;/group&amp;gt;&lt;br /&gt;
&amp;lt;/infobox&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
Example usage:&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Video&lt;br /&gt;
|title=Example&lt;br /&gt;
|image=&amp;lt;youtube width=&amp;quot;250&amp;quot; height=&amp;quot;170&amp;quot;&amp;gt;VIDEOID/URL&amp;lt;/youtube&amp;gt;&lt;br /&gt;
|caption1=Example&lt;br /&gt;
|publish_date=Example&lt;br /&gt;
|channel=Example&lt;br /&gt;
|game=Example&lt;br /&gt;
|viewers=Example&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{image|}}} |&lt;br /&gt;
  {{#if: {{#pos: {{{image}}} | UNIQ--youtube- }}&lt;br /&gt;
    |&lt;br /&gt;
    [[Category:Video pages with no video tag]]&lt;br /&gt;
  }}&lt;br /&gt;
| [[Category:Video pages with no video tag]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Template:Video&amp;diff=40115</id>
		<title>Template:Video</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Template:Video&amp;diff=40115"/>
		<updated>2026-05-29T05:40:23Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Hopefully this works sob&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;infobox&amp;gt;&lt;br /&gt;
  &amp;lt;title source=&amp;quot;title&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;default&amp;gt;{{PAGENAME}}&amp;lt;/default&amp;gt;&lt;br /&gt;
  &amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;image&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;caption source=&amp;quot;caption1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;publish_date&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Publish date&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;channel&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Channel&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;viewers&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Viewers&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;likes&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;label&amp;gt;Likes&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;game&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Game&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;group layout=&amp;quot;horizontal&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;data source=&amp;quot;previous&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Previous&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&lt;br /&gt;
         &amp;lt;data source=&amp;quot;next&amp;quot;&amp;gt;&amp;lt;label&amp;gt;&#039;&#039;&#039;Next&#039;&#039;&#039;&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&lt;br /&gt;
         &amp;lt;/group&amp;gt;&lt;br /&gt;
         &amp;lt;group collapse=&amp;quot;open&amp;quot;&amp;gt;&lt;br /&gt;
             &amp;lt;/group&amp;gt;&lt;br /&gt;
&amp;lt;/infobox&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
Example usage:&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Video&lt;br /&gt;
|title=Example&lt;br /&gt;
|image=&amp;lt;youtube width=&amp;quot;250&amp;quot; height=&amp;quot;170&amp;quot;&amp;gt;VIDEOID/URL&amp;lt;/youtube&amp;gt;&lt;br /&gt;
|caption1=Example&lt;br /&gt;
|publish_date=Example&lt;br /&gt;
|channel=Example&lt;br /&gt;
|game=Example&lt;br /&gt;
|viewers=Example&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{image|}}} |&lt;br /&gt;
  {{#ifeq: {{#pos: {{{image}}} | &amp;lt;youtube }} | &lt;br /&gt;
    | [[Category:Video pages with no video tag]]&lt;br /&gt;
    |&lt;br /&gt;
  }}&lt;br /&gt;
| [[Category:Video pages with no video tag]]&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Category:Video_pages_with_no_video_tag&amp;diff=40114</id>
		<title>Category:Video pages with no video tag</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Category:Video_pages_with_no_video_tag&amp;diff=40114"/>
		<updated>2026-05-29T05:33:21Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: wip&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;: This category does not list videos properly yet, check back soon soz &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 05:33, 29 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A list set by [[Template:Video]] for [[:Category:Video_Pages|video pages]] that do not include the &amp;lt;nowiki&amp;gt;&amp;lt;youtube&amp;gt;&amp;lt;/nowiki&amp;gt; tag.&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Template:Video&amp;diff=40113</id>
		<title>Template:Video</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Template:Video&amp;diff=40113"/>
		<updated>2026-05-29T05:25:06Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Video pages without the &amp;lt;youtube&amp;gt; tag now displayed under Category:Video pages with no video tag&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;infobox&amp;gt;&lt;br /&gt;
  &amp;lt;title source=&amp;quot;title&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;default&amp;gt;{{PAGENAME}}&amp;lt;/default&amp;gt;&lt;br /&gt;
  &amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;image&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;caption source=&amp;quot;caption1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;publish_date&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Publish date&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;channel&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Channel&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;viewers&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Viewers&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;likes&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;label&amp;gt;Likes&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;data source=&amp;quot;game&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;label&amp;gt;Game&amp;lt;/label&amp;gt;&lt;br /&gt;
  &amp;lt;/data&amp;gt;&lt;br /&gt;
  &amp;lt;group layout=&amp;quot;horizontal&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;data source=&amp;quot;previous&amp;quot;&amp;gt;&amp;lt;label&amp;gt;Previous&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&lt;br /&gt;
         &amp;lt;data source=&amp;quot;next&amp;quot;&amp;gt;&amp;lt;label&amp;gt;&#039;&#039;&#039;Next&#039;&#039;&#039;&amp;lt;/label&amp;gt;&amp;lt;/data&amp;gt;&lt;br /&gt;
         &amp;lt;/group&amp;gt;&lt;br /&gt;
         &amp;lt;group collapse=&amp;quot;open&amp;quot;&amp;gt;&lt;br /&gt;
             &amp;lt;/group&amp;gt;&lt;br /&gt;
&amp;lt;/infobox&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
Example usage:&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Video&lt;br /&gt;
|title=Example&lt;br /&gt;
|image=&amp;lt;youtube width=&amp;quot;250&amp;quot; height=&amp;quot;170&amp;quot;&amp;gt;VIDEOID/URL&amp;lt;/youtube&amp;gt;&lt;br /&gt;
|caption1=Example&lt;br /&gt;
|publish_date=Example&lt;br /&gt;
|channel=Example&lt;br /&gt;
|game=Example&lt;br /&gt;
|viewers=Example&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#if: {{#pos: {{{image|}}} | &amp;lt;youtube }} | | [[Category:Video pages with no video tag]] }}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=ChemicalDork&amp;diff=40049</id>
		<title>ChemicalDork</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=ChemicalDork&amp;diff=40049"/>
		<updated>2026-05-24T17:08:14Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: The channel was indeed 2006 not 2010 :D&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{YouTube_Channel&lt;br /&gt;
|title = ChemicalDork&lt;br /&gt;
|image1 = Chemical Dork.jpg&lt;br /&gt;
|id = [https://www.youtube.com/cutoutanimations ChemicalDork]&lt;br /&gt;
|username = &amp;lt;span class=&amp;quot;g-ytsubscribe&amp;quot; data-channelid=&amp;quot;UCBQrN7_d_YFS2RzdPR5Byxg&amp;quot; data-layout=&amp;quot;default&amp;quot; data-count=&amp;quot;default&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
|status = Inactive&lt;br /&gt;
|inactive =&lt;br /&gt;
|owner(s) = [[Daniel Middleton]]&lt;br /&gt;
|creation = December 27, 2006&lt;br /&gt;
|schedule = Unscheduled&lt;br /&gt;
|subscribers = &lt;br /&gt;
|videos = 10&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;ChemicalDork&#039;&#039;&#039; also referred to as &#039;&#039;&#039;cutoutanimations&#039;&#039;&#039; is the first channel created by [[Daniel Middleton]]. The channel was made in December 2006. This channel was mainly about Dan, his brother, and his step-brother making random videos together like cardboard animations, music, concerts, etc.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
On December 27, 2006, Dan created his first animation video called &amp;quot;STOP!&amp;quot; which was made on March 27. 2006. It was a frame-by-frame animation created by Daniel Middleton, Ryan Middleton, and Ryan Witham. He also used to create another animation on this channel of a character named Sid. Sid was a character that was made by Dan. Dan used to love making animations back in the years when this channel was first active. &lt;br /&gt;
=== Content ===&lt;br /&gt;
This channel was focused on very old videos of Dan and also his first animations. There were also other games he used to play which is Guitar Hero 3. And finally, a little bit of music bands such as &#039;&#039;The Chemical Romance&#039;&#039; and &#039;&#039;Band of Brothers&#039;&#039; (B.O.B) which was about B.O.B performing in their studio. As of April 13, 2008, the channel was left abandoned and the new channel was moved to [[PokemanDanLv45]] then later his new [[DanTDM (channel)|main channel]].&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|+ List of Videos&lt;br /&gt;
|-&lt;br /&gt;
! Title !! Views !! Uploaded&lt;br /&gt;
|-&lt;br /&gt;
| STOP! - Made March 27th 2006 || 12k || Dec 27, 2006&lt;br /&gt;
|-&lt;br /&gt;
| Animation Test.. || 4k || Jan 5, 2007&lt;br /&gt;
|-&lt;br /&gt;
| Sid Skateboard || 3k || Jan 6, 2007&lt;br /&gt;
|-&lt;br /&gt;
| Sid&#039;s PSP || 2.5k || Jan 6, 2007&lt;br /&gt;
|-&lt;br /&gt;
| Sid&#039;s Paper Round || 4k || Jan 7, 2007&lt;br /&gt;
|-&lt;br /&gt;
| My Chemical Romance - The End/Dead LIVE || 12.5k || Mar 31, 2007&lt;br /&gt;
|-&lt;br /&gt;
| Silent Green (Blu) || 2.7k || Apr 14, 2007&lt;br /&gt;
|-&lt;br /&gt;
| Band of Brothers In The Studio || 6.2k || Jul 10, 2007&lt;br /&gt;
|-&lt;br /&gt;
| Guitar Hero 3: Dragonforce - Expert || 6k || Dec 18, 2007&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Channels]]&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Talk:DanTDM_Wiki/Proposal&amp;diff=40048</id>
		<title>Talk:DanTDM Wiki/Proposal</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Talk:DanTDM_Wiki/Proposal&amp;diff=40048"/>
		<updated>2026-05-24T16:27:30Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: /* Wiki homepage redesign 2026 */ Reply&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Wiki homepage redesign 2026 ==&lt;br /&gt;
&lt;br /&gt;
Spent awhile yesterday putting together a complete potential rework of the current wikis homepage and am proposing it here for votes and opinions first. The proposed changes can be found [[DanTDM Wiki/Proposal]].&lt;br /&gt;
&lt;br /&gt;
This proposal is open to changes if you some reply below as well as mention if you support or are opposed to this by using:&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Support}} your reason here&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Oppose}} your reason here&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thank you, I plan to leave this open for a week unless a clear consensus has been made! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:44, 23 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Since the core people responded I think it&#039;s fair mark this proposal as a success, I have made the changes to the Mainpage. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 16:27, 24 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
{{Support}} I already knew my answer but I support this because the main page hasn&#039;t been updated since the forking in 2025 and to update the information also. So, it&#039;d be great to renovate the main page after 3 years and more. &amp;lt;b style=&#039;background:#28282B;border;4px solid blue;padding:3px;margin:2px;color:blue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;background:linear-gradient(90deg, pink, pink, blue, pink, blue, pink); -webkit-background-clip:text !important; -webkit-text-fill-color:transparent;&amp;gt;[[User:DanTDMFan|&amp;lt;b style=&amp;quot;color:blue;&amp;quot;&amp;gt;DanTDMFan&amp;lt;/b&amp;gt;]] - ([[User_talk:DanTDMFan|talk]])&lt;br /&gt;
&amp;lt;b style=&amp;quot;color:lightblue;font-size:7px;&amp;quot;&amp;gt;(ADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:49, 23 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
{{Support}} I also agree to this change. [[User:DGMO|DGMO]] ([[User talk:DGMO|talk]]) 20:52, 23 May 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=40047</id>
		<title>MediaWiki:Sitenotice</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=40047"/>
		<updated>2026-05-24T16:26:43Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Common.css&amp;diff=40046</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Common.css&amp;diff=40046"/>
		<updated>2026-05-24T16:26:09Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Changing @import of CSS files (I don&amp;#039;t think it worked previously lol)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
@import &amp;quot;/index.php?title=MediaWiki:Badges.css&amp;amp;action=raw&amp;amp;ctype=text/css&amp;quot;;&lt;br /&gt;
@import &amp;quot;/index.php?title=MediaWiki:Mainpage.css&amp;amp;action=raw&amp;amp;ctype=text/css&amp;quot;;&lt;br /&gt;
@import url(&#039;https://fonts.googleapis.com/css2?family=Permanent+Marker&amp;amp;display=swap&#039;);&lt;br /&gt;
@import url(&amp;quot;/index.php?title=MediaWiki:Staff.css&amp;amp;action=raw&amp;amp;ctype=text/css&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
.portable-infobox .tabber__tabs {&lt;br /&gt;
    max-width: 255px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.external-link:after {&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.profile-externalLinks svg {&lt;br /&gt;
    background: cyan;&lt;br /&gt;
    border-radius: 5px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.profile-user-group {&lt;br /&gt;
    background: transparent;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
    color: white !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.profile-masthead {&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    border-radius: 25px;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-frame {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-thread-top {&lt;br /&gt;
    background: #3c437b !important;&lt;br /&gt;
    border: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-leftside a {&lt;br /&gt;
    color: #7f75e9;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-category-list tr, .mw-wikiforum-forum-list tr {&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-header-row {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-normal {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-thread-list {&lt;br /&gt;
    border: 1px solid cyan !important;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-thread-main, .mw-wikiforum-thread-sub {&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
    border-bottom: 1px solid cyan !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* === YIWA Template === */&lt;br /&gt;
&lt;br /&gt;
.yiwa-template {&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
    border: 2px solid #00cfff !important;&lt;br /&gt;
    border-radius: 8px;&lt;br /&gt;
    margin: 1em 0;&lt;br /&gt;
    box-shadow: 0 0 12px rgba(0, 207, 255, 0.15);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-logo {&lt;br /&gt;
    background: #010314 !important;&lt;br /&gt;
    border-right: 2px solid rgba(0, 207, 255, 0.3) !important&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.yiwaWording {&lt;br /&gt;
    font-size: 1.4em;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    letter-spacing: 0.12em;&lt;br /&gt;
    color: #ffffff !important;&lt;br /&gt;
    text-shadow: 0 0 8px rgba(0, 207, 255, 0.6);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-intro {&lt;br /&gt;
    color: #e2f1ff !important;&lt;br /&gt;
    line-height: 1.5;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-intro a {&lt;br /&gt;
    color: #00cfff !important; &lt;br /&gt;
    font-weight: 700;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-intro a:hover {&lt;br /&gt;
    color: #ffffff !important; &lt;br /&gt;
    text-decoration: underline !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list {&lt;br /&gt;
    column-width: 220px;&lt;br /&gt;
    column-gap: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list ul,&lt;br /&gt;
#yiwa-list li {&lt;br /&gt;
    list-style: none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list li {&lt;br /&gt;
    margin: 0.4em 0;&lt;br /&gt;
    break-inside: avoid;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list img {&lt;br /&gt;
    vertical-align: middle;&lt;br /&gt;
    margin-right: 6px;&lt;br /&gt;
    image-rendering: pixelated;&lt;br /&gt;
    filter: drop-shadow(0 0 2px rgba(0, 207, 255, 0.2)); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alliance Link Overrides */&lt;br /&gt;
#yiwa-list a {&lt;br /&gt;
    color: #ccecff !important;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list a:hover {&lt;br /&gt;
    color: #00cfff !important;&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.yiwaWording span {&lt;br /&gt;
    color: #00cfff !important; &lt;br /&gt;
    font-weight: 900;&lt;br /&gt;
    font-size: 40px;&lt;br /&gt;
    text-shadow: 0 0 10px #00cfff; &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.ext-discussiontools-ui-replyWidget-preview {&lt;br /&gt;
    background: #1f2453;&lt;br /&gt;
}&lt;br /&gt;
.ve-ce-surface.notranslate.mw-editfont-monospace {&lt;br /&gt;
    color: black;&lt;br /&gt;
}&lt;br /&gt;
.ext-discussiontools-init-targetcomment {&lt;br /&gt;
    background-color:transparent !important;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
.oo-ui-toolbar-bar {&lt;br /&gt;
    background: #282a4f !important;&lt;br /&gt;
}&lt;br /&gt;
.ext-discussiontools-ui-replyWidget-preview {&lt;br /&gt;
    background: #282a4f;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Common.css&amp;diff=40045</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Common.css&amp;diff=40045"/>
		<updated>2026-05-24T16:02:00Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Trying to load Mainpage.css from Common and updating YIWA template style&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
@import &amp;quot;/load.php?mode=articles&amp;amp;articles=MediaWiki:Badges.css&amp;amp;only=styles&amp;quot;;&lt;br /&gt;
@import &amp;quot;/load.php?mode=articles&amp;amp;articles=MediaWiki:Mainpage.css&amp;amp;only=styles&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
@import url(&#039;https://fonts.googleapis.com/css2?family=Permanent+Marker&amp;amp;display=swap&#039;);&lt;br /&gt;
&lt;br /&gt;
/* Staff Names */&lt;br /&gt;
@import url(&amp;quot;/load.php?mode=articles&amp;amp;articles=MediaWiki:Staff.css&amp;amp;only=styles&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
.portable-infobox .tabber__tabs {&lt;br /&gt;
    max-width: 255px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.external-link:after {&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.profile-externalLinks svg {&lt;br /&gt;
    background: cyan;&lt;br /&gt;
    border-radius: 5px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.profile-user-group {&lt;br /&gt;
    background: transparent;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
    color: white !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.profile-masthead {&lt;br /&gt;
    padding: 5px;&lt;br /&gt;
    border-radius: 25px;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-frame {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-thread-top {&lt;br /&gt;
    background: #3c437b !important;&lt;br /&gt;
    border: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-leftside a {&lt;br /&gt;
    color: #7f75e9;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-wikiforum-category-list tr, .mw-wikiforum-forum-list tr {&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-header-row {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-normal {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-thread-list {&lt;br /&gt;
    border: 1px solid cyan !important;&lt;br /&gt;
}&lt;br /&gt;
.mw-wikiforum-thread-main, .mw-wikiforum-thread-sub {&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
    border-bottom: 1px solid cyan !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* === YIWA Template === */&lt;br /&gt;
&lt;br /&gt;
.yiwa-template {&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
    border: 2px solid #00cfff !important;&lt;br /&gt;
    border-radius: 8px;&lt;br /&gt;
    margin: 1em 0;&lt;br /&gt;
    box-shadow: 0 0 12px rgba(0, 207, 255, 0.15);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-logo {&lt;br /&gt;
    background: #010314 !important;&lt;br /&gt;
    border-right: 2px solid rgba(0, 207, 255, 0.3) !important&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.yiwaWording {&lt;br /&gt;
    font-size: 1.4em;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    letter-spacing: 0.12em;&lt;br /&gt;
    color: #ffffff !important;&lt;br /&gt;
    text-shadow: 0 0 8px rgba(0, 207, 255, 0.6);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-intro {&lt;br /&gt;
    color: #e2f1ff !important;&lt;br /&gt;
    line-height: 1.5;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-intro a {&lt;br /&gt;
    color: #00cfff !important; &lt;br /&gt;
    font-weight: 700;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-intro a:hover {&lt;br /&gt;
    color: #ffffff !important; &lt;br /&gt;
    text-decoration: underline !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list {&lt;br /&gt;
    column-width: 220px;&lt;br /&gt;
    column-gap: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list ul,&lt;br /&gt;
#yiwa-list li {&lt;br /&gt;
    list-style: none;&lt;br /&gt;
    margin: 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list li {&lt;br /&gt;
    margin: 0.4em 0;&lt;br /&gt;
    break-inside: avoid;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list img {&lt;br /&gt;
    vertical-align: middle;&lt;br /&gt;
    margin-right: 6px;&lt;br /&gt;
    image-rendering: pixelated;&lt;br /&gt;
    filter: drop-shadow(0 0 2px rgba(0, 207, 255, 0.2)); &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Alliance Link Overrides */&lt;br /&gt;
#yiwa-list a {&lt;br /&gt;
    color: #ccecff !important;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#yiwa-list a:hover {&lt;br /&gt;
    color: #00cfff !important;&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.yiwaWording span {&lt;br /&gt;
    color: #00cfff !important; &lt;br /&gt;
    font-weight: 900;&lt;br /&gt;
    font-size: 40px;&lt;br /&gt;
    text-shadow: 0 0 10px #00cfff; &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.ext-discussiontools-ui-replyWidget-preview {&lt;br /&gt;
    background: #1f2453;&lt;br /&gt;
}&lt;br /&gt;
.ve-ce-surface.notranslate.mw-editfont-monospace {&lt;br /&gt;
    color: black;&lt;br /&gt;
}&lt;br /&gt;
.ext-discussiontools-init-targetcomment {&lt;br /&gt;
    background-color:transparent !important;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
.oo-ui-toolbar-bar {&lt;br /&gt;
    background: #282a4f !important;&lt;br /&gt;
}&lt;br /&gt;
.ext-discussiontools-ui-replyWidget-preview {&lt;br /&gt;
    background: #282a4f;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Mainpage.css&amp;diff=40044</id>
		<title>MediaWiki:Mainpage.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Mainpage.css&amp;diff=40044"/>
		<updated>2026-05-24T15:51:42Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Stylesheet for updated mainpage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Base Reset and Scope Context matching Vector 2010 Theme */&lt;br /&gt;
.mainpage-container {&lt;br /&gt;
    max-width: 1450px;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
    font-family: Inter, system-ui, -apple-system, sans-serif;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Base Link Global Overrides to safeguard against default styles */&lt;br /&gt;
.mainpage-container a,&lt;br /&gt;
.mainpage-container a:link,&lt;br /&gt;
.mainpage-container a:visited {&lt;br /&gt;
    color: #00cfff !important;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
}&lt;br /&gt;
.mainpage-container a:hover {&lt;br /&gt;
    color: #ffffff !important;&lt;br /&gt;
    text-decoration: underline !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-notice {&lt;br /&gt;
    border: 1px solid #00cfff;&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    color: #d9f5ff;&lt;br /&gt;
    padding: 12px;&lt;br /&gt;
    margin: 10px 0 18px 0;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    font-size: 0.95em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Banner Backdrop and Overlay Integration Rules */&lt;br /&gt;
.mp-hero {&lt;br /&gt;
    position: relative;&lt;br /&gt;
    display: flex;&lt;br /&gt;
    flex-wrap: wrap;&lt;br /&gt;
    justify-content: space-between;&lt;br /&gt;
    align-items: center;&lt;br /&gt;
    gap: 20px;&lt;br /&gt;
    background-image: url(&#039;https://dantdm.wiki/images/dantdmwiki/1/13/DanTDM2022Banner.jpg&#039;);&lt;br /&gt;
    background-size: cover;&lt;br /&gt;
    background-position: center;&lt;br /&gt;
    border: 1px solid #00cfff;&lt;br /&gt;
    padding: 30px;&lt;br /&gt;
    margin-bottom: 20px;&lt;br /&gt;
    color: white;&lt;br /&gt;
    overflow: hidden;&lt;br /&gt;
    z-index: 1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-hero-overlay {&lt;br /&gt;
    position: absolute;&lt;br /&gt;
    top: 0;&lt;br /&gt;
    left: 0;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    background: linear-gradient(135deg, rgba(2, 5, 35, 0.88) 0%, rgba(16, 37, 63, 0.72) 100%);&lt;br /&gt;
    backdrop-filter: blur(2px);&lt;br /&gt;
    -webkit-backdrop-filter: blur(2px);&lt;br /&gt;
    z-index: -1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-hero-left {&lt;br /&gt;
    flex: 1;&lt;br /&gt;
    min-width: 320px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-logo-wrapper {&lt;br /&gt;
    margin-bottom: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-hero-left h1 {&lt;br /&gt;
    border: none !important;&lt;br /&gt;
    font-size: 2.5em;&lt;br /&gt;
    font-weight: 800;&lt;br /&gt;
    margin: 4px 0 12px 0;&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    color: #ffffff;&lt;br /&gt;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-tagline {&lt;br /&gt;
    font-size: 1.08em;&lt;br /&gt;
    line-height: 1.7;&lt;br /&gt;
    max-width: 760px;&lt;br /&gt;
    color: #e2f1ff;&lt;br /&gt;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-actions {&lt;br /&gt;
    margin-top: 20px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-actions a,&lt;br /&gt;
.mp-actions a:link,&lt;br /&gt;
.mp-actions a:visited {&lt;br /&gt;
    display: inline-block;&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
    color: #00cfff !important;&lt;br /&gt;
    text-decoration: none !important;&lt;br /&gt;
    padding: 10px 16px;&lt;br /&gt;
    margin: 0 8px 8px 0;&lt;br /&gt;
    font-weight: 700;&lt;br /&gt;
    border: 1px solid #00cfff;&lt;br /&gt;
    transition: background 0.2s, color 0.2s;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-actions a:hover {&lt;br /&gt;
    background: #00cfff !important;&lt;br /&gt;
    color: #020523 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Stats Styling Rules */&lt;br /&gt;
.mp-stats {&lt;br /&gt;
    width: 300px;&lt;br /&gt;
    display: grid;&lt;br /&gt;
    grid-template-columns: repeat(2, 1fr);&lt;br /&gt;
    gap: 12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-stat {&lt;br /&gt;
    background: rgba(2, 5, 35, 0.75);&lt;br /&gt;
    border: 1px solid #00cfff;&lt;br /&gt;
    padding: 16px 10px;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    backdrop-filter: blur(4px);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-stat-value {&lt;br /&gt;
    font-size: 2.1em;&lt;br /&gt;
    color: #00cfff;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-stat-text {&lt;br /&gt;
    margin-top: 4px;&lt;br /&gt;
    font-size: 0.9em;&lt;br /&gt;
    text-transform: uppercase;&lt;br /&gt;
    letter-spacing: 0.5px;&lt;br /&gt;
    color: #ccecff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Sections &amp;amp; Universal Title Elements */&lt;br /&gt;
.mp-section {&lt;br /&gt;
    margin-bottom: 24px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-section-title {&lt;br /&gt;
    background: linear-gradient(90deg, #020523 0%, #16385f 100%);&lt;br /&gt;
    color: white;&lt;br /&gt;
    padding: 12px 16px;&lt;br /&gt;
    font-size: 1.15em;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    margin-bottom: 12px;&lt;br /&gt;
    border-left: 3px solid #00cfff;&lt;br /&gt;
    border-bottom: 1px solid #00cfff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-title-diamond {&lt;br /&gt;
    color: #00cfff;&lt;br /&gt;
    margin-right: 4px;&lt;br /&gt;
    font-size: 0.95em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-card-grid {&lt;br /&gt;
    display: grid;&lt;br /&gt;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));&lt;br /&gt;
    gap: 14px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Portal Navigation Display Cards */&lt;br /&gt;
.nav-portal-item {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: 1px solid rgba(0, 207, 255, 0.3);&lt;br /&gt;
    overflow: hidden;&lt;br /&gt;
    transition: transform 0.2s, border-color 0.2s;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.nav-portal-item:hover {&lt;br /&gt;
    transform: translateY(-2px);&lt;br /&gt;
    border-color: #00cfff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.nav-portal-item-image img {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    height: auto;&lt;br /&gt;
    display: block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.nav-portal-item-subtitle {&lt;br /&gt;
    padding: 12px;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    font-weight: 600;&lt;br /&gt;
    background: rgba(22, 56, 95, 0.4);&lt;br /&gt;
    border-top: 1px solid rgba(0, 207, 255, 0.2);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Dynamic Multi-Column Hub Framework */&lt;br /&gt;
.mp-columns-layout {&lt;br /&gt;
    display: flex;&lt;br /&gt;
    gap: 18px;&lt;br /&gt;
    margin-bottom: 22px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-left-column {&lt;br /&gt;
    flex: 2;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-right-column {&lt;br /&gt;
    flex: 1;&lt;br /&gt;
    min-width: 320px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-panel {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: 1px solid rgba(0, 207, 255, 0.3);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-panel-discord {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: 1px solid #00cfff;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-discord-body {&lt;br /&gt;
    padding: 12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-nav-grid {&lt;br /&gt;
    display: grid;&lt;br /&gt;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));&lt;br /&gt;
    gap: 10px;&lt;br /&gt;
    padding: 14px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-nav-item {&lt;br /&gt;
    background: rgba(22, 56, 95, 0.3);&lt;br /&gt;
    border: 1px solid rgba(0, 207, 255, 0.2);&lt;br /&gt;
    border-left: 4px solid #00cfff;&lt;br /&gt;
    padding: 12px;&lt;br /&gt;
    font-weight: 600;&lt;br /&gt;
    transition: background 0.2s, border-color 0.2s;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mp-nav-item:hover {&lt;br /&gt;
    background: rgba(22, 56, 95, 0.6);&lt;br /&gt;
    border-color: #00cfff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Footer Styling Rules */&lt;br /&gt;
.mp-footer {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: 1px solid #00cfff;&lt;br /&gt;
    padding: 16px;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    color: #d5dce5;&lt;br /&gt;
    font-size: 0.95em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Responsive Adaptive Viewport Adjustments */&lt;br /&gt;
@media (max-width: 950px) {&lt;br /&gt;
    .mp-columns-layout {&lt;br /&gt;
        flex-direction: column;&lt;br /&gt;
    }&lt;br /&gt;
    .mp-right-column {&lt;br /&gt;
        width: 100%;&lt;br /&gt;
    }&lt;br /&gt;
    .mp-hero {&lt;br /&gt;
        padding: 20px;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
@media (max-width: 650px) {&lt;br /&gt;
    .mp-stats {&lt;br /&gt;
        width: 100%;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=DanTDM_Wiki&amp;diff=40043</id>
		<title>DanTDM Wiki</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=DanTDM_Wiki&amp;diff=40043"/>
		<updated>2026-05-24T15:51:31Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Proposal seems to of passed updating mainpage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title=The DanTDM Wiki – Everything About the YouTuber DanTDM&lt;br /&gt;
|description=The DanTDM Wiki, The ultimate fan resource for DanTDM, covering everything from videos to behind-the-scenes info.&lt;br /&gt;
|image=DanTDMWikiIcon.png&lt;br /&gt;
}}&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&amp;lt;div class=&amp;quot;mainpage-container&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-overlay&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-left&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-logo-wrapper&amp;quot;&amp;gt;[[File:Site-logo.png|120px|center|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;Welcome to the DanTDM Wiki&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-tagline&amp;quot;&amp;gt;&lt;br /&gt;
The fan-made encyclopedia dedicated to [[DanTDM]], his videos, Minecraft series, characters, mods, livestreams, and community history.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-actions&amp;quot;&amp;gt;&lt;br /&gt;
[[Special:NewPage|New Article]]&lt;br /&gt;
[[Special:AllPages|Browse Articles]]&lt;br /&gt;
[[Special:RecentChanges|Recent Changes]]&lt;br /&gt;
[[DanTDM_Wiki:Rules|Wiki Rules]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stats&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFARTICLES}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Articles&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFFILES}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Files&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFUSERS}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Users&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFEDITS}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Edits&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-panel&amp;quot; style=&amp;quot;padding: 16px; margin-bottom: 18px; line-height: 1.6;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.5em; font-weight: bold; color: #00cfff; margin-bottom: 8px; border-bottom: 1px solid rgba(0, 207, 255, 0.3); padding-bottom: 4px;&amp;quot;&amp;gt;Who is DanTDM?&amp;lt;/div&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Daniel &#039;Robert&#039; Middleton&#039;&#039;&#039; (born: November 8, 1991), better known online as &#039;&#039;&#039;DanTDM&#039;&#039;&#039;, is an English online content creator, YouTuber, and Twitch streamer. &lt;br /&gt;
&lt;br /&gt;
While many know him for his Minecraft series and years, Dan actually began his YouTube journey all the way back in 2006 on channels like &#039;&#039;&#039;[[ChemicalDork]]&#039;&#039;&#039;. He later created [[PokemanDanLv45|PokemanDanLvl45]] in 2010 to review Pokémon cards, before launching &amp;quot;TheDiamondMinecart&amp;quot; in 2012. That channel eventually evolved into the legendary [[DanTDM (channel)|DanTDM]] channel we know today, becoming a cornerstone of the internet via [[Mod Showcases]], [[Custom Mod Adventure|Custom Mod Adventures]], and [[The Diamond Dimensions]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top: 12px; padding: 10px; background: rgba(0, 207, 255, 0.08); border-left: 3px solid #00cfff; font-size: 0.92em; color: #d9f5ff;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; DanTDM is not affiliated with or involved in the management of this wiki, though he has visited the site on video!&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;!-- VIDEOS &amp;amp; SERIES GRID --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section-title&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;mp-title-diamond&amp;quot;&amp;gt;♦&amp;lt;/span&amp;gt; Popular Videos &amp;amp; Series&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-card-grid&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-image&amp;quot;&amp;gt;[[File:TheDiamondDimensions.png|360px|link=The_Diamond_Dimensions]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-subtitle&amp;quot;&amp;gt;[[The_Diamond_Dimensions|Diamond Dimensions]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-image&amp;quot;&amp;gt;[[File:DanTDM_Plays_Minecraft.jpg|360px|link=DanTDM_Plays_Minecraft]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-subtitle&amp;quot;&amp;gt;[[DanTDM_Plays_Minecraft]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-image&amp;quot;&amp;gt;[[File:DanTDM-ModReview.png|360px|link=:Category:Mod_Showcases]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-subtitle&amp;quot;&amp;gt;[[:Category:Mod_Showcases]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- SIDE-BY-SIDE INTERACTION HUB (TOPICS + COMMUNITY MERGED LEFT, DISCORD RIGHT) --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-columns-layout&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- LEFT COLUMN CONTENT HUBS (2/3 Width) --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-left-column&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-panel&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section-title&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;mp-title-diamond&amp;quot;&amp;gt;♦&amp;lt;/span&amp;gt; Relevant Links&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-grid&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Dr Trayaurus]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Grim]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM_(channel)]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Custom Mod Adventure]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM_Wiki:About|About the Wiki]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM_Wiki:Staff|Staff Team]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Special:ListFiles|File Gallery]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{YIWA}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- RIGHT COLUMN CONTENT HUBS (1/3 Width) --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-right-column&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-panel-discord&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section-title&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;mp-title-diamond&amp;quot;&amp;gt;♦&amp;lt;/span&amp;gt; Discord Server&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-discord-body&amp;quot;&amp;gt;&lt;br /&gt;
{{DiscordIntegrator&lt;br /&gt;
| id = 1066830030451265566&lt;br /&gt;
| theme = dark&lt;br /&gt;
| width = 100%&lt;br /&gt;
| height = 370px&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-footer&amp;quot;&amp;gt;&lt;br /&gt;
This wiki was founded by &#039;&#039;&#039;Treepig slayer&#039;&#039;&#039; on February 1, 2014 and adopted by &#039;&#039;&#039;LostSnowDust&#039;&#039;&#039; on January 21, 2023 we then left Fandom and started self hosting since June 4th, 2025. Read more on the [[DanTDM_Wiki:About|About Page]].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Minecraft:_CUTE_MOB_MODELS!_-_Mod_Showcase_-_1.5&amp;diff=40039</id>
		<title>Minecraft: CUTE MOB MODELS! - Mod Showcase - 1.5</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Minecraft:_CUTE_MOB_MODELS!_-_Mod_Showcase_-_1.5&amp;diff=40039"/>
		<updated>2026-05-24T05:36:49Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Categories and an archived video upload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Video&lt;br /&gt;
|title=Minecraft - CUTE MOB MODELS! - Mod Showcase [1.5]&lt;br /&gt;
|image=[[File:Cute Mob Models.jpg|250x170px]]&lt;br /&gt;
|caption1=Video Thumbnail&lt;br /&gt;
|publish_date=Mar 19, 2013&lt;br /&gt;
|channel=[[DanTDM (channel)|DanTDM]]&lt;br /&gt;
|game=[[Minecraft]]&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;Minecraft | CUTE MOB MODELS! | Mod Showcase [1.5]&#039;&#039;&#039; is a deleted video in the [[Mod Showcases|Mod Showcase]] series by [[Daniel Middleton|Dan]]. &amp;lt;ref&amp;gt;https://web.archive.org/web/20130417030117/http://www.youtube.com/user/TheDiamondMinecart/videos&amp;lt;/ref&amp;gt; It was later age restricted by YouTube then deleted by DanTDM. &amp;lt;ref&amp;gt;https://youtu.be/QGRv852lpPk?si=txbB3Cz9t5O5ZDSc&amp;amp;t=331&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
This video features a Minecraft mod that changes the appearance of mobs inside of Minecraft to Japanese Anime style. Dan is found showcasing all the mobs changed by it.&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
*This video was the first and only known age restricted video of Dans. &lt;br /&gt;
*There is no official reupload of this video on Dans channel but it was retrived. &amp;lt;ref&amp;gt;[https://www.youtube.com/@dans.bathwater Dans.Bathwater] | https://www.youtube.com/watch?v=qTB0x1w8JO8 ([https://archive.org/details/minecraft-cute-mob-models-mod-showcase-1.5-tdm-x-3364hv archived])&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
[[Category:2013 Videos]]&lt;br /&gt;
[[Category:Video Pages]]&lt;br /&gt;
[[Category:Mod Showcases]]&lt;br /&gt;
[[Category:Minecraft]]&lt;br /&gt;
[[Category:Deleted_Videos]]&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Talk:DanTDM_Wiki/Proposal&amp;diff=40016</id>
		<title>Talk:DanTDM Wiki/Proposal</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Talk:DanTDM_Wiki/Proposal&amp;diff=40016"/>
		<updated>2026-05-23T17:51:42Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Format fix&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Wiki homepage redesign 2026 ==&lt;br /&gt;
&lt;br /&gt;
Spent awhile yesterday putting together a complete potential rework of the current wikis homepage and am proposing it here for votes and opinions first. The proposed changes can be found [[DanTDM Wiki/Proposal]].&lt;br /&gt;
&lt;br /&gt;
This proposal is open to changes if you some reply below as well as mention if you support or are opposed to this by using:&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Support}} your reason here&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Oppose}} your reason here&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thank you, I plan to leave this open for a week unless a clear consensus has been made! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:44, 23 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
{{Support}} I already knew my answer but I support this because the main page hasn&#039;t been updated since the forking in 2025 and to update the information also. So, it&#039;d be great to renvonate the main page after 3 years and more. [[User:DanTDMFan|DanTDMFan]] ([[User talk:DanTDMFan|talk]]) 17:49, 23 May 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=40014</id>
		<title>MediaWiki:Sitenotice</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Sitenotice&amp;diff=40014"/>
		<updated>2026-05-23T17:47:32Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;mp-hero&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-overlay&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-tagline&amp;quot;&amp;gt;&lt;br /&gt;
Check out the homepage redesign proposal and discuss your thoughts! [[DanTDM Wiki/Proposal]].&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=DanTDM_Wiki/Proposal&amp;diff=40013</id>
		<title>DanTDM Wiki/Proposal</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=DanTDM_Wiki/Proposal&amp;diff=40013"/>
		<updated>2026-05-23T17:44:46Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Created page with &amp;quot;__NOTOC__ __NOEDITSECTION__ &amp;lt;div class=&amp;quot;mainpage-container&amp;quot;&amp;gt; &amp;lt;div class=&amp;quot;mp-notice&amp;quot;&amp;gt; &amp;#039;&amp;#039;&amp;#039;This is a proposed redesign of the wikis Main Page.&amp;#039;&amp;#039;&amp;#039; Please share your feedback and proposed edits on the talk page as well as if you support or are opposed to this change, this proposal will be open for a week or until it has an outcome vote. ~~~~ &amp;lt;/div&amp;gt; &amp;lt;!-- HERO SECTION WITH EMBEDDED BANNER BACKDROP --&amp;gt; &amp;lt;div class=&amp;quot;mp-hero&amp;quot;&amp;gt; &amp;lt;div class=&amp;quot;mp-her...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&amp;lt;div class=&amp;quot;mainpage-container&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-notice&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;This is a proposed redesign of the wikis [[DanTDM_Wiki|Main Page]].&#039;&#039;&#039; Please share your feedback and proposed edits on the [[{{TALKPAGENAME}}|talk page]] as well as if you support or are opposed to this change, this proposal will be open for a week or until it has an outcome vote. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:44, 23 May 2026 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;!-- HERO SECTION WITH EMBEDDED BANNER BACKDROP --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-overlay&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-hero-left&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-logo-wrapper&amp;quot;&amp;gt;[[File:Site-logo.png|120px|center|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;Welcome to the DanTDM Wiki&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-tagline&amp;quot;&amp;gt;&lt;br /&gt;
The fan-made encyclopedia dedicated to [[DanTDM]], his videos, Minecraft series, characters, mods, livestreams, and community history.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-actions&amp;quot;&amp;gt;&lt;br /&gt;
[[Special:NewPage|New Article]]&lt;br /&gt;
[[Special:AllPages|Browse Articles]]&lt;br /&gt;
[[Special:RecentChanges|Recent Changes]]&lt;br /&gt;
[[DanTDM_Wiki:Rules|Wiki Rules]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stats&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFARTICLES}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Articles&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFFILES}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Files&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFUSERS}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Users&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-value&amp;quot;&amp;gt;{{NUMBEROFEDITS}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-stat-text&amp;quot;&amp;gt;Edits&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-panel&amp;quot; style=&amp;quot;padding: 16px; margin-bottom: 18px; line-height: 1.6;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size: 1.5em; font-weight: bold; color: #00cfff; margin-bottom: 8px; border-bottom: 1px solid rgba(0, 207, 255, 0.3); padding-bottom: 4px;&amp;quot;&amp;gt;Who is DanTDM?&amp;lt;/div&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Daniel &#039;Robert&#039; Middleton&#039;&#039;&#039; (born: November 8, 1991), better known online as &#039;&#039;&#039;DanTDM&#039;&#039;&#039;, is an English online content creator, YouTuber, and Twitch streamer. &lt;br /&gt;
&lt;br /&gt;
While many know him for his Minecraft series and years, Dan actually began his YouTube journey all the way back in 2006 on channels like &#039;&#039;&#039;[[ChemicalDork]]&#039;&#039;&#039;. He later created [[PokemanDanLv45|PokemanDanLvl45]] in 2010 to review Pokémon cards, before launching &amp;quot;TheDiamondMinecart&amp;quot; in 2012. That channel eventually evolved into the legendary [[DanTDM (channel)|DanTDM]] channel we know today, becoming a cornerstone of the internet via [[Mod Showcases]], [[Custom Mod Adventure|Custom Mod Adventures]], and [[The Diamond Dimensions]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin-top: 12px; padding: 10px; background: rgba(0, 207, 255, 0.08); border-left: 3px solid #00cfff; font-size: 0.92em; color: #d9f5ff;&amp;quot;&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; DanTDM is not affiliated with or involved in the management of this wiki, though he has visited the site on video!&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;!-- VIDEOS &amp;amp; SERIES GRID --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section-title&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;mp-title-diamond&amp;quot;&amp;gt;♦&amp;lt;/span&amp;gt; Popular Videos &amp;amp; Series&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-card-grid&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-image&amp;quot;&amp;gt;[[File:TheDiamondDimensions.png|360px|link=The_Diamond_Dimensions]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-subtitle&amp;quot;&amp;gt;[[The_Diamond_Dimensions|Diamond Dimensions]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-image&amp;quot;&amp;gt;[[File:DanTDM_Plays_Minecraft.jpg|360px|link=DanTDM_Plays_Minecraft]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-subtitle&amp;quot;&amp;gt;[[DanTDM_Plays_Minecraft]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-image&amp;quot;&amp;gt;[[File:DanTDM-ModReview.png|360px|link=:Category:Mod_Showcases]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;nav-portal-item-subtitle&amp;quot;&amp;gt;[[:Category:Mod_Showcases]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- SIDE-BY-SIDE INTERACTION HUB (TOPICS + COMMUNITY MERGED LEFT, DISCORD RIGHT) --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-columns-layout&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- LEFT COLUMN CONTENT HUBS (2/3 Width) --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-left-column&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-panel&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section-title&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;mp-title-diamond&amp;quot;&amp;gt;♦&amp;lt;/span&amp;gt; Relevant Links&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-grid&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Dr Trayaurus]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Grim]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM_(channel)]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Custom Mod Adventure]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM_Wiki:About|About the Wiki]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[DanTDM_Wiki:Staff|Staff Team]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-nav-item&amp;quot;&amp;gt;[[Special:ListFiles|File Gallery]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
{{YIWA}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- RIGHT COLUMN CONTENT HUBS (1/3 Width) --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-right-column&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-panel-discord&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-section-title&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;mp-title-diamond&amp;quot;&amp;gt;♦&amp;lt;/span&amp;gt; Discord Server&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-discord-body&amp;quot;&amp;gt;&lt;br /&gt;
{{DiscordIntegrator&lt;br /&gt;
| id = 1066830030451265566&lt;br /&gt;
| theme = dark&lt;br /&gt;
| width = 100%&lt;br /&gt;
| height = 370px&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- FOOTER AND ATTRIBUTION --&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;mp-footer&amp;quot;&amp;gt;&lt;br /&gt;
This wiki was founded by &#039;&#039;&#039;Treepig slayer&#039;&#039;&#039; on February 1, 2014 and adopted by &#039;&#039;&#039;LostSnowDust&#039;&#039;&#039; on January 21, 2023. Read more on the [[DanTDM_Wiki:About|About Page]].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Talk:DanTDM_Wiki/Proposal&amp;diff=40012</id>
		<title>Talk:DanTDM Wiki/Proposal</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Talk:DanTDM_Wiki/Proposal&amp;diff=40012"/>
		<updated>2026-05-23T17:44:42Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: /* Wiki homepage redesign 2026 */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Wiki homepage redesign 2026 ==&lt;br /&gt;
&lt;br /&gt;
Spent awhile yesterday putting together a complete potential rework of the current wikis homepage and am proposing it here for votes and opinions first. The proposed changes can be found [[DanTDM Wiki/Proposal]].&lt;br /&gt;
&lt;br /&gt;
This proposal is open to changes if you some reply below as well as mention if you support or are opposed to this by using:&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Support}} your reason here&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;{{Oppose}} your reason here&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thank you, I plan to leave this open for a week unless a clear consensus has been made! &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:44, 23 May 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Template:Oppose&amp;diff=40008</id>
		<title>Template:Oppose</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Template:Oppose&amp;diff=40008"/>
		<updated>2026-05-23T04:25:08Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Created page with &amp;quot;&amp;lt;span style=&amp;quot;padding: 1px 4px; font-weight: bold;&amp;quot;&amp;gt;link= Oppose&amp;lt;/span&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;padding: 1px 4px; font-weight: bold;&amp;quot;&amp;gt;[[File:Symbol oppose vote.svg|15px|link=]] Oppose&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Template:Support&amp;diff=40007</id>
		<title>Template:Support</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Template:Support&amp;diff=40007"/>
		<updated>2026-05-23T04:25:06Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Stylized polling for proposals and talk pages.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span style=&amp;quot;padding: 1px 4px; font-weight: bold;&amp;quot;&amp;gt;[[File:Symbol support vote.svg|15px|link=]] Support&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=File:Symbol_oppose_vote.svg&amp;diff=40006</id>
		<title>File:Symbol oppose vote.svg</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=File:Symbol_oppose_vote.svg&amp;diff=40006"/>
		<updated>2026-05-23T04:24:58Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=File:Symbol_support_vote.svg&amp;diff=40005</id>
		<title>File:Symbol support vote.svg</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=File:Symbol_support_vote.svg&amp;diff=40005"/>
		<updated>2026-05-23T04:24:46Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=File:DanTDM-ModReview.png&amp;diff=40002</id>
		<title>File:DanTDM-ModReview.png</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=File:DanTDM-ModReview.png&amp;diff=40002"/>
		<updated>2026-05-23T02:19:22Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Screenshot of DanTDM&#039;s mod review intro&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=DanTDM_Wiki:Candidates_for_deletion&amp;diff=40000</id>
		<title>DanTDM Wiki:Candidates for deletion</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=DanTDM_Wiki:Candidates_for_deletion&amp;diff=40000"/>
		<updated>2026-05-22T22:16:08Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: New section == IBallisticSquid == &amp;amp; closed Eboy proposal&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{DISPLAYTITLE:Candidates for deletion}}&lt;br /&gt;
This page is used for discussing articles for deletion. Remember to sign comments and posts using &amp;quot;&amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt;&amp;quot;.&lt;br /&gt;
&amp;lt;div style=&amp;quot;border:1px solid cyan;float:right;&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;mw-collapsible mw-collapsed&amp;quot;&lt;br /&gt;
|+ Archived Discussions&lt;br /&gt;
|-&lt;br /&gt;
| [[DanTDM_Wiki:Candidates_for_deletion/Archive_1]]&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
== Adding comments ==&lt;br /&gt;
To add comments, edit the corresponding section and add your thoughts at the end or reply to others:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;* &#039;&#039;&#039;Opinion (eg. keep, delete)&#039;&#039;&#039; − comment ~~~~&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== IBallisticSquid ==&lt;br /&gt;
Proposed for deletion January 29, 2026 by [[User:DGMO]] with reason &amp;quot;Youtubers are documented on wikitubia, and this page doesn&#039;t seem to include anything related to DanTDM.&amp;quot;&lt;br /&gt;
: &#039;&#039;&#039;Keep / Disagree&#039;&#039;&#039; I feel an article like such belongs given squiddy and dan have done many collabs and is a key figure, Also want to say sorry for the delay on adding this I overlooked it. The claim about wikitubia I don&#039;t feel should be a deciding factor as it&#039;s general info not him and dan exclusive the article can be altered to be more fitting here. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 22:15, 22 May 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border:1px solid cyan;padding:5px;&amp;quot;&amp;gt;&lt;br /&gt;
: &#039;&#039;[[User:DGMO]] revoked the deletion proposal, closing this discussion. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 22:15, 22 May 2026 (UTC)&#039;&#039;&lt;br /&gt;
== [[Eboy]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Eboy]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;a page of this character already exists on another wiki, as it is a movie character.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Keep / Disagree&#039;&#039;&#039; I disagree with this proposal as it does releate to dan as he voiced the character therefor I think should be allowed on this wiki. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
: Gonna leave this discussion open as a consensus was not made. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 00:55, 7 February 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
: &#039;&#039;&#039;Keep&#039;&#039;&#039; I disagree because Eboy is a character that DanTDM voiced in the UK film. So if any shows that Dan has voice acted on, I&#039;d say it stays on the wiki, such as this one. [[User:DanTDMFan|DanTDMFan]] ([[User talk:DanTDMFan|talk]]) 01:10, 7 February 2026 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;border:1px solid cyan;padding:5px;&amp;quot;&amp;gt;&lt;br /&gt;
: &#039;&#039;Closing below discussions with a consensus vote from [[User:DGMO]] and I in favor for deletion. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 00:55, 7 February 2026 (UTC)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== [[Nit_Wit]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Nit_Wit]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;a page of this character already exists on another wiki, as it is a videogame character.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 16:30, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[Green_Shellcreeper]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Green_Shellcreeper]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;a page of this character already exists on another wiki, as it is a videogame character.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[Neighbor_(Hello_Neighbor)]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Neighbor_(Hello_Neighbor)]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;a page of this character already exists on another wiki, as it is a videogame character.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[Glamrock_Freddy]] ==&lt;br /&gt;
On January 29, 2026&amp;quot;[[Glamrock_Freddy]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;a page of this character already exists on another wiki, as it is a videogame character.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[Bobby]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Bobby]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;a page of this character already exists on another wiki, as it is a videogame character.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[Shellstrop_(name)]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Shellstrop_(name)]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;this is a videogame character not associated with DanTDM. The game it&#039;s in doesn&#039;t have a wiki, but it doesn&#039;t have to as it&#039;d only consist of a few pages.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[Teddy_Reed]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Teddy_Reed]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;this is a videogame character not associated with DanTDM. The game it&#039;s in doesn&#039;t have a wiki, but it doesn&#039;t have to as it&#039;d only consist of a few pages.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
&lt;br /&gt;
== [[Teddy_Shellstrop]] ==&lt;br /&gt;
On January 29, 2026, &amp;quot;[[Teddy_Shellstrop]]&amp;quot; was put up as a candidate for deletion with reason provided : &amp;quot;this is a videogame character not associated with DanTDM. The game it&#039;s in doesn&#039;t have a wiki, but it doesn&#039;t have to as it&#039;d only consist of a few pages.&amp;quot; by [[User:DGMO|DGMO]].&lt;br /&gt;
: &#039;&#039;&#039;Delete&#039;&#039;&#039; I&#039;m in favor for it to be deleted as it is not cannon to DanTDM nor his content. &amp;lt;b style=&amp;quot;background:#020523;border:1px solid magenta;padding:3px;margin:5px;color:white;&amp;quot;&amp;gt;[[User:ScrapBlox|&amp;lt;b style=&amp;quot;color:white;&amp;quot;&amp;gt;ScrapBlox&amp;lt;/b&amp;gt;]] - ([[User_talk:ScrapBlox|talk]]) &amp;lt;b style=&amp;quot;color:lime;font-size:8px;&amp;quot;&amp;gt;(SYSADMIN)&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt; 17:40, 29 January 2026 (UTC)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Quit_the_Game_to_Win&amp;diff=39999</id>
		<title>Quit the Game to Win</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Quit_the_Game_to_Win&amp;diff=39999"/>
		<updated>2026-05-22T22:15:22Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Gamepage isn&amp;#039;t needed, redirecting to the 1 Video page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[QUIT_THE_GAME_to_win..]]&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Riddle_School_4&amp;diff=39998</id>
		<title>Riddle School 4</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Riddle_School_4&amp;diff=39998"/>
		<updated>2026-05-22T21:57:34Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: An article for a specific game in a series likely doesn&amp;#039;t need a dedicated page on the DanTDM Wiki. (Use my talk page if you disagree and wish for it to be added back tho)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Category:Riddle_School]]&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Vector.css&amp;diff=39997</id>
		<title>MediaWiki:Vector.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Vector.css&amp;diff=39997"/>
		<updated>2026-05-22T20:20:11Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Removed mwhead gradient and white background on forum posts&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* All CSS here will be loaded for users of the Vector skin */&lt;br /&gt;
&lt;br /&gt;
#mw-page-base {&lt;br /&gt;
    background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
a:visited {&lt;br /&gt;
    color: #433b99 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-menu-tabs-legacy li a span {&lt;br /&gt;
    color: white;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
h1,h2,h3,h4 {&lt;br /&gt;
	color:white;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-menu-content {&lt;br /&gt;
    margin: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-menu-heading {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: 1px solid cyan !important;&lt;br /&gt;
    color: white !important;&lt;br /&gt;
    font-weight: 800 !important;&lt;br /&gt;
    margin: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-menu-tabs-legacy li a span {&lt;br /&gt;
    color: white;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-menu-tabs-legacy li, .vector-menu-dropdown {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-menu-tabs-legacy .selected {&lt;br /&gt;
    background: #030841;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#right-navigation {&lt;br /&gt;
    border-left: 1px solid cyan;&lt;br /&gt;
    border-right: 1px solid cyan;&lt;br /&gt;
    border-top: 1px solid cyan;&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
    background: #020523&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#left-navigation {&lt;br /&gt;
    border-left: 1px solid cyan;&lt;br /&gt;
    border-right: 1px solid cyan;&lt;br /&gt;
    border-top: 1px solid cyan;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-echo-notifications-badge {&lt;br /&gt;
    filter: invert(1);&lt;br /&gt;
    opacity: 1 !important;&lt;br /&gt;
}&lt;br /&gt;
.vector-user-menu-legacy #pt-anonuserpage, .vector-user-menu-legacy #pt-userpage a {&lt;br /&gt;
    filter: brightness(10);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
body {&lt;br /&gt;
    background: url(https://dantdm.wiki/images/thumb/8/8c/DanTDMNewLab.png/800px-DanTDMNewLab.png?20250607174339) no-repeat center center fixed;&lt;br /&gt;
    -webkit-background-size: cover;&lt;br /&gt;
    -moz-background-size: cover;&lt;br /&gt;
    -o-background-size: cover;&lt;br /&gt;
    background-size: cover;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content {&lt;br /&gt;
    margin-right: 10px;&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
    color: white;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
       .vector-menu-portal .vector-menu-content,&lt;br /&gt;
#p-personal .vector-menu-content-list,&lt;br /&gt;
#footer {&lt;br /&gt;
    background-color: #020523;&lt;br /&gt;
    border: 1px cyan solid;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#footer {&lt;br /&gt;
    border:none;&lt;br /&gt;
    outline: 1px cyan solid;&lt;br /&gt;
    outline-offset: -2px;&lt;br /&gt;
    margin-left: calc(10em+4);&lt;br /&gt;
    margin-top: 10px;&lt;br /&gt;
    margin-bottom: 10px;&lt;br /&gt;
    padding: 0.5em 0.75em;&lt;br /&gt;
    margin-right:10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-enhancedchanges-arrow {&lt;br /&gt;
    background-color: white !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-changeslist-legend {&lt;br /&gt;
    border: 1px solid cyan !important;&lt;br /&gt;
    background: #020523 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#footer:after {&lt;br /&gt;
    content: &#039;&#039;;&lt;br /&gt;
    clear: both;&lt;br /&gt;
    display: block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Base portable infobox container */&lt;br /&gt;
.portable-infobox {&lt;br /&gt;
    background: #020523;&lt;br /&gt;
    color: #ffffff;&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
    border-radius: 10px;&lt;br /&gt;
    padding: 8px;&lt;br /&gt;
    width: 270px;&lt;br /&gt;
    font-family: &amp;quot;Segoe UI&amp;quot;, Tahoma, sans-serif;&lt;br /&gt;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.15);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Title */&lt;br /&gt;
.portable-infobox .pi-title {&lt;br /&gt;
    font-size: 16px;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
    padding: 6px;&lt;br /&gt;
    border-bottom: 1px solid cyan;&lt;br /&gt;
    color: #ffffff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Section rows */&lt;br /&gt;
.portable-infobox .pi-data {&lt;br /&gt;
    border-top: 1px solid rgba(0, 255, 255, 0.25);&lt;br /&gt;
    padding: 6px 4px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Labels */&lt;br /&gt;
.portable-infobox .pi-data-label {&lt;br /&gt;
    font-size: 12px;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    color: #7fdfff;&lt;br /&gt;
    margin-bottom: 2px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Values */&lt;br /&gt;
.portable-infobox .pi-data-value {&lt;br /&gt;
    font-size: 13px;&lt;br /&gt;
    color: #ffffff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Links inside infobox */&lt;br /&gt;
.portable-infobox a {&lt;br /&gt;
    color: #0645ad;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.portable-infobox a:visited {&lt;br /&gt;
    color: #433b99;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.portable-infobox a:hover {&lt;br /&gt;
    color: cyan;&lt;br /&gt;
    text-decoration: underline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Embedded video/frame */&lt;br /&gt;
.portable-infobox iframe {&lt;br /&gt;
    border: 1px solid cyan;&lt;br /&gt;
    border-radius: 6px;&lt;br /&gt;
    background: #000;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
    /* Infobox section group headers */&lt;br /&gt;
.portable-infobox .pi-header {&lt;br /&gt;
    background: linear-gradient(135deg, #001a3a, #003b6f);&lt;br /&gt;
    color: #7fdfff;&lt;br /&gt;
    font-size: 14px;&lt;br /&gt;
    font-weight: bold;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
&lt;br /&gt;
    border-top: 1px solid cyan;&lt;br /&gt;
    border-bottom: 1px solid cyan;&lt;br /&gt;
    border-left: 3px solid cyan;&lt;br /&gt;
&lt;br /&gt;
    padding: 6px;&lt;br /&gt;
    margin-top: 8px;&lt;br /&gt;
&lt;br /&gt;
    letter-spacing: 0.5px;&lt;br /&gt;
    text-transform: uppercase;&lt;br /&gt;
&lt;br /&gt;
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.25);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
tr.mw-wikiforum-normal {&lt;br /&gt;
	background: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Remove default grey background some skins apply */&lt;br /&gt;
.pi-secondary-background {&lt;br /&gt;
    background: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Spacing between grouped sections */&lt;br /&gt;
.portable-infobox .pi-group {&lt;br /&gt;
    margin-top: 6px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Make labels slightly brighter for readability */&lt;br /&gt;
.portable-infobox .pi-data-label {&lt;br /&gt;
    color: #9fe8ff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* External links inside infobox */&lt;br /&gt;
.portable-infobox .external {&lt;br /&gt;
    color: #00b7ff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.portable-infobox .external:hover {&lt;br /&gt;
    color: cyan;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidthToggle.css&amp;diff=39996</id>
		<title>MediaWiki:Gadget-fixedWidthToggle.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidthToggle.css&amp;diff=39996"/>
		<updated>2026-05-22T20:03:17Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: fixed toggle icon link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/**Credits to Minecraft Wiki for code: https://minecraft.wiki/w/MediaWiki:Gadget-fixedWidthToggle.css**/&lt;br /&gt;
#pt-fw-disable a,&lt;br /&gt;
#pt-fw-enable a {&lt;br /&gt;
	width: 14px;&lt;br /&gt;
	height: 14px;&lt;br /&gt;
	background-size: 14px 14px;&lt;br /&gt;
	display: block;&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#pt-fw-enable a {&lt;br /&gt;
	background-image: url(&#039;/load.php?format=original&amp;amp;image=exitFullscreen&amp;amp;variant=invert&amp;amp;modules=oojs-ui.styles.icons-media&amp;amp;skin=vector&#039;);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#pt-fw-disable a {&lt;br /&gt;
	background-image: url(&#039;/load.php?format=original&amp;amp;image=fullScreen&amp;amp;variant=invert&amp;amp;modules=oojs-ui.styles.icons-media&amp;amp;skin=vector&#039;);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadgets-definition&amp;diff=39995</id>
		<title>MediaWiki:Gadgets-definition</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadgets-definition&amp;diff=39995"/>
		<updated>2026-05-22T20:00:56Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Adding support to toggle between full width &amp;amp; fixed width on Desktop&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* fixedWidth[ResourceLoader|type=styles|targets=desktop|skins=vector|supportsUrlLoad=true]|fixedWidth.css&lt;br /&gt;
* fixedWidthToggle[ResourceLoader|dependencies=mediawiki.util,mediawiki.user,mediawiki.cookie,mediawiki.api,user.options|targets=desktop|type=general|skins=vector|default|hidden]|fixedWidthToggle.js|fixedWidthToggle.css&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidthToggle.css&amp;diff=39994</id>
		<title>MediaWiki:Gadget-fixedWidthToggle.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidthToggle.css&amp;diff=39994"/>
		<updated>2026-05-22T20:00:54Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Adding support to toggle between full width &amp;amp; fixed width on Desktop&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/**Credits to Minecraft Wiki for code: https://minecraft.wiki/w/MediaWiki:Gadget-fixedWidthToggle.css**/&lt;br /&gt;
#pt-fw-disable a,&lt;br /&gt;
#pt-fw-enable a {&lt;br /&gt;
	width: 14px;&lt;br /&gt;
	height: 14px;&lt;br /&gt;
	background-size: 14px 14px;&lt;br /&gt;
	display: block;&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#pt-fw-enable a {&lt;br /&gt;
	background-image: url(&#039;/mediawiki/images/8/8d/Fixed_width_on.png&#039;);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#pt-fw-disable a {&lt;br /&gt;
	background-image: url(&#039;/mediawiki/images/a/a3/Fixed_width_off.png&#039;);&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidthToggle.js&amp;diff=39993</id>
		<title>MediaWiki:Gadget-fixedWidthToggle.js</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidthToggle.js&amp;diff=39993"/>
		<updated>2026-05-22T20:00:52Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Adding support to toggle between full width &amp;amp; fixed width on Desktop&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/** Credits to Minecraft Wiki for code: https://minecraft.wiki/w/MediaWiki:Gadget-fixedWidthToggle.js **/&lt;br /&gt;
$(function() {&lt;br /&gt;
	var i18n = {&lt;br /&gt;
		toggle: &#039;Toggle fixed width&#039;,&lt;br /&gt;
		toastTitle: &#039;Fixed width toggle&#039;,&lt;br /&gt;
		failedToast: &#039;Could not save fixed width preference.&#039;,&lt;br /&gt;
	};&lt;br /&gt;
&lt;br /&gt;
	var isDefaultEnabled = mw.user.options.get(&#039;gadget-fixedWidth&#039;) || 0,&lt;br /&gt;
	cookieOptions = {&lt;br /&gt;
		prefix: &#039;&#039;,&lt;br /&gt;
		expires: 365 * 86400&lt;br /&gt;
	},&lt;br /&gt;
	portletLink = mw.util.addPortletLink(&lt;br /&gt;
		&#039;p-personal&#039;,&lt;br /&gt;
		&#039;&#039;,&lt;br /&gt;
		&#039;&#039;,&lt;br /&gt;
		( isDefaultEnabled ? &#039;pt-fw-disable&#039; : &#039;pt-fw-enable&#039; ),&lt;br /&gt;
		i18n.toggle,&lt;br /&gt;
		null,&lt;br /&gt;
		$(&#039;#pt-dm-toggle, #pt-userpage, #pt-anonuserpage, #pt-createaccount&#039;)[0]&lt;br /&gt;
	);&lt;br /&gt;
	&lt;br /&gt;
	if ( mw.user.isAnon() ) {&lt;br /&gt;
		var useFixedWidth = mw.cookie.get(&#039;fixedWidth&#039;, cookieOptions.prefix, isDefaultEnabled &amp;amp;&amp;amp; &#039;true&#039;) === &#039;true&#039;;&lt;br /&gt;
		if ( useFixedWidth != isDefaultEnabled ) { // bool != int&lt;br /&gt;
			toggleFixedWidth(isDefaultEnabled);&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	$(portletLink).find(&#039;a&#039;).click(function(e) {&lt;br /&gt;
		e.preventDefault();&lt;br /&gt;
		&lt;br /&gt;
		var isEnabled = mw.user.options.get(&#039;gadget-fixedWidth&#039;) || 0;&lt;br /&gt;
		if ( mw.user.isAnon() ) {&lt;br /&gt;
			mw.cookie.set(&#039;fixedWidth&#039;, isEnabled ? &#039;false&#039; : &#039;true&#039;, cookieOptions);&lt;br /&gt;
		}&lt;br /&gt;
		else {&lt;br /&gt;
			new mw.Api().saveOption(&#039;gadget-fixedWidth&#039;, isEnabled ? 0 : 1).fail(function() {&lt;br /&gt;
				mw.notify(i18n.failedToast, {&lt;br /&gt;
					title: i18n.toastTitle,&lt;br /&gt;
					type: &#039;warn&#039;,&lt;br /&gt;
					tag: &#039;fixedWidthToggle&#039;&lt;br /&gt;
				});&lt;br /&gt;
			});&lt;br /&gt;
		}&lt;br /&gt;
		toggleFixedWidth(isEnabled);&lt;br /&gt;
	});&lt;br /&gt;
	&lt;br /&gt;
	function toggleFixedWidth(isEnabled) {&lt;br /&gt;
		if ( isEnabled ) {&lt;br /&gt;
			mw.user.options.set(&#039;gadget-fixedWidth&#039;, 0);&lt;br /&gt;
			document.documentElement.style.setProperty(&#039;--fixed-width&#039;, &#039;100vw&#039;);&lt;br /&gt;
			portletLink.id = &#039;pt-fw-enable&#039;;&lt;br /&gt;
		}&lt;br /&gt;
		else {&lt;br /&gt;
			mw.user.options.set(&#039;gadget-fixedWidth&#039;, 1);&lt;br /&gt;
			document.documentElement.style.setProperty(&#039;--fixed-width&#039;, &#039;&#039;);&lt;br /&gt;
			mw.loader.using([&#039;ext.gadget.fixedWidth&#039;]).then(function() {&lt;br /&gt;
				portletLink.id = &#039;pt-fw-disable&#039;;&lt;br /&gt;
			});&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidth.css&amp;diff=39992</id>
		<title>MediaWiki:Gadget-fixedWidth.css</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=MediaWiki:Gadget-fixedWidth.css&amp;diff=39992"/>
		<updated>2026-05-22T20:00:51Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Adding support to toggle between full width &amp;amp; fixed width on Desktop&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/** Credits to Minecraft Wiki &amp;amp; ffxiv for code: https://minecraft.wiki/w/MediaWiki:Gadget-fixedWidth.css  || https://ffxiv.consolegameswiki.com/wiki/MediaWiki:Gadget-fixedWidth.css **/&lt;br /&gt;
@media screen and (min-width: 1300px) {&lt;br /&gt;
	:root {&lt;br /&gt;
		--fixed-width: 1300px;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	body {&lt;br /&gt;
	    max-width: var(--fixed-width);&lt;br /&gt;
	    margin: auto;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	#mw-head {&lt;br /&gt;
	    max-width: var(--fixed-width);&lt;br /&gt;
	    right: unset;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	#mw-panel {&lt;br /&gt;
		left: unset;&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	.vector-search-box-inner {&lt;br /&gt;
		width: min(20vw, calc(var(--fixed-width) / 5));&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	body .mw-notification-area {&lt;br /&gt;
		right: calc(50% - min(50%, var(--fixed-width) / 2));&lt;br /&gt;
	}&lt;br /&gt;
	&lt;br /&gt;
	div#mw-page-base::after {&lt;br /&gt;
	    position: relative;&lt;br /&gt;
	    display: block;&lt;br /&gt;
	    width: 0;&lt;br /&gt;
	    right: calc(16px - min(100%, var(--fixed-width)))&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
    .mw-body {&lt;br /&gt;
        border-right-width: 1px !important;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=DanTDM_Wiki&amp;diff=39991</id>
		<title>DanTDM Wiki</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=DanTDM_Wiki&amp;diff=39991"/>
		<updated>2026-05-19T17:30:06Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Protected &amp;quot;DanTDM Wiki&amp;quot; ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#seo:&lt;br /&gt;
|title=The DanTDM Wiki – Everything About the YouTuber DanTDM&lt;br /&gt;
|description=The DanTDM Wiki, The ultimate fan resource for DanTDM, covering everything from videos to behind-the-scenes info.&lt;br /&gt;
|image=DanTDMWikiIcon.png&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;mainpage-leftcolumn-start /&amp;gt;&lt;br /&gt;
&amp;lt;center&amp;gt;&amp;lt;span style=&amp;quot;font-size: 20px;&amp;quot;&amp;gt;Welcome to the [[File:Site-logo.png]]&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;gallery type=&amp;quot;slider&amp;quot;&amp;gt;&lt;br /&gt;
New DanTray PFP.jpg|Dan&#039;s New Channel!|link=[[Dan &amp;amp; Tray]]|Check out Dan&#039;s new channel, Dan &amp;amp; Tray!&lt;br /&gt;
DanTDM Plays Minecraft.jpg|DanTDM Plays Minecraft|link=[[DanTDM Plays Minecraft]]|DanTDM Plays Minecraft series&lt;br /&gt;
TheDiamondDimensions.png|The Diamond Dimensions|link=[[The Diamond Dimensions]]|DanTDM&#039;s Diamond Dimensions Modded Survival series&lt;br /&gt;
Xbox360Edition.png|Minecraft Xbox|link=[[Minecraft Xbox]]|DanTDM&#039;s Minecraft Xbox series&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;border:5px solid DodgerBlue;”&amp;quot; div&lt;br /&gt;
|&amp;lt;center&amp;gt;&amp;lt;span style=&amp;quot;text-shadow: LightBlue 0px 3px 3px;&amp;quot;&amp;gt;This wiki was founded by [[User:Treepig_slayer|Treepig slayer]] on February 1, 2014 and was adopted by [[User:LostSnowDust|LostSnowDust]] on January 21, 2023.&amp;lt;/span&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: RoyalBlue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;font-size: 27px;&amp;quot;&amp;gt;&#039;&#039;&#039;ABOUT THIS WIKI&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
As mentioned above, the DanTDM Wiki is founded on February 1, 2014 but was later on adopted on January 21, 2023. This wiki is an encyclopedic resource of everything about [[Daniel Middleton|DanTDM]], his characters, videos, series and more.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;text-shadow: LightBlue 0px 3px 3px;&amp;quot;&amp;gt;Also, please note that &#039;&#039;&#039;DanTDM is not affiliated or involved with the wiki&#039;&#039;&#039;, except for the part where &#039;&#039;&#039;he only visited the wiki once&#039;&#039;&#039;&amp;lt;/span&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: RoyalBlue;&amp;quot;&amp;gt;&amp;lt;span style=&amp;quot;font-size: 27px;&amp;quot;&amp;gt;&#039;&#039;&#039;WHO IS DANTDM?&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Daniel &#039;Robert&#039; Middleton&#039;&#039;&#039; (born: November 8, 1991) better known online as &#039;&#039;&#039;DanTDM&#039;&#039;&#039; or simply &#039;&#039;&#039;Dan&#039;&#039;&#039;,  is an online content creator on YouTube and Twitch. He is best and commonly known for his Minecraft videos of [[Mod Showcases]], [[Custom Mod Adventure|Custom Mod Adventures]], [[The Diamond Dimensions]], etc. He started making videos in 2010 on a channel named [[PokemanDanLv45|PokemanDanLvl45]] where he reviews some Pokemon Trading Cards while also playing some Pokemon Stadium. Later on in 2012, he created a channel called &amp;quot;[[DanTDM (channel)|TheDiamondMinecart]]&amp;quot; then changed it to &amp;quot;[[DanTDM (channel)|TheDiamondMinecart // DanTDM]]&amp;quot; to rank higher than all of the spam accounts impersonating him. Not too long later, it was made simply &amp;quot;[[DanTDM (channel)|DanTDM]]&amp;quot; as search results got improved.&lt;br /&gt;
&lt;br /&gt;
We are currently maintaining &amp;lt;span style=&amp;quot;color: RoyalBlue;&amp;quot;&amp;gt;&#039;&#039;&#039;{{NUMBEROFARTICLES}} articles&#039;&#039;&#039;&amp;lt;/span&amp;gt;, &amp;lt;span style=&amp;quot;color: RoyalBlue;&amp;quot;&amp;gt;&#039;&#039;&#039;{{NUMBEROFFILES}} files&#039;&#039;&#039;&amp;lt;/span&amp;gt;, and &amp;lt;span style=&amp;quot;color: RoyalBlue;&amp;quot;&amp;gt; &#039;&#039;&#039;{{NUMBEROFEDITS}} edits&#039;&#039;&#039;&amp;lt;/span&amp;gt; since the wiki was created. Anyone is free to edit, so we&#039;re counting on you to help!&amp;lt;/span&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
Make sure to visit and read the &amp;lt;span style=&amp;quot;color: RoyalBlue;&amp;quot;&amp;gt;&#039;&#039;&#039;[[DanTDM Wiki:Rules|Rules &amp;amp; Guidelines]]&#039;&#039;&#039;&amp;lt;/span&amp;gt; before editing pages and making contributions.&lt;br /&gt;
----&lt;br /&gt;
|}&lt;br /&gt;
{{YIWA}}&lt;br /&gt;
&amp;lt;mainpage-endcolumn /&amp;gt;&lt;br /&gt;
== Wiki Information ==&lt;br /&gt;
&amp;lt;mainpage-rightcolumn-start /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;&lt;br /&gt;
*[[DanTDM_Wiki:Rules|Wiki Rules]]&lt;br /&gt;
*[[DanTDM_Wiki:Staff|Wiki Staff]]&lt;br /&gt;
&amp;lt;/center&amp;gt;&lt;br /&gt;
&amp;lt;mainpage-endcolumn /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;mainpage-rightcolumn-start /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Wiki Discord==&lt;br /&gt;
{{DiscordIntegrator&lt;br /&gt;
| id = 1066830030451265566&lt;br /&gt;
| theme = dark&lt;br /&gt;
| width = 300px&lt;br /&gt;
| height = 500px&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;mainpage-endcolumn /&amp;gt;&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=User:ScrapBlox&amp;diff=39840</id>
		<title>User:ScrapBlox</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=User:ScrapBlox&amp;diff=39840"/>
		<updated>2026-04-29T21:00:11Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: Another year around the sun for me&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;mainpage-leftcolumn-start /&amp;gt;&lt;br /&gt;
Ahoy there, I&#039;m Alec but you likely know me as ScrapBlox.&lt;br /&gt;
&lt;br /&gt;
I&#039;m of course a fan of DanTDM and his content have been watching since either 2016 or 2017. In this wikis lifetime even dating before the fork from Fandom which I was given the honor of helping with, I have &#039;&#039;&#039;[[Special:Contributions/ScrapBlox|{{Special:Editcount/ScrapBlox}} edits]]&#039;&#039;&#039;. If the wiki goes offline or has any issues I&#039;m likely to blame lol. I&#039;m also a managing moderator for /r/DanTDM subreddit.&lt;br /&gt;
&lt;br /&gt;
My birthday is April 29th and I&#039;m 19 years old. I enjoy listening to music pretty much any genre. Very much enjoy the anime series &amp;lt;u&amp;gt;Sword Art Online&amp;lt;/u&amp;gt; &amp;amp; &amp;lt;u&amp;gt;Toradora!&amp;lt;/u&amp;gt;. I&#039;m also very vocal about believing all wikis deserve a slice of internet independence (part of why I and a few others helped form [[DanTDM Wiki:YouTube Independent Wiki Alliance|YIWA]]).&lt;br /&gt;
&lt;br /&gt;
== Contact Me ==&lt;br /&gt;
* [[User_talk:ScrapBlox|talk page]]&lt;br /&gt;
* Discord : &amp;lt;code&amp;gt;scrapblox&amp;lt;/code&amp;gt; &#039;&#039;(note: I don&#039;t accept random friend reqs sry my DMs are open tho)&#039;&#039;&lt;br /&gt;
* Email: &amp;lt;code&amp;gt;alec [at] scrapblox [dot] com&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;mainpage-endcolumn /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;mainpage-rightcolumn-start /&amp;gt;&lt;br /&gt;
== User Groups ==&lt;br /&gt;
{| style=&amp;quot;width:100%;border:2px solid cyan;border-radius:5px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Admin&#039;&#039;&#039;&lt;br /&gt;
| Helps moderate content and users.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Bureaucrat&#039;&#039;&#039;&lt;br /&gt;
| Manages permissions and staff roles.&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;Steward&#039;&#039;&#039;&lt;br /&gt;
| Hosting, maintenance, and keeping the wiki online.&lt;br /&gt;
|}&amp;lt;mainpage-endcolumn /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Staff]][[Category:Bureaucrats]][[Category:Administrators]]&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
	<entry>
		<id>https://dantdm.wiki/index.php?title=Mirror,_Sailboat._(Official_Music_Video)_%E2%99%AA&amp;diff=39823</id>
		<title>Mirror, Sailboat. (Official Music Video) ♪</title>
		<link rel="alternate" type="text/html" href="https://dantdm.wiki/index.php?title=Mirror,_Sailboat._(Official_Music_Video)_%E2%99%AA&amp;diff=39823"/>
		<updated>2026-04-22T17:06:22Z</updated>

		<summary type="html">&lt;p&gt;ScrapBlox: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Video&lt;br /&gt;
|title = Mirror, Sailboat. (Official Music Video)♪&lt;br /&gt;
|image = &amp;lt;youtube width=&amp;quot;260&amp;quot; height=&amp;quot;170&amp;quot;&amp;gt;h419uWQUoow&amp;lt;/youtube&amp;gt;&lt;br /&gt;
|publish_date = October 20, 2018&lt;br /&gt;
|channel = [[DanTDM (channel)|DanTDM]]&lt;br /&gt;
|viewers = 3.182M+&lt;br /&gt;
}}&lt;br /&gt;
&#039;&#039;&#039;{{PAGENAME}}&#039;&#039;&#039; is a music video uploaded on [[DanTDM (channel)|DanTDM]].&lt;br /&gt;
== Description ==&lt;br /&gt;
you guys wanted a way to be able to listen by itself. so i made this. enjoy my brain.&lt;br /&gt;
&lt;br /&gt;
== Plot ==&lt;br /&gt;
The plot is three characters singing. The front two characters sing about mirrors and sailboats during the chorus, and the top character sings about random objects during the verses. Dan used a random object generator for the lyrics.&lt;br /&gt;
&lt;br /&gt;
== Characters ==&lt;br /&gt;
* Mirror Man&lt;br /&gt;
* Afro Man&lt;br /&gt;
* Sailboat Man&lt;br /&gt;
&lt;br /&gt;
== Trivia ==&lt;br /&gt;
* This is [[Daniel Middleton]]’s second music video, after &amp;quot;[[DR TRAYAURUS RAP SONG!! (Official Music Video)]]&amp;quot;.&lt;br /&gt;
**However, if “ ♪ &amp;quot;Never Ever Going to the Nether&amp;quot; A Minecraft Song Parody of Taylor Swift&#039;s &amp;quot;We Are Never..&amp;quot; ♪” and “ ♪ &amp;quot;Crafting Recipes&amp;quot; A Minecraft Parody Song of One Direction&#039;s &amp;quot;Little Things&amp;quot; ♪” are counted, this is Dan’s fourth music video.&lt;br /&gt;
**Dan created Mirror, Sailboat that took him under 4 hours to make.&lt;br /&gt;
*The song does not play for the entirety of the video. During the last few seconds of the video, the characters appear to &amp;quot;poof&amp;quot; away and text that reads &amp;quot;&#039;&#039;welcome to my brain. -DanTDM&#039;&#039;&amp;quot; appears.&lt;br /&gt;
* YouTuber Endigo made a remix of the song &amp;lt;ref&amp;gt;https://www.youtube.com/watch?v=K4zFQMr5gCA&amp;lt;/ref&amp;gt;&lt;br /&gt;
== Music ==&lt;br /&gt;
* 0:00 to 1:06: &#039;&#039;&#039;Mirror, Sailboat.&#039;&#039;&#039;&lt;br /&gt;
== References ==&lt;br /&gt;
[[Category:2018 Videos]]&lt;br /&gt;
[[Category:Video Pages]]&lt;br /&gt;
[[Category:Music]]&lt;/div&gt;</summary>
		<author><name>ScrapBlox</name></author>
	</entry>
</feed>