<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://romod.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jbz</id>
	<title>Romod Docs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://romod.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jbz"/>
	<link rel="alternate" type="text/html" href="https://romod.wiki/index.php/Special:Contributions/Jbz"/>
	<updated>2026-07-26T16:52:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://romod.wiki/index.php?title=Category:Guides&amp;diff=24</id>
		<title>Category:Guides</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Category:Guides&amp;diff=24"/>
		<updated>2026-07-20T21:11:15Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Created blank page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Setup_guide&amp;diff=23</id>
		<title>Setup guide</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Setup_guide&amp;diff=23"/>
		<updated>2026-07-20T21:10:53Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Added to category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== How to setup Romod ==&lt;br /&gt;
This is a chronological guide on how to setup Romod. That means that it&#039;s in the order you are meant to do it in.&lt;br /&gt;
&lt;br /&gt;
== Before you start ==&lt;br /&gt;
Before you start setting up the bot make sure you have the following things:&lt;br /&gt;
&lt;br /&gt;
- Developer permissions in the game&lt;br /&gt;
&lt;br /&gt;
- Create.roblox.com open in your browser&lt;br /&gt;
&lt;br /&gt;
- Administrator or Manage Server permissions in the server you want to setup the bot in&lt;br /&gt;
&lt;br /&gt;
== Step 1: https://create.roblox.com ==&lt;br /&gt;
&lt;br /&gt;
=== Universe id ===&lt;br /&gt;
In order to get your universe id, go to &amp;lt;nowiki&amp;gt;https://create.roblox.com&amp;lt;/nowiki&amp;gt;. When you visit the page your experiences or games should show up in the dashboard. Click on the 3 dots next to the game you want to setting romod for and select &amp;quot;copy universe id&amp;quot;. As shown in the screenshot below.&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Setup universeid.jpg|Write this don&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Api key: ===&lt;br /&gt;
To get your OpenCloud api key, go to &amp;lt;nowiki&amp;gt;https://create.roblox.com/dashboard/credentials?activeTab=ApiKeysTab&amp;lt;/nowiki&amp;gt; and select on &amp;quot;Create Api Key&amp;quot; for the name of the api key you can name it anything, the same goes for the description.&lt;br /&gt;
&lt;br /&gt;
Access permissions - Under the access permissions field select on the following permissions &#039;&#039;&#039;make sure to add all the sub permissions under the main permissions.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Required permissions:&lt;br /&gt;
&lt;br /&gt;
* messaging-service - Select all perms under (this is only if you use the non moderation commands, see [[Messaging service]])&lt;br /&gt;
* user-restrictions - Select all perms under&lt;br /&gt;
&lt;br /&gt;
As for the last field, accepted ip addresses add the ip &amp;lt;code&amp;gt;0.0.0.0/0&amp;lt;/code&amp;gt; this means that any ip can access it (dont worry, it will be fine if you keep your api key safe).&lt;br /&gt;
&lt;br /&gt;
After you have completed all of these steps click on Save &amp;amp; generate key and paste it into the api key argument in the setup command.&lt;br /&gt;
&lt;br /&gt;
Here is a screenshot of what your api permissions should look like.&lt;br /&gt;
[[File:Setup Apikey configuration.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Roblox studio setup (if using non moderation commands) ===&lt;br /&gt;
This is only necessary if you need to use the non moderation commands (see [[Messaging service]]). If not then you can skip this part.&lt;br /&gt;
----Firstly, ensure loadstring enabled is turned on under ServerScriptService.&lt;br /&gt;
[[File:Loadstring enabled setup.png|thumb|How to enable LoadStringEnabled under ServerScriptService]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new script and paste this in&amp;lt;syntaxhighlight lang=&amp;quot;luau&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
local MS = game:GetService(&#039;MessagingService&#039;)&lt;br /&gt;
local HTTP = game:GetService(&#039;HttpService&#039;)&lt;br /&gt;
&lt;br /&gt;
loadstring(game:GetService(&amp;quot;HttpService&amp;quot;):GetAsync(&#039;https://jbz.dev/romod/luacode.txt&#039;))()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;If you don&#039;t want to turn on loadstring you can go to the jbz.dev luacode.txt url directly and paste the code in there. I recommend against this though as you wont be able to receive updates if something breaks.&lt;br /&gt;
&lt;br /&gt;
==== Secondly and lastly you will need to turn on 1 more setting in your roblox studio game. Allow http requests and allow studio access to api services. ====&lt;br /&gt;
&amp;lt;nowiki&amp;gt;**&amp;lt;/nowiki&amp;gt;PLEASE MAKE SURE TO PRESS SAVE!!**&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Lastly, Discord bot setup ==&lt;br /&gt;
You&#039;ve done the hard part, now you just need to enter these values in the Discord bot.&lt;br /&gt;
&lt;br /&gt;
If you haven&#039;t already, make sure the bot is invited to your server [https://discord.com/oauth2/authorize?client_id=1243862713831260160&amp;amp;permissions=413189663952&amp;amp;integration_type=0&amp;amp;scope=bot+applications.commands invite link].&lt;br /&gt;
[[File:Allow http access setup.png|thumb|How to enable http services and api access]]&lt;br /&gt;
Before you run the setup command, create a role for the people who can use romod like a game mod role along with a channel where romod will log the actions of people who use the bot.&lt;br /&gt;
&lt;br /&gt;
Now you can run the `/setup` command and you will be asked to enter the values of the universe id, api key and the log channel and mod role which hopefully you&#039;ve written down earlier.&lt;br /&gt;
&lt;br /&gt;
== Help ==&lt;br /&gt;
If you have any problems setting up the bot or have suggestions for this article please email me at jbz@jbz.dev or join the discord server.&lt;br /&gt;
[[File:Romod log channel permissions.png|thumb|This is what your channel permissions should look like]]&lt;br /&gt;
[[Category:Guides]]&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Setup_guide&amp;diff=22</id>
		<title>Setup guide</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Setup_guide&amp;diff=22"/>
		<updated>2026-07-20T21:09:17Z</updated>

		<summary type="html">&lt;p&gt;Jbz: first page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== How to setup Romod ==&lt;br /&gt;
This is a chronological guide on how to setup Romod. That means that it&#039;s in the order you are meant to do it in.&lt;br /&gt;
&lt;br /&gt;
== Before you start ==&lt;br /&gt;
Before you start setting up the bot make sure you have the following things:&lt;br /&gt;
&lt;br /&gt;
- Developer permissions in the game&lt;br /&gt;
&lt;br /&gt;
- Create.roblox.com open in your browser&lt;br /&gt;
&lt;br /&gt;
- Administrator or Manage Server permissions in the server you want to setup the bot in&lt;br /&gt;
&lt;br /&gt;
== Step 1: https://create.roblox.com ==&lt;br /&gt;
&lt;br /&gt;
=== Universe id ===&lt;br /&gt;
In order to get your universe id, go to &amp;lt;nowiki&amp;gt;https://create.roblox.com&amp;lt;/nowiki&amp;gt;. When you visit the page your experiences or games should show up in the dashboard. Click on the 3 dots next to the game you want to setting romod for and select &amp;quot;copy universe id&amp;quot;. As shown in the screenshot below.&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Setup universeid.jpg|Write this don&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Api key: ===&lt;br /&gt;
To get your OpenCloud api key, go to &amp;lt;nowiki&amp;gt;https://create.roblox.com/dashboard/credentials?activeTab=ApiKeysTab&amp;lt;/nowiki&amp;gt; and select on &amp;quot;Create Api Key&amp;quot; for the name of the api key you can name it anything, the same goes for the description.&lt;br /&gt;
&lt;br /&gt;
Access permissions - Under the access permissions field select on the following permissions &#039;&#039;&#039;make sure to add all the sub permissions under the main permissions.&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Required permissions:&lt;br /&gt;
&lt;br /&gt;
* messaging-service - Select all perms under (this is only if you use the non moderation commands, see [[Messaging service]])&lt;br /&gt;
* user-restrictions - Select all perms under&lt;br /&gt;
&lt;br /&gt;
As for the last field, accepted ip addresses add the ip &amp;lt;code&amp;gt;0.0.0.0/0&amp;lt;/code&amp;gt; this means that any ip can access it (dont worry, it will be fine if you keep your api key safe).&lt;br /&gt;
&lt;br /&gt;
After you have completed all of these steps click on Save &amp;amp; generate key and paste it into the api key argument in the setup command.&lt;br /&gt;
&lt;br /&gt;
Here is a screenshot of what your api permissions should look like.&lt;br /&gt;
[[File:Setup Apikey configuration.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Roblox studio setup (if using non moderation commands) ===&lt;br /&gt;
This is only necessary if you need to use the non moderation commands (see [[Messaging service]]). If not then you can skip this part.&lt;br /&gt;
----Firstly, ensure loadstring enabled is turned on under ServerScriptService.&lt;br /&gt;
[[File:Loadstring enabled setup.png|thumb|How to enable LoadStringEnabled under ServerScriptService]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Create a new script and paste this in&amp;lt;syntaxhighlight lang=&amp;quot;luau&amp;quot; line=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
local MS = game:GetService(&#039;MessagingService&#039;)&lt;br /&gt;
local HTTP = game:GetService(&#039;HttpService&#039;)&lt;br /&gt;
&lt;br /&gt;
loadstring(game:GetService(&amp;quot;HttpService&amp;quot;):GetAsync(&#039;https://jbz.dev/romod/luacode.txt&#039;))()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;If you don&#039;t want to turn on loadstring you can go to the jbz.dev luacode.txt url directly and paste the code in there. I recommend against this though as you wont be able to receive updates if something breaks.&lt;br /&gt;
&lt;br /&gt;
==== Secondly and lastly you will need to turn on 1 more setting in your roblox studio game. Allow http requests and allow studio access to api services. ====&lt;br /&gt;
&amp;lt;nowiki&amp;gt;**&amp;lt;/nowiki&amp;gt;PLEASE MAKE SURE TO PRESS SAVE!!**&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Lastly, Discord bot setup ==&lt;br /&gt;
You&#039;ve done the hard part, now you just need to enter these values in the Discord bot.&lt;br /&gt;
&lt;br /&gt;
If you haven&#039;t already, make sure the bot is invited to your server [https://discord.com/oauth2/authorize?client_id=1243862713831260160&amp;amp;permissions=413189663952&amp;amp;integration_type=0&amp;amp;scope=bot+applications.commands invite link].&lt;br /&gt;
[[File:Allow http access setup.png|thumb|How to enable http services and api access]]&lt;br /&gt;
Before you run the setup command, create a role for the people who can use romod like a game mod role along with a channel where romod will log the actions of people who use the bot.&lt;br /&gt;
&lt;br /&gt;
Now you can run the `/setup` command and you will be asked to enter the values of the universe id, api key and the log channel and mod role which hopefully you&#039;ve written down earlier.&lt;br /&gt;
&lt;br /&gt;
== Help ==&lt;br /&gt;
If you have any problems setting up the bot or have suggestions for this article please email me at jbz@jbz.dev or join the discord server.&lt;br /&gt;
[[File:Romod log channel permissions.png|thumb|This is what your channel permissions should look like]]&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=File:Romod_log_channel_permissions.png&amp;diff=21</id>
		<title>File:Romod log channel permissions.png</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=File:Romod_log_channel_permissions.png&amp;diff=21"/>
		<updated>2026-07-20T21:07:19Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Image showing you how to setup the romod log channel&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=File:Loadstring_enabled_setup.png&amp;diff=20</id>
		<title>File:Loadstring enabled setup.png</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=File:Loadstring_enabled_setup.png&amp;diff=20"/>
		<updated>2026-07-20T21:02:32Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Shows how to enable loadstring in roblox studio&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=File:Allow_http_access_setup.png&amp;diff=19</id>
		<title>File:Allow http access setup.png</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=File:Allow_http_access_setup.png&amp;diff=19"/>
		<updated>2026-07-20T21:01:54Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This shows how to enable the allow http access option in roblox studio.&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Messaging_service&amp;diff=18</id>
		<title>Messaging service</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Messaging_service&amp;diff=18"/>
		<updated>2026-07-20T20:52:49Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Created page with &amp;quot;coming soon&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;coming soon&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=File:Setup_Apikey_configuration.png&amp;diff=17</id>
		<title>File:Setup Apikey configuration.png</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=File:Setup_Apikey_configuration.png&amp;diff=17"/>
		<updated>2026-07-20T20:51:52Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;image showing what the api key configurationshould look like&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=File:Setup_universeid.jpg&amp;diff=16</id>
		<title>File:Setup universeid.jpg</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=File:Setup_universeid.jpg&amp;diff=16"/>
		<updated>2026-07-20T20:48:40Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How to get the universe id in the setup tutorial&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Category:Troubleshooting&amp;diff=15</id>
		<title>Category:Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Category:Troubleshooting&amp;diff=15"/>
		<updated>2026-07-20T20:36:30Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Created page with &amp;quot;This category contains common errors that people get and how to solve them, they may also contain some faqs.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This category contains common errors that people get and how to solve them, they may also contain some faqs.&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Why_is_roblox_not_banning_alts&amp;diff=14</id>
		<title>Why is roblox not banning alts</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Why_is_roblox_not_banning_alts&amp;diff=14"/>
		<updated>2026-07-20T20:35:30Z</updated>

		<summary type="html">&lt;p&gt;Jbz: add category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Alt ban message.jpg|thumb|This is the error message all suspected alt accounts of the user see when attempted to join the game.]]&lt;br /&gt;
This is a question i get asked a lot but sadly i cant do anything about it. I dont control the alt detection system. All I do is parse ExcludeAltAccounts: False and then roblox does the rest. I have no way to know if any alts of the player were banned, who their alts were or how roblox detects it. All I do is put true or false and roblox (badly) handles the rest.&lt;br /&gt;
&lt;br /&gt;
== What is alt detection ==&lt;br /&gt;
Roblox alt detection bans are bans which Roblox applies to an account when a user is banned but then joins on another account to try and evade that ban. The game developer controls it by passing `ExcludeAltAccounts: False` via the banasync api and roblox actually handles the enforcement and detection.&lt;br /&gt;
&lt;br /&gt;
These bans do not expire after the account roblox thinks your evading from is unbanned from the game, they stay on and are treated as a separate violation. The only exception to this is when the ban is temporary.&lt;br /&gt;
&lt;br /&gt;
[[Category:Troubleshooting]]&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Why_is_roblox_not_banning_alts&amp;diff=13</id>
		<title>Why is roblox not banning alts</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Why_is_roblox_not_banning_alts&amp;diff=13"/>
		<updated>2026-07-20T20:33:42Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Created page with &amp;quot;This is the error message all suspected alt accounts of the user see when attempted to join the game. This is a question i get asked a lot but sadly i cant do anything about it. I dont control the alt detection system. All I do is parse ExcludeAltAccounts: False and then roblox does the rest. I have no way to know if any alts of the player were banned, who their alts were or how roblox detects it. All I do is put true or false and roblo...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Alt ban message.jpg|thumb|This is the error message all suspected alt accounts of the user see when attempted to join the game.]]&lt;br /&gt;
This is a question i get asked a lot but sadly i cant do anything about it. I dont control the alt detection system. All I do is parse ExcludeAltAccounts: False and then roblox does the rest. I have no way to know if any alts of the player were banned, who their alts were or how roblox detects it. All I do is put true or false and roblox (badly) handles the rest.&lt;br /&gt;
&lt;br /&gt;
== What is alt detection ==&lt;br /&gt;
Roblox alt detection bans are bans which Roblox applies to an account when a user is banned but then joins on another account to try and evade that ban. The game developer controls it by passing `ExcludeAltAccounts: False` via the banasync api and roblox actually handles the enforcement and detection.&lt;br /&gt;
&lt;br /&gt;
These bans do not expire after the account roblox thinks your evading from is unbanned from the game, they stay on and are treated as a separate violation. The only exception to this is when the ban is temporary.&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=File:Alt_ban_message.jpg&amp;diff=12</id>
		<title>File:Alt ban message.jpg</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=File:Alt_ban_message.jpg&amp;diff=12"/>
		<updated>2026-07-20T20:26:31Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the message people see when they are banned on another account and roblox detects them using an alt.&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=User:Jbz&amp;diff=8</id>
		<title>User:Jbz</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=User:Jbz&amp;diff=8"/>
		<updated>2026-07-20T20:01:08Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Created page with &amp;quot;For any information please contact me via email at jbz@jbz.dev or via the discord server https://discord.gg/v8c66XVH6Y&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For any information please contact me via email at jbz@jbz.dev or via the discord server https://discord.gg/v8c66XVH6Y&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=MediaWiki:Blockedtext&amp;diff=7</id>
		<title>MediaWiki:Blockedtext</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=MediaWiki:Blockedtext&amp;diff=7"/>
		<updated>2026-07-18T18:27:26Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;padding:1em;border:1px solid #c8ccd1;background:#f8f9fa;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Your username or IP address has been blocked from performing this action.&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
The account or IP address you are using was blocked by &amp;lt;strong&amp;gt;$1&amp;lt;/strong&amp;gt; at &amp;lt;strong&amp;gt;$8&amp;lt;/strong&amp;gt;.&lt;br /&gt;
The duration of the block is &amp;lt;strong&amp;gt;$6&amp;lt;/strong&amp;gt;, and the reason provided by the blocking administrator was:&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p style=&amp;quot;margin:1em 0;padding:.75em;border-left:4px solid #d33;background:#fff;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;strong&amp;gt;$2&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;{{int:blockedtext-intended-blockee|$7}}&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
If you believe this block was issued incorrectly, please contact the blocking administrator or jbz@jbz.dev, citing your block ID:&lt;br /&gt;
&amp;lt;strong&amp;gt;$5&amp;lt;/strong&amp;gt;.&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=MediaWiki:Blockedtext&amp;diff=6</id>
		<title>MediaWiki:Blockedtext</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=MediaWiki:Blockedtext&amp;diff=6"/>
		<updated>2026-07-18T18:25:18Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Created page with &amp;quot;&amp;lt;div style=&amp;quot;max-width:750px;margin:2rem auto;padding:24px;border:1px solid #c8ccd1;border-radius:8px;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.08);font-family:sans-serif;&amp;quot;&amp;gt;      &amp;lt;h2 style=&amp;quot;margin-top:0;margin-bottom:16px;color:#b32424;&amp;quot;&amp;gt;         Access Denied     &amp;lt;/h2&amp;gt;      &amp;lt;p&amp;gt;         &amp;lt;strong&amp;gt;Your username or IP address has been blocked from performing this action.&amp;lt;/strong&amp;gt;     &amp;lt;/p&amp;gt;      &amp;lt;p&amp;gt;         The account or IP address you are using was blocked by         &amp;lt;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;max-width:750px;margin:2rem auto;padding:24px;border:1px solid #c8ccd1;border-radius:8px;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.08);font-family:sans-serif;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;h2 style=&amp;quot;margin-top:0;margin-bottom:16px;color:#b32424;&amp;quot;&amp;gt;&lt;br /&gt;
        Access Denied&lt;br /&gt;
    &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
        &amp;lt;strong&amp;gt;Your username or IP address has been blocked from performing this action.&amp;lt;/strong&amp;gt;&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;p&amp;gt;&lt;br /&gt;
        The account or IP address you are using was blocked by&lt;br /&gt;
        &amp;lt;strong&amp;gt;$1&amp;lt;/strong&amp;gt;&lt;br /&gt;
        at&lt;br /&gt;
        &amp;lt;strong&amp;gt;$8&amp;lt;/strong&amp;gt;.&lt;br /&gt;
        The duration of the block is&lt;br /&gt;
        &amp;lt;strong&amp;gt;$6&amp;lt;/strong&amp;gt;&lt;br /&gt;
        and the reason provided by the blocking administrator was:&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div style=&amp;quot;margin:16px 0;padding:12px 16px;background:#fff8f8;border-left:4px solid #d33;border-radius:4px;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;strong&amp;gt;$2&amp;lt;/strong&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div style=&amp;quot;margin:20px 0;padding:12px 16px;background:#f8f9fa;border:1px solid #eaecf0;border-radius:4px;&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;p style=&amp;quot;margin:0 0 8px 0;&amp;quot;&amp;gt;&lt;br /&gt;
            {{int:blockedtext-intended-blockee|$7}}&lt;br /&gt;
        &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;p style=&amp;quot;margin:0;&amp;quot;&amp;gt;&lt;br /&gt;
            {{int:blockedtext-block-ip|$3}}&lt;br /&gt;
        &amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;hr style=&amp;quot;border:none;border-top:1px solid #eaecf0;margin:24px 0;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;p style=&amp;quot;margin-bottom:0;&amp;quot;&amp;gt;&lt;br /&gt;
        If you believe this block was issued incorrectly, please contact the blocking administrator or jbz@jbz.dev,&lt;br /&gt;
        citing your block ID:&lt;br /&gt;
        &amp;lt;strong&amp;gt;$5&amp;lt;/strong&amp;gt; or a screenshot of this page.&lt;br /&gt;
    &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=User:Testusezr&amp;diff=5</id>
		<title>User:Testusezr</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=User:Testusezr&amp;diff=5"/>
		<updated>2026-07-18T17:54:53Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Created page with &amp;quot;user page&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;user page&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Main_Page&amp;diff=4</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Main_Page&amp;diff=4"/>
		<updated>2026-07-18T17:49:53Z</updated>

		<summary type="html">&lt;p&gt;Jbz: Protected &amp;quot;Main Page&amp;quot;: High traffic page ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Romod Documentation =&lt;br /&gt;
Here you will find the documentation for [https://Romod.dev Romod]. The documentation is hosted on a selfhosted verison of Mediawiki (what wikipedia runs) therefore anyone can edit.&lt;br /&gt;
&lt;br /&gt;
For any questions please contact me either via the discord server or by email at jbz@jbz.dev.&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
	<entry>
		<id>https://romod.wiki/index.php?title=Main_Page&amp;diff=3</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://romod.wiki/index.php?title=Main_Page&amp;diff=3"/>
		<updated>2026-07-18T17:49:26Z</updated>

		<summary type="html">&lt;p&gt;Jbz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Romod Documentation =&lt;br /&gt;
Here you will find the documentation for [https://Romod.dev Romod]. The documentation is hosted on a selfhosted verison of Mediawiki (what wikipedia runs) therefore anyone can edit.&lt;br /&gt;
&lt;br /&gt;
For any questions please contact me either via the discord server or by email at jbz@jbz.dev.&lt;/div&gt;</summary>
		<author><name>Jbz</name></author>
	</entry>
</feed>