Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

Commit 6768e3d

Browse files
authored
Made the help command better
Made the help command better
1 parent 802342b commit 6768e3d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

admin.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@ end
5050

5151
commands = {
5252
help = function(...)
53+
local a = 0
5354
for key, value in pairs(commands) do
54-
rconsoleprint(key .. ',\n')
55+
a = a + 1
56+
rconsoleprint(a .. ') ' .. key .. '\n')
5557
end
5658
end,
5759

0 commit comments

Comments
 (0)