mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-16 13:23:46 +03:00
153 lines
4.2 KiB
Lua
153 lines
4.2 KiB
Lua
--[[
|
|
| 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 CAMI = CAMI
|
|
local LocalPlayer = LocalPlayer
|
|
local L = L
|
|
local SetClipboardText = SetClipboardText
|
|
local chat = chat
|
|
local net = net
|
|
local table = table
|
|
local string = string
|
|
local tonumber = tonumber
|
|
local render = render
|
|
local Color = Color
|
|
local gui = gui
|
|
local hook = hook
|
|
local surface = surface
|
|
local netstream = netstream
|
|
local ipairs = ipairs
|
|
local MsgN = MsgN
|
|
local ix = ix
|
|
|
|
local PLUGIN = PLUGIN
|
|
|
|
PLUGIN.infoIcon = ix.util.GetMaterial("icon16/information.png")
|
|
|
|
ix.option.Add("staffChat", ix.type.bool, true, {
|
|
category = "Administration",
|
|
hidden = function()
|
|
return !CAMI.PlayerHasAccess(LocalPlayer(), "Helix - Hear Staff Chat", nil)
|
|
end
|
|
})
|
|
|
|
function PLUGIN:PopulateScoreboardPlayerMenu(client, menu)
|
|
if (CAMI.PlayerHasAccess(LocalPlayer(), "Helix - Basic Admin Commands")) then
|
|
menu:AddOption(L("bastionCopySteamName"), function()
|
|
SetClipboardText(client:SteamName())
|
|
LocalPlayer():NotifyLocalized("bastionCopiedSteamName")
|
|
end)
|
|
|
|
menu:AddOption(L("bastionCopyCharName"), function()
|
|
SetClipboardText(client:Name())
|
|
LocalPlayer():NotifyLocalized("bastionCopiedCharName")
|
|
end)
|
|
end
|
|
|
|
if (sam and CAMI.PlayerHasAccess(LocalPlayer(), "Helix - Basic Admin Commands") and !LocalPlayer():InVehicle() and client != LocalPlayer()) then
|
|
menu:AddOption(L("bastionGoto"), function()
|
|
if (LocalPlayer():GetMoveType() != MOVETYPE_NOCLIP) then
|
|
LocalPlayer():ConCommand("noclip")
|
|
end
|
|
LocalPlayer():ConCommand("say !goto "..client:Name())
|
|
end)
|
|
end
|
|
end
|
|
|
|
function PLUGIN:PrintTarget(target)
|
|
if (ix.option.Get("pgi")) then
|
|
SetClipboardText(target:SteamID())
|
|
end
|
|
|
|
chat.AddText(self.infoIcon, target:Name(), " (", target:SteamName(), "; ", target:SteamID(),
|
|
") | PV : ", target:Health(), " | Armure : ", target:Armor())
|
|
end
|
|
|
|
function PLUGIN:PrintStaffList(amount)
|
|
for _ = 1, amount do
|
|
local group = net.ReadString()
|
|
local members = net.ReadUInt(8)
|
|
local memberList = {}
|
|
for _ = 1, members do
|
|
memberList[#memberList + 1] = net.ReadEntity():SteamName()
|
|
end
|
|
|
|
table.sort(memberList)
|
|
chat.AddText(self.infoIcon, "[", string.utf8upper(group), "]: ", table.concat(memberList, ", "))
|
|
end
|
|
end
|
|
|
|
function PLUGIN:ShouldDisplayArea(id)
|
|
if (LocalPlayer():GetMoveType() == MOVETYPE_NOCLIP and !LocalPlayer():InVehicle()) then
|
|
return false
|
|
end
|
|
end
|
|
|
|
local commands = {
|
|
["playsound"] = 2,
|
|
["localevent"] = 2,
|
|
["showentsinradius"] = 1,
|
|
["localbroadcast"] = 2,
|
|
["localbroadcastme"] = 2,
|
|
["localbroadcastit"] = 2,
|
|
["playsong"] = 3,
|
|
["screenshake"] = 4,
|
|
["removepersistedprops"] = 1,
|
|
["removeclientprops"] = 1
|
|
}
|
|
|
|
function PLUGIN:PostDrawTranslucentRenderables(bDrawingDepth, bDrawingSkybox)
|
|
local command = string.utf8lower(ix.chat.currentCommand)
|
|
|
|
if (commands[command]) then
|
|
local range = tonumber(ix.chat.currentArguments[commands[command]])
|
|
|
|
if (range) then
|
|
render.SetColorMaterial()
|
|
render.DrawSphere(LocalPlayer():GetPos(), 0 - range, 50, 50, Color(255, 150, 0, 100))
|
|
end
|
|
end
|
|
end
|
|
|
|
net.Receive("ixOpenURL", function(len)
|
|
gui.OpenURL(net.ReadString())
|
|
end)
|
|
|
|
net.Receive("ixPlayerInfo", function(len)
|
|
PLUGIN:PrintTarget(net.ReadEntity())
|
|
end)
|
|
|
|
net.Receive("ixStaffList", function(len)
|
|
PLUGIN:PrintStaffList(net.ReadUInt(8))
|
|
end)
|
|
|
|
net.Receive("ixPlaySound", function(len)
|
|
local sound = net.ReadString()
|
|
local isGlobal = net.ReadBool()
|
|
|
|
if (hook.Run("PrePlaySound", sound, isGlobal) != false) then
|
|
surface.PlaySound(sound)
|
|
|
|
hook.Run("PostPlaySound", sound, isGlobal)
|
|
end
|
|
end)
|
|
|
|
netstream.Hook("PrintInfoList", function(list)
|
|
for _, v in ipairs(list) do
|
|
MsgN(v)
|
|
end
|
|
end)
|
|
|
|
function PLUGIN:OnPlayerChat()
|
|
if (ix.config.Get("suppressOnPlayerChat", true)) then
|
|
return true
|
|
end
|
|
end
|