forked from octacian/ranks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ranks.lua
44 lines (36 loc) · 830 Bytes
/
ranks.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- ranks/ranks.lua
ranks.register("admin", {
prefix = "Admin",
colour = {a = 255, r = 30, g = 250, b = 23},
babybox = false,
})
ranks.register("moderator", {
prefix = "Mod",
colour = {a = 255, r = 83, g = 83, b = 210},
babybox = false,
})
ranks.register("ranger", {
prefix = "Ranger",
colour = {a = 255, r = 180, g = 132, b = 0},
babybox = false,
})
ranks.register("established", {
prefix = "Regular",
colour = {a = 255, r = 90, g = 180, b = 120},
babybox = false,
})
ranks.register("o_O", {
prefix = "o_O",
colour = {a = 255, r = 180, g = 180, b = 158},
babybox = true,
})
ranks.register("architect", {
prefix = "Architect",
colour = {a = 0, r = 160, g = 0, b = 120},
babybox = false,
})
ranks.register("hispania", {
prefix = "Brigada H",
colour = {a = 0, r = 190, g = 0, b = 80},
babybox = true,
})