<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[MyRPG - All Forums]]></title>
		<link>https://mybb-rpg.com/</link>
		<description><![CDATA[MyRPG - https://mybb-rpg.com]]></description>
		<pubDate>Mon, 27 Apr 2026 13:34:56 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[[FREE] Quick List Style Navigation Bar w/ Sub Links - NON Responsive]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=568</link>
			<pubDate>Wed, 22 Apr 2026 12:40:31 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=1">latrodectus</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=568</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.ibb.co/ymBHWzGK/Code-Bits-FREE-Quick-List-Style-Navigation-Bar-w-Sub-Links-NON-Responsive.gif" loading="lazy"  alt="[Image: Code-Bits-FREE-Quick-List-Style-Navigati...onsive.gif]" class="mycode_img" /></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">CSS</span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/**<br />
&nbsp;&nbsp;Code provided by Latrodectus (aka Widow/c.widow) FREE of any charges.<br />
&nbsp;&nbsp;Build upon, modify, use in your custom mybb themes, use for your own services, etc. I literally do not care. Have fun, enjoy it, learn from it.<br />
**/<br />
<br />
/** START: IGNORE THIS (i use this to get rid of box sizing issues and to do basic formats on fiddles) **/<br />
*, *:before, *:after { box-sizing: border-box; }<br />
body { margin: 0; padding: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-size: 15px; }<br />
.content-wrapper { max-width: 1350px; margin: 0 auto; }<br />
/** END: IGNORE THIS **/<br />
<br />
/** START: VARIABLES (you can like not use these if you wish not to, just replace the variable in the css areas below with direct colors) **/<br />
:root {<br />
&nbsp;&nbsp;--main-menu-bg-color: rgb(21, 21, 21);<br />
&nbsp;&nbsp;--main-menu-txt-color: rgb(214, 214, 214);<br />
&nbsp;&nbsp;--main-menu-lnk-color: rgb(236, 236, 236);<br />
&nbsp;&nbsp;--main-menu-lnk-hov-color: rgb(255, 255, 255);<br />
&nbsp;&nbsp;--main-menu-child-bg-color: rgb(34, 34, 34);<br />
&nbsp;&nbsp;--main-menu-child-txt-color: rgb(206, 206, 206);<br />
&nbsp;&nbsp;--main-menu-child-lnk-color: rgb(214, 214, 214);<br />
&nbsp;&nbsp;--main-menu-child-lnk-hov-color: rgb(239, 239, 239);<br />
}<br />
/** END: VARIABLES **/<br />
<br />
.main-menu {<br />
&nbsp;&nbsp;background: var(--main-menu-bg-color);<br />
&nbsp;&nbsp;color: var(--main-menu-txt-color);<br />
}<br />
.main-menu a {<br />
&nbsp;&nbsp;color: var(--main-menu-lnk-color);<br />
&nbsp;&nbsp;transition: all 0.3s ease-in-out;<br />
&nbsp;&nbsp;text-decoration: none;<br />
}<br />
.main-menu a:hover {<br />
&nbsp;&nbsp;color: var(--main-menu-lnk-hov-color);<br />
}<br />
<br />
ul#ul-navigation,<br />
ul#ul-navigation ul {<br />
&nbsp;&nbsp;width: 100%;<br />
&nbsp;&nbsp;list-style-type: none;<br />
&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;margin: 0;<br />
&nbsp;&nbsp;display: flex;<br />
}<br />
ul#ul-navigation {<br />
&nbsp;&nbsp;flex-direction: row;<br />
&nbsp;&nbsp;justify-content: center;<br />
&nbsp;&nbsp;gap: 1rem;<br />
}<br />
ul#ul-navigation ul {<br />
&nbsp;&nbsp;flex-direction: column;<br />
&nbsp;&nbsp;gap: 0;<br />
}<br />
<br />
ul#ul-navigation &gt; li {<br />
&nbsp;&nbsp;position: relative;<br />
&nbsp;&nbsp;flex: 1 1;<br />
&nbsp;&nbsp;min-width: 150px;<br />
}<br />
<br />
ul#ul-navigation li &gt; a {<br />
&nbsp;&nbsp;display: flex;<br />
&nbsp;&nbsp;align-items: center;<br />
&nbsp;&nbsp;justify-content: space-between;<br />
&nbsp;&nbsp;gap: 0.5rem;<br />
&nbsp;&nbsp;padding: 1rem 0.5rem;<br />
}<br />
ul#ul-navigation &gt; li.has-child &gt; a::after {<br />
&nbsp;&nbsp;content: "";<br />
&nbsp;&nbsp;width: 0;<br />
&nbsp;&nbsp;height: 0;<br />
&nbsp;&nbsp;border-left: 5px solid transparent;<br />
&nbsp;&nbsp;border-right: 5px solid transparent;<br />
&nbsp;&nbsp;border-top: 5px solid currentColor;<br />
&nbsp;&nbsp;transition: transform 0.3s ease-in-out;<br />
}<br />
ul#ul-navigation &gt; li.has-child:hover &gt; a::after {<br />
&nbsp;&nbsp;transform: rotate(180deg);<br />
}<br />
<br />
ul#ul-navigation ul#ul-navigation-child {<br />
&nbsp;&nbsp;visibility: hidden;<br />
&nbsp;&nbsp;opacity: 0;<br />
&nbsp;&nbsp;position: absolute;<br />
&nbsp;&nbsp;width: 100%;<br />
&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;transition: all 0.3s ease-in-out;<br />
&nbsp;&nbsp;background: var(--main-menu-child-bg-color);<br />
&nbsp;&nbsp;color: var(--main-menu-child-txt-color);<br />
&nbsp;&nbsp;top: 100%;<br />
&nbsp;&nbsp;left: 0;<br />
}<br />
ul#ul-navigation ul#ul-navigation-child a {<br />
&nbsp;&nbsp;color: var(--main-menu-child-lnk-color);<br />
}<br />
ul#ul-navigation ul#ul-navigation-child a:hover {<br />
&nbsp;&nbsp;color: var(--main-menu-child-lnk-hov-color);<br />
}<br />
<br />
ul#ul-navigation li.has-child:hover &gt; ul#ul-navigation-child {<br />
&nbsp;&nbsp;visibility: visible;<br />
&nbsp;&nbsp;opacity: 1;<br />
}</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">HTML</span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;div class="main-menu"&gt;<br />
&nbsp;&nbsp;&lt;div class="content-wrapper"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/index.php"&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="has-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="/handbook.php"&gt;Handbook&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/handbook.php?page=rules"&gt;Rules&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/handbook.php?page=character-creation"&gt;Character Creation&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/handbook.php?page=staff"&gt;Staff&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/memberlist.php"&gt;Accounts&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/search.php"&gt;Search&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="has-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=""&gt;Link&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="has-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=""&gt;Link&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&lt;/div&gt;<br />
&lt;/div&gt;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.ibb.co/ymBHWzGK/Code-Bits-FREE-Quick-List-Style-Navigation-Bar-w-Sub-Links-NON-Responsive.gif" loading="lazy"  alt="[Image: Code-Bits-FREE-Quick-List-Style-Navigati...onsive.gif]" class="mycode_img" /></div>
<br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">CSS</span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/**<br />
&nbsp;&nbsp;Code provided by Latrodectus (aka Widow/c.widow) FREE of any charges.<br />
&nbsp;&nbsp;Build upon, modify, use in your custom mybb themes, use for your own services, etc. I literally do not care. Have fun, enjoy it, learn from it.<br />
**/<br />
<br />
/** START: IGNORE THIS (i use this to get rid of box sizing issues and to do basic formats on fiddles) **/<br />
*, *:before, *:after { box-sizing: border-box; }<br />
body { margin: 0; padding: 0; font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-size: 15px; }<br />
.content-wrapper { max-width: 1350px; margin: 0 auto; }<br />
/** END: IGNORE THIS **/<br />
<br />
/** START: VARIABLES (you can like not use these if you wish not to, just replace the variable in the css areas below with direct colors) **/<br />
:root {<br />
&nbsp;&nbsp;--main-menu-bg-color: rgb(21, 21, 21);<br />
&nbsp;&nbsp;--main-menu-txt-color: rgb(214, 214, 214);<br />
&nbsp;&nbsp;--main-menu-lnk-color: rgb(236, 236, 236);<br />
&nbsp;&nbsp;--main-menu-lnk-hov-color: rgb(255, 255, 255);<br />
&nbsp;&nbsp;--main-menu-child-bg-color: rgb(34, 34, 34);<br />
&nbsp;&nbsp;--main-menu-child-txt-color: rgb(206, 206, 206);<br />
&nbsp;&nbsp;--main-menu-child-lnk-color: rgb(214, 214, 214);<br />
&nbsp;&nbsp;--main-menu-child-lnk-hov-color: rgb(239, 239, 239);<br />
}<br />
/** END: VARIABLES **/<br />
<br />
.main-menu {<br />
&nbsp;&nbsp;background: var(--main-menu-bg-color);<br />
&nbsp;&nbsp;color: var(--main-menu-txt-color);<br />
}<br />
.main-menu a {<br />
&nbsp;&nbsp;color: var(--main-menu-lnk-color);<br />
&nbsp;&nbsp;transition: all 0.3s ease-in-out;<br />
&nbsp;&nbsp;text-decoration: none;<br />
}<br />
.main-menu a:hover {<br />
&nbsp;&nbsp;color: var(--main-menu-lnk-hov-color);<br />
}<br />
<br />
ul#ul-navigation,<br />
ul#ul-navigation ul {<br />
&nbsp;&nbsp;width: 100%;<br />
&nbsp;&nbsp;list-style-type: none;<br />
&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;margin: 0;<br />
&nbsp;&nbsp;display: flex;<br />
}<br />
ul#ul-navigation {<br />
&nbsp;&nbsp;flex-direction: row;<br />
&nbsp;&nbsp;justify-content: center;<br />
&nbsp;&nbsp;gap: 1rem;<br />
}<br />
ul#ul-navigation ul {<br />
&nbsp;&nbsp;flex-direction: column;<br />
&nbsp;&nbsp;gap: 0;<br />
}<br />
<br />
ul#ul-navigation &gt; li {<br />
&nbsp;&nbsp;position: relative;<br />
&nbsp;&nbsp;flex: 1 1;<br />
&nbsp;&nbsp;min-width: 150px;<br />
}<br />
<br />
ul#ul-navigation li &gt; a {<br />
&nbsp;&nbsp;display: flex;<br />
&nbsp;&nbsp;align-items: center;<br />
&nbsp;&nbsp;justify-content: space-between;<br />
&nbsp;&nbsp;gap: 0.5rem;<br />
&nbsp;&nbsp;padding: 1rem 0.5rem;<br />
}<br />
ul#ul-navigation &gt; li.has-child &gt; a::after {<br />
&nbsp;&nbsp;content: "";<br />
&nbsp;&nbsp;width: 0;<br />
&nbsp;&nbsp;height: 0;<br />
&nbsp;&nbsp;border-left: 5px solid transparent;<br />
&nbsp;&nbsp;border-right: 5px solid transparent;<br />
&nbsp;&nbsp;border-top: 5px solid currentColor;<br />
&nbsp;&nbsp;transition: transform 0.3s ease-in-out;<br />
}<br />
ul#ul-navigation &gt; li.has-child:hover &gt; a::after {<br />
&nbsp;&nbsp;transform: rotate(180deg);<br />
}<br />
<br />
ul#ul-navigation ul#ul-navigation-child {<br />
&nbsp;&nbsp;visibility: hidden;<br />
&nbsp;&nbsp;opacity: 0;<br />
&nbsp;&nbsp;position: absolute;<br />
&nbsp;&nbsp;width: 100%;<br />
&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;transition: all 0.3s ease-in-out;<br />
&nbsp;&nbsp;background: var(--main-menu-child-bg-color);<br />
&nbsp;&nbsp;color: var(--main-menu-child-txt-color);<br />
&nbsp;&nbsp;top: 100%;<br />
&nbsp;&nbsp;left: 0;<br />
}<br />
ul#ul-navigation ul#ul-navigation-child a {<br />
&nbsp;&nbsp;color: var(--main-menu-child-lnk-color);<br />
}<br />
ul#ul-navigation ul#ul-navigation-child a:hover {<br />
&nbsp;&nbsp;color: var(--main-menu-child-lnk-hov-color);<br />
}<br />
<br />
ul#ul-navigation li.has-child:hover &gt; ul#ul-navigation-child {<br />
&nbsp;&nbsp;visibility: visible;<br />
&nbsp;&nbsp;opacity: 1;<br />
}</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">HTML</span></span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;div class="main-menu"&gt;<br />
&nbsp;&nbsp;&lt;div class="content-wrapper"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/index.php"&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="has-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href="/handbook.php"&gt;Handbook&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/handbook.php?page=rules"&gt;Rules&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/handbook.php?page=character-creation"&gt;Character Creation&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/handbook.php?page=staff"&gt;Staff&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/memberlist.php"&gt;Accounts&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href="/search.php"&gt;Search&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="has-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=""&gt;Link&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="has-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;a href=""&gt;Link&lt;/a&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;ul id="ul-navigation-child"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li&gt;&lt;a href=""&gt;Link&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;<br />
&nbsp;&nbsp;&lt;/div&gt;<br />
&lt;/div&gt;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[trigger warning ; 21+]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=567</link>
			<pubDate>Wed, 15 Apr 2026 21:51:29 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=0">Grymm</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=567</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><a href="http://decadencerpg.jcink.net/index.php" target="_blank" rel="noopener" class="mycode_url"><img src="https://files.jcink.net/uploads/decadencerpg/AD.png" loading="lazy"  alt="[Image: AD.png]" class="mycode_img" /></a><br />
