This commit is contained in:
lifestorm
2024-08-04 23:12:27 +03:00
parent 0e770b2b49
commit ba1fc01b16
7084 changed files with 2173495 additions and 14 deletions

View File

@@ -0,0 +1,48 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
local ix = ix
local bit = bit
local net = net
local PLUGIN = PLUGIN
PLUGIN.name = "Bodygroup Manager"
PLUGIN.author = "Gary Tate"
PLUGIN.description = "Allows players and administration to have an easier time customising bodygroups."
ix.lang.AddTable("english", {
cmdEditBodygroup = "Dostosuj bodygroupy celu."
})
ix.lang.AddTable("spanish", {
cmdEditBodygroup = "Personalizar los bodygroups de un objetivo."
})
ix.lang.AddTable("polish", {
cmdEditBodygroup = "Dostosuj bodygroupy celu."
})
ix.command.Add("CharEditBodygroup", {
description = "cmdEditBodygroup",
adminOnly = true,
arguments = {
bit.bor(ix.type.player, ix.type.optional)
},
OnRun = function(self, client, target)
net.Start("ixBodygroupView")
net.WriteEntity(target or client)
net.WriteTable(target:GetCharacter():GetProxyColors() or {})
net.Send(client)
end
})
ix.util.Include("sv_hooks.lua")
ix.util.Include("cl_hooks.lua")