Skip to content

Commit 8ec62c3

Browse files
committed
xd
1 parent 93f20d7 commit 8ec62c3

8 files changed

Lines changed: 35 additions & 17 deletions

File tree

afk/libraries/client.lua

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,14 @@ function MODULE:DrawCharInfo(client, _, info)
4949
if not client:getNetVar("isAFK") then return end
5050
local afkTime = client:getNetVar("afkTime", 0)
5151
local timeAFK = CurTime() - afkTime
52-
info[#info + 1] = {L("afkForTime", string.NiceTime(timeAFK)), Color(255, 165, 0)}
52+
info[#info + 1] = {
53+
section = "Status"
54+
}
55+
56+
info[#info + 1] = {
57+
label = "AFK",
58+
value = string.NiceTime(timeAFK)
59+
}
5360
end
5461

5562
function MODULE:HUDPaintBackground()

captions/commands.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
desc = "sendCaptionDesc",
1919
AdminStick = {
2020
Name = "sendCaptionDesc",
21-
Category = "moderationTools",
22-
SubCategory = "captions"
21+
Category = "captions"
2322
},
2423
onRun = function(client, arguments)
2524
local target = lia.util.findPlayer(client, arguments[1])

cutscenes/commands.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ lia.command.add("cutscene", {
1111
desc = "cutsceneCommandDesc",
1212
AdminStick = {
1313
Name = "cutsceneCommandDesc",
14-
Category = "moderationTools",
15-
SubCategory = "cutscenes"
14+
Category = "cutscenes"
1615
},
1716
onRun = function(ply, args)
1817
local target

donator/commands.lua

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
desc = "subtractCharSlotsDesc",
1010
AdminStick = {
1111
Name = "subtractCharSlotsDesc",
12-
Category = "characterManagement",
13-
SubCategory = "charSlots"
12+
Category = "donator"
1413
},
1514
onRun = function(client, arguments)
1615
local target = lia.util.findPlayer(client, arguments[1])
@@ -34,8 +33,7 @@ lia.command.add("addcharslots", {
3433
desc = "addCharSlotsDesc",
3534
AdminStick = {
3635
Name = "addCharSlotsDesc",
37-
Category = "characterManagement",
38-
SubCategory = "charSlots"
36+
Category = "donator"
3937
},
4038
onRun = function(client, arguments)
4139
local target = lia.util.findPlayer(client, arguments[1])
@@ -63,8 +61,7 @@ lia.command.add("setcharslots", {
6361
desc = "setCharSlotsDesc",
6462
AdminStick = {
6563
Name = "setCharSlotsDesc",
66-
Category = "characterManagement",
67-
SubCategory = "charSlots"
64+
Category = "donator"
6865
},
6966
onRun = function(client, arguments)
7067
local target = lia.util.findPlayer(client, arguments[1])

gamemasterpoints/commands.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ lia.command.add("gmtpmoveto", {
5151
desc = "moveToPoint",
5252
AdminStick = {
5353
Name = "moveToPoint",
54-
Category = "moderationTools",
55-
SubCategory = "teleport"
54+
Category = "gamemasterpoints"
5655
},
5756
arguments = {
5857
{

loyalism/commands.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ lia.command.add("partytier", {
1414
desc = "partytierCommandDesc",
1515
AdminStick = {
1616
Name = "partytierCommandDesc",
17-
Category = "moderationTools",
18-
SubCategory = "partyTiers"
17+
Category = "loyalism"
1918
},
2019
onRun = function(client, arguments)
2120
local char = client:getChar()

loyalism/libraries/client.lua

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22
function MODULE:DrawCharInfo(_, character, info)
33
if not character then return end
44
local tier = tonumber(character:getPartyTier())
5-
if self.Tiers[tier] then info[#info + 1] = {self.Tiers[tier], Color(255, 209, 20)} end
5+
if self.Tiers[tier] then
6+
info[#info + 1] = {
7+
section = "Identity"
8+
}
9+
10+
info[#info + 1] = {
11+
label = "Party Tier",
12+
value = self.Tiers[tier]
13+
}
14+
end
615
end
716

817
function MODULE:LoadCharInformation()

simple_lockpicking/libraries/client.lua

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
function MODULE:DrawCharInfo(client, _, info)
2-
if client:getNetVar("isPicking") then info[#info + 1] = {"Lockpicking...", Color(255, 100, 100)} end
2+
if client:getNetVar("isPicking") then
3+
info[#info + 1] = {
4+
section = "Activity"
5+
}
6+
7+
info[#info + 1] = {
8+
label = "Action",
9+
value = "Lockpicking"
10+
}
11+
end
312
end
413

514
function MODULE:PlayerBindPress(ply, bind)

0 commit comments

Comments
 (0)