<a href="http://decadencerpg.jcink.net/index.php" target="_blank" rel="noopener" class="mycode_url">HOME</a>  ☠  <a href="http://decadencerpg.jcink.net/index.php?showtopic=23" target="_blank" rel="noopener" class="mycode_url">FACE CLAIMS</a>  ☠  <a href="https://decadencerpg.jcink.net/index.php?act=Pages&amp;pid=14" target="_blank" rel="noopener" class="mycode_url">GUIDEBOOK</a>  ☠  <a href="http://decadencerpg.jcink.net/index.php?showforum=37" target="_blank" rel="noopener" class="mycode_url">WANT ADS</a>  ☠  <a href="http://decadencerpg.jcink.net/index.php?showforum=35" target="_blank" rel="noopener" class="mycode_url">CANONS</a> ☠ <a href="http://decadencerpg.jcink.net/index.php?showforum=24" target="_blank" rel="noopener" class="mycode_url">ADVERTISEMENTS</a><br />
<br />
The old world fell, and the monsters inherited the ashes.<br />
<br />
Sacramento stands as their empire: a city of vampire rulers, witch-crafted power, werewolf enforcers, and draka shadows. All the while humans and shifters cling to freedom in the Wilds. Cursed forests, haunted ruins, and the awakening realm of Strathyre breathe life into a world of dark fantasy and intricate lore.<br />
<br />
This is where beauty devours, magic corrupts, and the story cuts deep.<br />
<br />
If you crave deep lore, ruthless politics, eldritch beauty, and a world built to swallow you whole then come write in the dark.<br />
<br />
But understand why we call it Trigger Warning.<br />
<br />
</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><a href="http://decadencerpg.jcink.net/index.php" target="_blank" rel="noopener" class="mycode_url"><img src="https://files.jcink.net/uploads/decadencerpg/AD.png" loading="lazy"  alt="[Image: AD.png]" class="mycode_img" /></a><br />
<a href="http://decadencerpg.jcink.net/index.php" target="_blank" rel="noopener" class="mycode_url">HOME</a>  ☠  <a href="http://decadencerpg.jcink.net/index.php?showtopic=23" target="_blank" rel="noopener" class="mycode_url">FACE CLAIMS</a>  ☠  <a href="https://decadencerpg.jcink.net/index.php?act=Pages&amp;pid=14" target="_blank" rel="noopener" class="mycode_url">GUIDEBOOK</a>  ☠  <a href="http://decadencerpg.jcink.net/index.php?showforum=37" target="_blank" rel="noopener" class="mycode_url">WANT ADS</a>  ☠  <a href="http://decadencerpg.jcink.net/index.php?showforum=35" target="_blank" rel="noopener" class="mycode_url">CANONS</a> ☠ <a href="http://decadencerpg.jcink.net/index.php?showforum=24" target="_blank" rel="noopener" class="mycode_url">ADVERTISEMENTS</a><br />
<br />
The old world fell, and the monsters inherited the ashes.<br />
<br />
Sacramento stands as their empire: a city of vampire rulers, witch-crafted power, werewolf enforcers, and draka shadows. All the while humans and shifters cling to freedom in the Wilds. Cursed forests, haunted ruins, and the awakening realm of Strathyre breathe life into a world of dark fantasy and intricate lore.<br />
<br />
This is where beauty devours, magic corrupts, and the story cuts deep.<br />
<br />
If you crave deep lore, ruthless politics, eldritch beauty, and a world built to swallow you whole then come write in the dark.<br />
<br />
But understand why we call it Trigger Warning.<br />
<br />
</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[php in Templates help]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=566</link>
			<pubDate>Wed, 08 Apr 2026 03:49:16 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=31">ThistleProse</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=566</guid>
			<description><![CDATA[Hello folks,<br />
<br />
No idea what is going on and its making my poor brain bleed lol.<br />
<br />
this is the code I am using in a global template:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?=build_profile_link</span><span style="color: #007700">(</span><span style="color: #0000BB">format_name</span><span style="color: #007700">(</span><span style="color: #0000BB">htmlspecialchars_uni</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'username'</span><span style="color: #007700">]),&nbsp;</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'usergroup'</span><span style="color: #007700">],</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'displaygroup'</span><span style="color: #007700">]),&nbsp;</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'uid'</span><span style="color: #007700">])</span><span style="color: #0000BB">?&gt;</span></code></div></div></div><br />
<br />
This code is working perfectly fine on the original forms:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/flightsworking.png" loading="lazy"  alt="[Image: flightsworking.png]" class="mycode_img" /><br />
<br />
It is not, however, working at all on the clone forums:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/flightsbroken.png" loading="lazy"  alt="[Image: flightsbroken.png]" class="mycode_img" /><br />
<br />
Other php-in-templates stuff is working fine:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/otherphpshit.png" loading="lazy"  alt="[Image: otherphpshit.png]" class="mycode_img" /><br />
<br />
The setvar template is all good to go too...<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/setvar.png" loading="lazy"  alt="[Image: setvar.png]" class="mycode_img" /><br />
<br />
<br />
so I really don't know why it isn't working, and I'm not sure what I'm missing to make it actually kick into gear?<br />
<br />
the new forums are a literal clone; I moved across everything except the plugins and themes - which were re-installed as needed. I don't think this should affect it but um, who knows? I don't think I missed a template but also could very well have.<br />
<br />
x.x]]></description>
			<content:encoded><![CDATA[Hello folks,<br />
<br />
No idea what is going on and its making my poor brain bleed lol.<br />
<br />
this is the code I am using in a global template:<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?=build_profile_link</span><span style="color: #007700">(</span><span style="color: #0000BB">format_name</span><span style="color: #007700">(</span><span style="color: #0000BB">htmlspecialchars_uni</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'username'</span><span style="color: #007700">]),&nbsp;</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'usergroup'</span><span style="color: #007700">],</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'displaygroup'</span><span style="color: #007700">]),&nbsp;</span><span style="color: #0000BB">&#36;GLOBALS</span><span style="color: #007700">[</span><span style="color: #DD0000">'tplvars'</span><span style="color: #007700">][</span><span style="color: #DD0000">'user_casa'</span><span style="color: #007700">][</span><span style="color: #DD0000">'uid'</span><span style="color: #007700">])</span><span style="color: #0000BB">?&gt;</span></code></div></div></div><br />
<br />
This code is working perfectly fine on the original forms:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/flightsworking.png" loading="lazy"  alt="[Image: flightsworking.png]" class="mycode_img" /><br />
<br />
It is not, however, working at all on the clone forums:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/flightsbroken.png" loading="lazy"  alt="[Image: flightsbroken.png]" class="mycode_img" /><br />
<br />
Other php-in-templates stuff is working fine:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/otherphpshit.png" loading="lazy"  alt="[Image: otherphpshit.png]" class="mycode_img" /><br />
<br />
The setvar template is all good to go too...<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/Pern/setvar.png" loading="lazy"  alt="[Image: setvar.png]" class="mycode_img" /><br />
<br />
<br />
so I really don't know why it isn't working, and I'm not sure what I'm missing to make it actually kick into gear?<br />
<br />
the new forums are a literal clone; I moved across everything except the plugins and themes - which were re-installed as needed. I don't think this should affect it but um, who knows? I don't think I missed a template but also could very well have.<br />
<br />
x.x]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[WARRIORS: Itheria | A Fantasy Warrior cats AU | Canines AND Felines]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=565</link>
			<pubDate>Sun, 05 Apr 2026 05:26:15 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=346">Noella</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=565</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.servimg.com/u/f26/20/62/32/74/itheri10.png" loading="lazy"  alt="[Image: itheri10.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><a href="https://discord.gg/AfzTmgVJjn" target="_blank" rel="noopener" class="mycode_url">Join Discord</a> | <a href="https://warriorsitheria.forumotion.com" target="_blank" rel="noopener" class="mycode_url">Join Forum</a><br />
