mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 19:45:22 +09:00
41 lines
1.5 KiB
Lua
41 lines
1.5 KiB
Lua
--- Preset colours that players get when they join the server, if not in the list then will be given a random colour (which isnt disallowed)
|
|
-- @config Preset-Player-Colours
|
|
|
|
return {
|
|
players={ --- @setting players list of all players and the colour in rgb256 that they will recive upon joining
|
|
BADgamerNL={r=255,g=20,b=147},
|
|
arty714={r=150,g=68,b=161},
|
|
Cooldude2606={r=57,g=192,b=207},
|
|
mark9064={r=99,g=0,b=255},
|
|
eissturm={r=25,g=25,b=112},
|
|
Sakama={r=20,g=213,b=80},
|
|
freek18={r=50,g=0,b=255},
|
|
aldldl={r=0,g=131,b=255},
|
|
NAD4X4={r=135,g=206,b=250},
|
|
cydes={r=82,g=249,b=155},
|
|
UUBlueFire={r=0,g=204,b=255},
|
|
CmonMate497={r=103,g=224,b=194}
|
|
|
|
},
|
|
disallow = { --- @setting disallow colours which will not given to players; the value does not matter it is only the key which is checked
|
|
black = {r = 0, g = 0, b = 0},
|
|
white = {r = 255, g = 255, b = 255},
|
|
jailed = {r = 255, g = 255, b = 255},
|
|
probation = {r = 255, g = 255, b = 255},
|
|
guest = {r = 255, g = 255, b = 255},
|
|
auto_trusted = {r = 192, g = 192, b = 192},
|
|
regular = {r = 0.155, g = 0.540, b = 0.898},
|
|
admin = {r = 0.093, g = 0.768, b = 0.172},
|
|
donator = {r = 172.6, g = 70.2, b = 215.8},
|
|
[-10] = {r = 255, g = 255, b = 255},
|
|
[0] = {r = 255, g = 255, b = 255},
|
|
[10] = {r = 192, g = 192, b = 192},
|
|
[20] = {r = 0.155, g = 0.540, b = 0.898},
|
|
[30] = {r = 0.093, g = 0.768, b = 0.172},
|
|
success = {r = 0, g = 255, b = 0},
|
|
warning = {r = 255, g = 255, b = 0},
|
|
fail = {r = 255, g = 0, b = 0},
|
|
info = {r = 255, g = 255, b = 255}
|
|
}
|
|
}
|