local rules = {
"&eNOTICE. The use of external tools, scripts or other vote boosting methods are prohibited.\n&0",
"\n",
"&3RULE 1.0&0. No Harassment, Bullying or Disrespect to anyone on the server including Staff, other Players and Guests. This also extends to the forum; this includes swearing directly at someone ingame, or harassing other players because of something you do not like. \n",
"\n\n",
"&3RULE 1.1&0. We're not stupid, we can see when you are duping.\n",
"\n\n",
"&3RULE 1.2&0. This rule is simple, PVP is disabled then do not try and kill another player. This includes placing turrets (for example next to another players land), placing lava, water, gravel or sand on another player while they are AFK, and traps. We classify any of these methods of cheating, and punishments are harsh.\n",
"\n\n",
"&3RULE 1.3&0. If an item is on the banned or restricted list and you do not have explicit permission from an administrator (only) to use/craft/place/interact with the item, you could be jailed/banned for breaking this rule if caught with the item.\n",
"\n\n",
"&3RULE 1.4&0. We don't allow griefing or stealing anywhere within the main world. You may steal from a non-residence within The Nether, The Twilight Forest and The End, you may not grief these worlds, i.e destroying blocks for the sake of destruction, revenge or otherwise. You may NOT grief or steal within a residence in any world, even if you have trusted permissions within the residence, including the 3 listed before.\n",
"\n\n",
"&3RULE 1.5&0. We will not accept any form of advertising in game for things unrelated to this server. This includes, but is not limited to advertising other servers, websites, youtube channels, facebook pages and other similar things. You may however advertise things within the game, for example you can tell others about your shop or residence, you may not spam the chat or message system.\n",
"\n\n",
"&3RULE 1.6&0. We utilise plugins to prevent players spamming with repeated messages, commands within their messages on the server. If you work out a way to bypass this and spam the chat, you will be mute/jailed/banned.\n",
"\n\n",
"&3RULE 1.7&0. If you are offline, your machines must also be offline. This means when you log off, turn off or disable your machines, we will jail/ban people who breach this rule. Timers are not allowed under 3 seconds, this is to prevent lag.\n",
"\n\n",
"&3RULE 1.8&0. You may not protect shared land or blocks. For example, creating a residence within areas like the spawn, or other peoples houses."
}
local function writeWithFormat(…)
local s = "&0"
for k, v in ipairs(arg) do
s = s .. v
end
s = s .. "&0"
local fields = {}
local lastcolor, lastpos = "0", 0
for pos, clr in s:gmatch"()&(%x)" do
table.insert(fields, {s:sub(lastpos + 2, pos - 1), lastcolor})
lastcolor, lastpos = clr , pos
end
for i = 2, #fields do
term.setTextColor(2 ^ (tonumber(fields[2], 16))) write(fields[1])
end
end
local mon = peripheral.wrap("back")
term.redirect(mon)
mon.setTextScale(1.0)
term.clear()
term.setCursorPos(1, 1)
for i = 1, #rules do
writeWithFormat(rules)
end
term.restore()