<br />
WARRIORS: Itheria is a fantasy freeform roleplay set in the magical land of Itheria. Cats and dogs of varying species, both wild and domestic, have learned to share space in a clan of their choice, by order of Starclan. Not all clans will share the ideology of cats and dogs living together. A mysterious Rainbow Mist (magic to humans) has raised alarm to the inhabitants and times are changing, <span style="font-weight: bold;" class="mycode_b">1-0-2 RP rating</span>.<br />
<br />
Join us for a no word minimum and no post minimum roleplay experience where just about anything goes for the characters. We are a forum-based roleplay where you register once and that's it. We don't need biographies for characters. You register, add your character to the database, and jump into RP.<br />
<br />
We have an Original map, clans and characters, so you don't need to know the books. None of our content is intended to be followed to the tee, that includes the medicine guide, terminology and character names. So come check us out!</div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">*Please note the site is NOT mobile friendly. Desktop is recommended.*</span></div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><img src="https://i.servimg.com/u/f26/20/62/32/74/itheri10.png" loading="lazy"  alt="[Image: itheri10.png]" class="mycode_img" /></div>
<br />
<div style="text-align: center;" class="mycode_align"><a href="https://discord.gg/AfzTmgVJjn" target="_blank" rel="noopener" class="mycode_url">Join Discord</a> | <a href="https://warriorsitheria.forumotion.com" target="_blank" rel="noopener" class="mycode_url">Join Forum</a><br />
<br />
WARRIORS: Itheria is a fantasy freeform roleplay set in the magical land of Itheria. Cats and dogs of varying species, both wild and domestic, have learned to share space in a clan of their choice, by order of Starclan. Not all clans will share the ideology of cats and dogs living together. A mysterious Rainbow Mist (magic to humans) has raised alarm to the inhabitants and times are changing, <span style="font-weight: bold;" class="mycode_b">1-0-2 RP rating</span>.<br />
<br />
Join us for a no word minimum and no post minimum roleplay experience where just about anything goes for the characters. We are a forum-based roleplay where you register once and that's it. We don't need biographies for characters. You register, add your character to the database, and jump into RP.<br />
<br />
We have an Original map, clans and characters, so you don't need to know the books. None of our content is intended to be followed to the tee, that includes the medicine guide, terminology and character names. So come check us out!</div>
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b">*Please note the site is NOT mobile friendly. Desktop is recommended.*</span></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[DAMASCUS ROAD | 25+ au original x-men trilogy rp]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=564</link>
			<pubDate>Mon, 30 Mar 2026 07:15:46 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=0">DR Admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=564</guid>
			<description><![CDATA[<img src="https://files.jcink.net/uploads2/xmen/images/banner3.png" loading="lazy"  alt="[Image: banner3.png]" class="mycode_img" /><br />
<a href="https://xmenrp.com" target="_blank" rel="noopener" class="mycode_url">HOME</a> | <a href="https://xmenrp.com/index.php?showtopic=5" target="_blank" rel="noopener" class="mycode_url">CANONS</a> | <a href="https://xmenrp.com/index.php?act=Pages&amp;kid=GUIDEBOOK#rosters" target="_blank" rel="noopener" class="mycode_url">CLAIMS</a> | <a href="https://xmenrp.com/index.php?act=Pages&amp;kid=GUIDEBOOK" target="_blank" rel="noopener" class="mycode_url">GUIDEBOOK</a> | <a href="https://discord.gg/N6FBqzwCHd" target="_blank" rel="noopener" class="mycode_url">DISCORD</a><br />
<br />
Mutants have it tough. In a world that hates them, fitting in is harder than ever. District X is filled to the brim with fleeing mutants, the M.R.D. is on high alert patrolling the streets of Manhattan and stationing themselves outside Xavier's mansion. But the X-Men continue to operate, and while evangelical megalomaniacs like Bob Bell continue to spew their anti-mutant sentiments, peace is pushed for between humans and their evolutionary counterparts. Sides are quickly forming.<br />
<br />
Which one will you choose?]]></description>
			<content:encoded><![CDATA[<img src="https://files.jcink.net/uploads2/xmen/images/banner3.png" loading="lazy"  alt="[Image: banner3.png]" class="mycode_img" /><br />
<a href="https://xmenrp.com" target="_blank" rel="noopener" class="mycode_url">HOME</a> | <a href="https://xmenrp.com/index.php?showtopic=5" target="_blank" rel="noopener" class="mycode_url">CANONS</a> | <a href="https://xmenrp.com/index.php?act=Pages&amp;kid=GUIDEBOOK#rosters" target="_blank" rel="noopener" class="mycode_url">CLAIMS</a> | <a href="https://xmenrp.com/index.php?act=Pages&amp;kid=GUIDEBOOK" target="_blank" rel="noopener" class="mycode_url">GUIDEBOOK</a> | <a href="https://discord.gg/N6FBqzwCHd" target="_blank" rel="noopener" class="mycode_url">DISCORD</a><br />
<br />
Mutants have it tough. In a world that hates them, fitting in is harder than ever. District X is filled to the brim with fleeing mutants, the M.R.D. is on high alert patrolling the streets of Manhattan and stationing themselves outside Xavier's mansion. But the X-Men continue to operate, and while evangelical megalomaniacs like Bob Bell continue to spew their anti-mutant sentiments, peace is pushed for between humans and their evolutionary counterparts. Sides are quickly forming.<br />
<br />
Which one will you choose?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[Help] UCP One Page Weird?]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=563</link>
			<pubDate>Fri, 27 Mar 2026 03:34:50 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=31">ThistleProse</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=563</guid>
			<description><![CDATA[Hi so, I have no idea what is going on here ;--;<br />
<br />
Here, we have what the title bars <span style="font-style: italic;" class="mycode_i">should</span> look like:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/UCP01.png" loading="lazy"  alt="[Image: UCP01.png]" class="mycode_img" /><br />
<br />
Here, we have the Timeline moderation page... which for some reason is getting hinky with borders?! Borders <span style="font-style: italic;" class="mycode_i">everywhere</span>!<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/UCP02.png" loading="lazy"  alt="[Image: UCP02.png]" class="mycode_img" /><br />
<br />
I CANNOT GET RID OF THEM ;--;<br />
<br />
The code is <span style="font-style: italic;" class="mycode_i">exactly the same</span> for both pages.<br />
<br />
IT MAKES NO SENSE GUYS ;---;<br />
<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/InsepctCP2.png" loading="lazy"  alt="[Image: InsepctCP2.png]" class="mycode_img" /><br />
<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/InspectCP01.png" loading="lazy"  alt="[Image: InspectCP01.png]" class="mycode_img" /><br />
<br />
Please save my sanity ;--;]]></description>
			<content:encoded><![CDATA[Hi so, I have no idea what is going on here ;--;<br />
<br />
Here, we have what the title bars <span style="font-style: italic;" class="mycode_i">should</span> look like:<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/UCP01.png" loading="lazy"  alt="[Image: UCP01.png]" class="mycode_img" /><br />
<br />
Here, we have the Timeline moderation page... which for some reason is getting hinky with borders?! Borders <span style="font-style: italic;" class="mycode_i">everywhere</span>!<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/UCP02.png" loading="lazy"  alt="[Image: UCP02.png]" class="mycode_img" /><br />
<br />
I CANNOT GET RID OF THEM ;--;<br />
<br />
The code is <span style="font-style: italic;" class="mycode_i">exactly the same</span> for both pages.<br />
<br />
IT MAKES NO SENSE GUYS ;---;<br />
<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/InsepctCP2.png" loading="lazy"  alt="[Image: InsepctCP2.png]" class="mycode_img" /><br />
<br />
<img src="https://file.garden/aOHx1vRFSTJFOJE-/MyBBHatesMe/InspectCP01.png" loading="lazy"  alt="[Image: InspectCP01.png]" class="mycode_img" /><br />
<br />
Please save my sanity ;--;]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Site Timeline]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=562</link>
			<pubDate>Fri, 27 Mar 2026 01:04:58 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=31">ThistleProse</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=562</guid>
			<description><![CDATA[Hello,<br />
<br />
I translated the Timeline 1.0 found <a href="https://storming-gates.de/showthread.php?tid=1015616&amp;page=3" target="_blank" rel="noopener" class="mycode_url">here</a> into English.<br />
<br />
I think I caught all the German, but I may have missed some.<br />
<br />
I probably can't help with any actual issues, but I'm sure we can all pitch in if there are any issues!<br />
<br />
&lt;3<br />
<br />
<br />
<br />
INSTALLATION:<br />
timeline.php goes in inc/plugins<br />
timeline.lang.php goes in inc/languages/english<br />
<br />
ACTIVATE<br />
SETTINGS: Board Settings -&gt; Scroll and find 'Timeline' to apply Settings<br />
<br />
VIEW:<br />
[url]/misc.php?action=timeline<br />
<br />
MODERATION:<br />
[url]/modcp.php?action=timeline<br />
<br />
Templates are in individual Themes<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://mybb-rpg.com/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" style="vertical-align: sub;" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=21" target="_blank" title="">timeline.lang.php</a> (Size: 1.04 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://mybb-rpg.com/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" style="vertical-align: sub;" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=22" target="_blank" title="">timeline.php</a> (Size: 48.96 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I translated the Timeline 1.0 found <a href="https://storming-gates.de/showthread.php?tid=1015616&amp;page=3" target="_blank" rel="noopener" class="mycode_url">here</a> into English.<br />
<br />
I think I caught all the German, but I may have missed some.<br />
<br />
I probably can't help with any actual issues, but I'm sure we can all pitch in if there are any issues!<br />
<br />
&lt;3<br />
<br />
<br />
<br />
INSTALLATION:<br />
timeline.php goes in inc/plugins<br />
timeline.lang.php goes in inc/languages/english<br />
<br />
ACTIVATE<br />
SETTINGS: Board Settings -&gt; Scroll and find 'Timeline' to apply Settings<br />
<br />
VIEW:<br />
[url]/misc.php?action=timeline<br />
<br />
MODERATION:<br />
[url]/modcp.php?action=timeline<br />
<br />
Templates are in individual Themes<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://mybb-rpg.com/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" style="vertical-align: sub;" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=21" target="_blank" title="">timeline.lang.php</a> (Size: 1.04 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://mybb-rpg.com/images/attachtypes/php.png" title="PHP File" border="0" alt=".php" style="vertical-align: sub;" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=22" target="_blank" title="">timeline.php</a> (Size: 48.96 KB / Downloads: 0)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Multi-Register]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=561</link>
			<pubDate>Fri, 27 Mar 2026 00:57:20 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=31">ThistleProse</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=561</guid>
			<description><![CDATA[Hello!<br />
<br />
I translated the <a href="https://github.com/its-sparks-fly/multiregister-mybb" target="_blank" rel="noopener" class="mycode_url">Multi-Register</a> Plugin by <a href="https://github.com/its-sparks-fly/multiregister-mybb" target="_blank" rel="noopener" class="mycode_url">its-sparks-fly</a> into English.<br />
<br />
You can find the English branch <a href="https://github.com/ThistleProse/multiregister-mybb-English" target="_blank" rel="noopener" class="mycode_url">here</a>.<br />
<br />
Let me know if I missed a bit of German <img src="https://mybb-rpg.com/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></description>
			<content:encoded><![CDATA[Hello!<br />
<br />
I translated the <a href="https://github.com/its-sparks-fly/multiregister-mybb" target="_blank" rel="noopener" class="mycode_url">Multi-Register</a> Plugin by <a href="https://github.com/its-sparks-fly/multiregister-mybb" target="_blank" rel="noopener" class="mycode_url">its-sparks-fly</a> into English.<br />
<br />
You can find the English branch <a href="https://github.com/ThistleProse/multiregister-mybb-English" target="_blank" rel="noopener" class="mycode_url">here</a>.<br />
<br />
Let me know if I missed a bit of German <img src="https://mybb-rpg.com/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Newpoints Error]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=560</link>
			<pubDate>Tue, 24 Mar 2026 18:01:55 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=7">Stack</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=560</guid>
			<description><![CDATA[Well, I have a brand new issue w newpoints I've never received.<br />
when trying to go to "/newpoints.php?action=shop" I get a 500 error. When checking my error log, this is the error I get:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[24-Mar-2026 22:56:02 UTC] PHP Fatal error:&nbsp;&nbsp;Uncaught TypeError: Argument 2 passed to Newpoints&#92;Core&#92;run_hooks() must be of the type array, string given, called in /home/offtlkwz/public_html/inc/plugins/newpoints/plugins/Shop/hooks/forum.php on line 1721 and defined in /home/offtlkwz/public_html/inc/plugins/newpoints/core.php:100<br />
Stack trace:<br />
#0 /home/offtlkwz/public_html/inc/plugins/newpoints/plugins/Shop/hooks/forum.php(1721): Newpoints&#92;Core&#92;run_hooks('shop_end', '&lt;!-- start: new...')<br />
#1 /home/offtlkwz/public_html/inc/class_plugins.php(142): Newpoints&#92;Shop&#92;Hooks&#92;Forum&#92;newpoints_terminate(Array)<br />
#2 /home/offtlkwz/public_html/inc/plugins/newpoints/core.php(109): pluginSystem-&gt;run_hooks(Array, Array)<br />
#3 /home/offtlkwz/public_html/newpoints.php(984): Newpoints&#92;Core&#92;run_hooks('terminate')<br />
#4 {main}<br />
&nbsp;&nbsp;thrown in /home/offtlkwz/public_html/inc/plugins/newpoints/core.php on line 100</code></div></div><br />
and this is the 1721 line:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;page = run_hooks('shop_end', &#36;page);</code></div></div><br />
wtaf is happening lmao.]]></description>
			<content:encoded><![CDATA[Well, I have a brand new issue w newpoints I've never received.<br />
when trying to go to "/newpoints.php?action=shop" I get a 500 error. When checking my error log, this is the error I get:<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>[24-Mar-2026 22:56:02 UTC] PHP Fatal error:&nbsp;&nbsp;Uncaught TypeError: Argument 2 passed to Newpoints&#92;Core&#92;run_hooks() must be of the type array, string given, called in /home/offtlkwz/public_html/inc/plugins/newpoints/plugins/Shop/hooks/forum.php on line 1721 and defined in /home/offtlkwz/public_html/inc/plugins/newpoints/core.php:100<br />
Stack trace:<br />
#0 /home/offtlkwz/public_html/inc/plugins/newpoints/plugins/Shop/hooks/forum.php(1721): Newpoints&#92;Core&#92;run_hooks('shop_end', '&lt;!-- start: new...')<br />
#1 /home/offtlkwz/public_html/inc/class_plugins.php(142): Newpoints&#92;Shop&#92;Hooks&#92;Forum&#92;newpoints_terminate(Array)<br />
#2 /home/offtlkwz/public_html/inc/plugins/newpoints/core.php(109): pluginSystem-&gt;run_hooks(Array, Array)<br />
#3 /home/offtlkwz/public_html/newpoints.php(984): Newpoints&#92;Core&#92;run_hooks('terminate')<br />
#4 {main}<br />
&nbsp;&nbsp;thrown in /home/offtlkwz/public_html/inc/plugins/newpoints/core.php on line 100</code></div></div><br />
and this is the 1721 line:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;page = run_hooks('shop_end', &#36;page);</code></div></div><br />
wtaf is happening lmao.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Trigger Warning]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=559</link>
			<pubDate>Mon, 16 Mar 2026 14:46:27 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=7">Stack</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=559</guid>
			<description><![CDATA[An English translated version of a lovely German plugin<br />
<br />
<a href="https://github.com/flacknstack/TriggerWarning/tree/main" target="_blank" rel="noopener" class="mycode_url">Trigger Warning Plugin</a><br />
<br />
A very handy plugin! This allows your members to specify trigger warnings on their profiles and will create an easy list for everyone to look at.<br />
<br />
<img src="https://i.postimg.cc/MpdwzCD0/image.png" loading="lazy"  alt="[Image: image.png]" class="mycode_img" /><br />
<br />
It also offers a dedicated place for you to place trigger warnings for your post when making a new thread. When a user selects that thread and their trigger warnings equal the warnings placed on the thread, they get a nice big overlay warning that makes sure they know the thread is triggering specifically to them - and also lists those triggers out! The user then has the option to return to index or read anyway. It's like a better version of the NSFW a lot of people tend to use for triggers<br />
<img src="https://i.postimg.cc/YqxKx5TL/image.png" loading="lazy"  alt="[Image: image.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[An English translated version of a lovely German plugin<br />
<br />
<a href="https://github.com/flacknstack/TriggerWarning/tree/main" target="_blank" rel="noopener" class="mycode_url">Trigger Warning Plugin</a><br />
<br />
A very handy plugin! This allows your members to specify trigger warnings on their profiles and will create an easy list for everyone to look at.<br />
<br />
<img src="https://i.postimg.cc/MpdwzCD0/image.png" loading="lazy"  alt="[Image: image.png]" class="mycode_img" /><br />
<br />
It also offers a dedicated place for you to place trigger warnings for your post when making a new thread. When a user selects that thread and their trigger warnings equal the warnings placed on the thread, they get a nice big overlay warning that makes sure they know the thread is triggering specifically to them - and also lists those triggers out! The user then has the option to return to index or read anyway. It's like a better version of the NSFW a lot of people tend to use for triggers<br />
<img src="https://i.postimg.cc/YqxKx5TL/image.png" loading="lazy"  alt="[Image: image.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[18+ | The Chronicles of Nornheim | Kingdom Hearts, Disney & FInal Fantasy]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=558</link>
			<pubDate>Fri, 13 Mar 2026 12:59:41 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=0">Teaspots</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=558</guid>
			<description><![CDATA[<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><a href="https://teacups.dralud.tk/apps/forum/" target="_blank" rel="noopener" class="mycode_url">The Chronicles of Nornheim</a></span></span><br />
<span style="font-size: 7pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Kingdom Hearts, Final Fantasy &amp; Disney server set on a new world</span></span><br />
────────────༺♡༻───────────<br />
<span style="font-style: italic;" class="mycode_i">“You were called here for a purpose. In time, all will be revealed; in time, you will have to choose.”</span><br />
<br />
This is what the Voice in your dream told you before you entered Nornheim—a world somewhat similar to yours, yet inherently different. Here, the people welcome you with open arms, and the others like you, who have been summoned by this Voice, scattered around four regions where large Crystal chambers stood, are seen with the upmost respect.<br />
<br />
You might have come back from your own demise, or simply been displaced from your world to come here; it doesn’t matter. In Nornheim, you are <span style="font-style: italic;" class="mycode_i">alive</span>.<br />
<br />
You are a Gemwalker. In the distant past, others like you entered this world, but what was their purpose?<br />
<br />
Since a new cohort of Gemwalkers started arriving, a sinister threat has emerged. They call it the Miasma—it corrupts the people, the creatures. It strikes fear and despair within those who witnessed it.<br />
<br />
Despite the looming shadows, some have found peace here. <br />
<br />
Will you be one of them?<br />
<br />
────────────༺♡༻───────────<br />
<span style="font-weight: bold;" class="mycode_b">WHAT WE OFFER</span><br />
- Canon-only server;<br />
- Chance to play NPCs coming soon!<br />
- 18+ characters and players;<br />
- Literate level of writing;<br />
- New world with original lore;<br />
- The possibility of opting in and out of NSFW content (of any kind) completely;<br />
- Comprehensive, supportive community.<br />
────────────༺♡༻───────────<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Other Notes</span>: Our server very recently moved from Discord to Nextcloud - we are still getting set up and started. So, despite the community being about one and a half years old, the story has been reset! Here is our <a href="https://teacups.dralud.tk/apps/collectives/p/ci7MdgWKM6Q7qpX/Nornheim-Rules-Events-and-Announcements-7/Directory-Where-to-Start-3679" target="_blank" rel="noopener" class="mycode_url">Getting Started</a> page!<br />
Nextcloud isn't the platform people would usually use for RP. We are here to help if you need! We've made a bunch of tutorials and our community is really helpful!<br />
<span style="font-weight: bold;" class="mycode_b">Contact Details</span>: <br />
To have access to the Guest and Staff instant messaging room: <a href="https://teacups.dralud.tk/call/9bybopcv" target="_blank" rel="noopener" class="mycode_url">https://teacups.dralud.tk/call/9bybopcv</a><br />
To have access to the Guest and Community instant messaging room: <a href="https://teacups.dralud.tk/call/dj4itkra" target="_blank" rel="noopener" class="mycode_url">https://teacups.dralud.tk/call/dj4itkra</a><br />
To the Discord: <a href="https://discord.gg/mzf7ehfpuA" target="_blank" rel="noopener" class="mycode_url">https://discord.gg/mzf7ehfpuA</a>]]></description>
			<content:encoded><![CDATA[<span style="font-size: 12pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b"><a href="https://teacups.dralud.tk/apps/forum/" target="_blank" rel="noopener" class="mycode_url">The Chronicles of Nornheim</a></span></span><br />
<span style="font-size: 7pt;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Kingdom Hearts, Final Fantasy &amp; Disney server set on a new world</span></span><br />
────────────༺♡༻───────────<br />
<span style="font-style: italic;" class="mycode_i">“You were called here for a purpose. In time, all will be revealed; in time, you will have to choose.”</span><br />
<br />
This is what the Voice in your dream told you before you entered Nornheim—a world somewhat similar to yours, yet inherently different. Here, the people welcome you with open arms, and the others like you, who have been summoned by this Voice, scattered around four regions where large Crystal chambers stood, are seen with the upmost respect.<br />
<br />
You might have come back from your own demise, or simply been displaced from your world to come here; it doesn’t matter. In Nornheim, you are <span style="font-style: italic;" class="mycode_i">alive</span>.<br />
<br />
You are a Gemwalker. In the distant past, others like you entered this world, but what was their purpose?<br />
<br />
Since a new cohort of Gemwalkers started arriving, a sinister threat has emerged. They call it the Miasma—it corrupts the people, the creatures. It strikes fear and despair within those who witnessed it.<br />
<br />
Despite the looming shadows, some have found peace here. <br />
<br />
Will you be one of them?<br />
<br />
────────────༺♡༻───────────<br />
<span style="font-weight: bold;" class="mycode_b">WHAT WE OFFER</span><br />
- Canon-only server;<br />
- Chance to play NPCs coming soon!<br />
- 18+ characters and players;<br />
- Literate level of writing;<br />
- New world with original lore;<br />
- The possibility of opting in and out of NSFW content (of any kind) completely;<br />
- Comprehensive, supportive community.<br />
────────────༺♡༻───────────<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Other Notes</span>: Our server very recently moved from Discord to Nextcloud - we are still getting set up and started. So, despite the community being about one and a half years old, the story has been reset! Here is our <a href="https://teacups.dralud.tk/apps/collectives/p/ci7MdgWKM6Q7qpX/Nornheim-Rules-Events-and-Announcements-7/Directory-Where-to-Start-3679" target="_blank" rel="noopener" class="mycode_url">Getting Started</a> page!<br />
Nextcloud isn't the platform people would usually use for RP. We are here to help if you need! We've made a bunch of tutorials and our community is really helpful!<br />
<span style="font-weight: bold;" class="mycode_b">Contact Details</span>: <br />
To have access to the Guest and Staff instant messaging room: <a href="https://teacups.dralud.tk/call/9bybopcv" target="_blank" rel="noopener" class="mycode_url">https://teacups.dralud.tk/call/9bybopcv</a><br />
To have access to the Guest and Community instant messaging room: <a href="https://teacups.dralud.tk/call/dj4itkra" target="_blank" rel="noopener" class="mycode_url">https://teacups.dralud.tk/call/dj4itkra</a><br />
To the Discord: <a href="https://discord.gg/mzf7ehfpuA" target="_blank" rel="noopener" class="mycode_url">https://discord.gg/mzf7ehfpuA</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Stories In Time - A Doctor Who Roleplay]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=557</link>
			<pubDate>Tue, 10 Mar 2026 02:08:48 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=0">Wonder</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=557</guid>
			<description><![CDATA[<div style="text-align: center;" class="mycode_align"><a href="https://storiesintime.jcink.net/index.php?act=idx" target="_blank" rel="noopener" class="mycode_url"><img src="https://i.postimg.cc/kXzP5HVB/Screenshot-2025-05-18-223116-3-optimized.png" loading="lazy"  alt="[Image: Screenshot-2025-05-18-223116-3-optimized.png]" class="mycode_img" /></a><br />
<br />
Across all of time and space, there is a name whispered like a secret. The Doctor. A traveller in a blue box, flying through the stars. A being of many faces—ever-changing, ever the same. Some call them hero. Others, monster. But wherever they go, stories follow. They’ve walked with ghosts, danced with emperors, wept with gods, and faced down the end of everything more than once. They are never alone. With them, companions. Ordinary people, aliens, off-world travellers, civilians living extraordinary adventures. Together, they see the universe not as it is but as it could be. For every heartbeat, for every world saved, one truth echoes through the vortex. Wherever there is darkness. There will always be The Doctor.<br />
<br />
No application required for canon characters! We want to:<br />
<br />
• Make it easier for members to jump straight into writing<br />
• Encourage more canon interaction across plots<br />
• Keep timelines active and dynamic<br />
• Reduce barriers to joining the board<br />
<br />
<a href="https://discord.gg/wqeMAjjQgs" target="_blank" rel="noopener" class="mycode_url">DISCORD</a> || <a href="https://storiesintime.jcink.net/index.php?act=idx" target="_blank" rel="noopener" class="mycode_url">INDEX</a> || <a href="https://www.tumblr.com/storiesintimedw" target="_blank" rel="noopener" class="mycode_url">TUMBLR</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=3" target="_blank" rel="noopener" class="mycode_url">WELCOME ABOARD</a> || <a href="https://storiesintime.jcink.net/index.php?showtopic=11" target="_blank" rel="noopener" class="mycode_url">PLOT</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=8" target="_blank" rel="noopener" class="mycode_url">CANONS</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=94" target="_blank" rel="noopener" class="mycode_url">ROLEPLAY FILES</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=36" target="_blank" rel="noopener" class="mycode_url">ROLEPLAY DISCUSSION</a> || <a href="https://storiesintime.jcink.net/index.php?showtopic=9" target="_blank" rel="noopener" class="mycode_url">APP</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=31" target="_blank" rel="noopener" class="mycode_url">ADS</a> | <a href="https://storiesintime.jcink.net/index.php?showtopic=12" target="_blank" rel="noopener" class="mycode_url">FACE CLAIMS</a> ||<a href="https://storiesintime.jcink.net/index.php?showtopic=13" target="_blank" rel="noopener" class="mycode_url">MEMBER DIRECTORY</a> ||<br />
<br />
You can bump your advert whenever you like on our site<br />
</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;" class="mycode_align"><a href="https://storiesintime.jcink.net/index.php?act=idx" target="_blank" rel="noopener" class="mycode_url"><img src="https://i.postimg.cc/kXzP5HVB/Screenshot-2025-05-18-223116-3-optimized.png" loading="lazy"  alt="[Image: Screenshot-2025-05-18-223116-3-optimized.png]" class="mycode_img" /></a><br />
<br />
Across all of time and space, there is a name whispered like a secret. The Doctor. A traveller in a blue box, flying through the stars. A being of many faces—ever-changing, ever the same. Some call them hero. Others, monster. But wherever they go, stories follow. They’ve walked with ghosts, danced with emperors, wept with gods, and faced down the end of everything more than once. They are never alone. With them, companions. Ordinary people, aliens, off-world travellers, civilians living extraordinary adventures. Together, they see the universe not as it is but as it could be. For every heartbeat, for every world saved, one truth echoes through the vortex. Wherever there is darkness. There will always be The Doctor.<br />
<br />
No application required for canon characters! We want to:<br />
<br />
• Make it easier for members to jump straight into writing<br />
• Encourage more canon interaction across plots<br />
• Keep timelines active and dynamic<br />
• Reduce barriers to joining the board<br />
<br />
<a href="https://discord.gg/wqeMAjjQgs" target="_blank" rel="noopener" class="mycode_url">DISCORD</a> || <a href="https://storiesintime.jcink.net/index.php?act=idx" target="_blank" rel="noopener" class="mycode_url">INDEX</a> || <a href="https://www.tumblr.com/storiesintimedw" target="_blank" rel="noopener" class="mycode_url">TUMBLR</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=3" target="_blank" rel="noopener" class="mycode_url">WELCOME ABOARD</a> || <a href="https://storiesintime.jcink.net/index.php?showtopic=11" target="_blank" rel="noopener" class="mycode_url">PLOT</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=8" target="_blank" rel="noopener" class="mycode_url">CANONS</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=94" target="_blank" rel="noopener" class="mycode_url">ROLEPLAY FILES</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=36" target="_blank" rel="noopener" class="mycode_url">ROLEPLAY DISCUSSION</a> || <a href="https://storiesintime.jcink.net/index.php?showtopic=9" target="_blank" rel="noopener" class="mycode_url">APP</a> || <a href="https://storiesintime.jcink.net/index.php?showforum=31" target="_blank" rel="noopener" class="mycode_url">ADS</a> | <a href="https://storiesintime.jcink.net/index.php?showtopic=12" target="_blank" rel="noopener" class="mycode_url">FACE CLAIMS</a> ||<a href="https://storiesintime.jcink.net/index.php?showtopic=13" target="_blank" rel="noopener" class="mycode_url">MEMBER DIRECTORY</a> ||<br />
<br />
You can bump your advert whenever you like on our site<br />
</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Rumor Mill]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=556</link>
			<pubDate>Sun, 08 Mar 2026 18:15:31 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=7">Stack</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=556</guid>
			<description><![CDATA[Back with another fun little plugin translation.<br />
<br />
<a href="https://github.com/flacknstack/RumorMill/tree/main" target="_blank" rel="noopener" class="mycode_url">Rumor Mill</a> for those of us who struggle more than a bit with utilizing xThreads for cool shit.]]></description>
			<content:encoded><![CDATA[Back with another fun little plugin translation.<br />
<br />
<a href="https://github.com/flacknstack/RumorMill/tree/main" target="_blank" rel="noopener" class="mycode_url">Rumor Mill</a> for those of us who struggle more than a bit with utilizing xThreads for cool shit.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Site Lexicon]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=555</link>
			<pubDate>Sun, 08 Mar 2026 16:05:18 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=7">Stack</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=555</guid>
			<description><![CDATA[Hello!<br />
I have translated a really cool plugin from <a href="https://github.com/little-evil-genius/Lexikon" target="_blank" rel="noopener" class="mycode_url">littleevilgenius</a><br />
<br />
Here's the english version, I think I have all the kinks worked out!<br />
<br />
<a href="https://github.com/flacknstack/Lexikon/tree/main" target="_blank" rel="noopener" class="mycode_url">English Translation</a><br />
<br />
It does require the <a href="https://github.com/flacknstack/rpgstuff_modul" target="_blank" rel="noopener" class="mycode_url">RPG Module</a> to run, which I also translated.]]></description>
			<content:encoded><![CDATA[Hello!<br />
I have translated a really cool plugin from <a href="https://github.com/little-evil-genius/Lexikon" target="_blank" rel="noopener" class="mycode_url">littleevilgenius</a><br />
<br />
Here's the english version, I think I have all the kinks worked out!<br />
<br />
<a href="https://github.com/flacknstack/Lexikon/tree/main" target="_blank" rel="noopener" class="mycode_url">English Translation</a><br />
<br />
It does require the <a href="https://github.com/flacknstack/rpgstuff_modul" target="_blank" rel="noopener" class="mycode_url">RPG Module</a> to run, which I also translated.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[guidebook set up]]></title>
			<link>https://mybb-rpg.com/showthread.php?tid=554</link>
			<pubDate>Sun, 08 Mar 2026 16:00:10 -0500</pubDate>
			<dc:creator><![CDATA[<a href="https://mybb-rpg.com/member.php?action=profile&uid=7">Stack</a>]]></dc:creator>
			<guid isPermaLink="false">https://mybb-rpg.com/showthread.php?tid=554</guid>
			<description><![CDATA[HELLO. i am utilizing the guidebook using global templates that widow shared.<br />
i also purchased <a href="https://payhip.com/b/QlxEa" target="_blank" rel="noopener" class="mycode_url">this code piece</a> and want to use the sidebar <span style="font-style: italic;" class="mycode_i">just</span> for the guidebook. i have a theme, i just need to utilize it to set up the guidebook. i have worn myself out translating all these plugins i'm tryna translate, so my brain is soup. <br />
<br />
can anyone do a quick walkthrough for me? i keep seeming to mess up trying to get it just for the guidebook styling lmao]]></description>
			<content:encoded><![CDATA[HELLO. i am utilizing the guidebook using global templates that widow shared.<br />
i also purchased <a href="https://payhip.com/b/QlxEa" target="_blank" rel="noopener" class="mycode_url">this code piece</a> and want to use the sidebar <span style="font-style: italic;" class="mycode_i">just</span> for the guidebook. i have a theme, i just need to utilize it to set up the guidebook. i have worn myself out translating all these plugins i'm tryna translate, so my brain is soup. <br />
<br />
can anyone do a quick walkthrough for me? i keep seeming to mess up trying to get it just for the guidebook styling lmao]]></content:encoded>
		</item>
	</channel>
</rss>