I was wonder if anyone could help me. I would like to have my server rules, donator ranks and blacklisted items, displayed on a CC screen but Im not sure how to go about it.
I have these codes at the moment, but im not sure how to make them work as soon as the server is started/chunk is loaded.
Rules
Spoiler
local w,h = term.getSize()term.clear()
term.setCursorPos(1,1)
local function printCenter(line)
local width = string.len(line)
if width < w then
local x,y = term.getCursorPos()
term.setCursorPos(w/2 - width/2,y)
end
print(line)
end
printCenter 'Rules'
print [[
1) No griefing*, if you are caught griefing you will be banned.
2) No client hacks or mods*.
3) Do not argue with, lie to or otherwise disrespect staff members.
4) No offensive behaviour*, swearing, talking in all caps, skins or usernames.
5) Do not ask staff members to give you anything.
6) Do not engage in exploitative behaviour.
7) Do not engage in general misbehaviour.
8) Donít hide behind the rules.
9) Do not advertise other servers, or advertise our server to others without consent.
10) Leaking machines will be destroyed.
]]
printCenter 'Full list of rules with explanations and '
printCenter 'definitions are viewable at'
printCenter 'www.techgalaxyminecraft.com'
Tier 1
Spoiler
local w,h = term.getSize()term.clear()
term.setCursorPos(1,1)
local function printCenter(line)
local width = string.len(line)
if width < w then
local x,y = term.getCursorPos()
term.setCursorPos(w/2 - width/2,y)
end
print(line)
end
printCenter 'Diamond (Tier1)'
print [[
* 5 homes
* Creative World access
* Showcase shop access
* Nicknames
* Full Dark Matter Amour
* Diamond tools kit
* Machine kit
32 circuits
32 machine blocks
64 insulated copper wire
* A one time payout of $10,000 & a one time payout of 16 bottles of exp
* Access to level 1 collector
]]
printCenter 'Diamond Tier = $5.00 a month '
printCenter 'www.techgalaxyminecraft.com'
Tier 2
Spoiler
local w,h = term.getSize()term.clear()
term.setCursorPos(1,1)
local function printCenter(line)
local width = string.len(line)
if width < w then
local x,y = term.getCursorPos()
term.setCursorPos(w/2 - width/2,y)
end
print(line)
end
printCenter 'DarkMatter (Tier2)'
print [[
Ten homes.
Access to creative world.
Ability to create trade shops.
Nickname.
VIP job access.
Access to use LogBlock to look up block places and breaks.
2x buffer to McMMO skill gaining
25 extra town plots.
Compass travel.
Set of dark matter tools each real day.
Basic machine kit
1 macerator
1 extractor
1 compressor
1 electric furnace
One time payout of $50k.
Flight in Silfrax with a fuel kit (Swift ring)
32 experience bottles each real day.
VIP Mining world, that will be reset every month
* Access to collectors level 1 and 2
]]
printCenter 'Dark Matter Tier $10.00 a month '
printCenter 'www.techgalaxyminecraft.com'
printCenter 'Dark Matter Tier inherits T1 kits'
tier 3
Spoiler
local w,h = term.getSize()term.clear()
term.setCursorPos(1,1)
local function printCenter(line)
local width = string.len(line)
if width < w then
local x,y = term.getCursorPos()
term.setCursorPos(w/2 - width/2,y)
end
print(line)
end
printCenter 'RedMatter (Tier3)'
print [[
* Fifteen homes.
* Full Red Matter armour
* Access to creative world.
* Ability to create trade shops.
* Nickname.
* * VIP job access.
* Access to use LogBlock to look up block places and breaks.
* 3x buffer to McMMO skill gaining
* 50 extra town plots.
* Compass travel.
* Set of Red Matter tools (monthly)
* One time payout of $100k.
* 64 experience bottles each real day.
* Flight in Silfrax with a fuel kit (Swift ring)
* High level power
1 HV solar array (or panel instead)
1 MV transformer
1 MFE.
32 Glass Fibre Cable
* Ability to fly in the normal world.
* Access to all collectors levels
]]
printCenter 'Dark Matter Tier $15.00 a month '
printCenter 'www.techgalaxyminecraft.com'
printCenter 'RedMatter Tier inherits T1 & T2 kits'
If you can help that would be fantastic
Thank you heaps in advance