mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-29 20:16:38 +09:00
94 lines
1.9 KiB
Lua
94 lines
1.9 KiB
Lua
--[[
|
|
Explosive Gaming
|
|
|
|
This file can be used with permission but this and the credit below must remain in the file.
|
|
Contact a member of management on our discord to seek permission to use our code.
|
|
Any changes that you may make to the code are yours but that does not make the script yours.
|
|
Discord: https://discord.gg/XSsBV6b
|
|
|
|
The credit below may be used by another script do not remove.
|
|
]]
|
|
local credits = {{
|
|
name='ExpGaming - Rank Preset Table',
|
|
owner='Explosive Gaming',
|
|
dev='Cooldude2606',
|
|
description='The ranks that players are given upon joining',
|
|
factorio_version='0.15.23',
|
|
show=false
|
|
}}
|
|
local function credit_loop(reg) for _,cred in pairs(reg) do table.insert(credits,cred) end end
|
|
--Please Only Edit Below This Line-----------------------------------------------------------
|
|
local preset_ranks = {
|
|
Owner={'badgamernl'},
|
|
|
|
['Community Manager']={'arty714'},
|
|
|
|
Developer={'Cooldude2606'},
|
|
|
|
Admin={
|
|
'eissturm',
|
|
'PropangasEddy',
|
|
'mark9064',
|
|
'Smou'},
|
|
|
|
Mod={
|
|
'AcThPaU',
|
|
'Alanore',
|
|
'Aquaday',
|
|
'ayahuasca23',
|
|
'cafeslacker',
|
|
'CrashKonijn',
|
|
'Drahc_pro',
|
|
'everLord',
|
|
'FlipHalfling90',
|
|
'facere',
|
|
'freek18',
|
|
'Hobbitkicker',
|
|
'hud',
|
|
'Koroto',
|
|
'matthias60',
|
|
'MeDDish',
|
|
'Mindxt20',
|
|
'MottledPetrel',
|
|
'Mr_Happy_212',
|
|
'NextIdea',
|
|
'Phoenix27833',
|
|
'rezz',
|
|
'samy115',
|
|
'Sand3r205',
|
|
'scarbvis',
|
|
'steentje77',
|
|
'SuperWinner50',
|
|
'tophatgaming123',
|
|
'VR29',
|
|
'xenocyber',
|
|
'Ruuyji',
|
|
'mightycax',
|
|
'Gizan',
|
|
'mafisch3',
|
|
'cydes',
|
|
'Windbomb'},
|
|
|
|
Donator={
|
|
'M74132',
|
|
'Splicer',
|
|
'Nucklesamich'},
|
|
|
|
Veteran={},
|
|
|
|
Member={},
|
|
|
|
Regular={},
|
|
|
|
Guest={},
|
|
|
|
Jail={}
|
|
}
|
|
-- returns this list, or just one rank if given
|
|
function get_rank_presets(rank)
|
|
if rank then return global.preset_ranks[rank] else return global.preset_ranks end
|
|
end
|
|
Event.register(-1,function() global.preset_ranks = preset_ranks end)
|
|
--Please Only Edit Above This Line-----------------------------------------------------------
|
|
return credits
|