mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
Upload
This commit is contained in:
342
gamemodes/helix/plugins/staffqol/sh_plugin.lua
Normal file
342
gamemodes/helix/plugins/staffqol/sh_plugin.lua
Normal file
@@ -0,0 +1,342 @@
|
||||
--[[
|
||||
| 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 PLUGIN = PLUGIN
|
||||
|
||||
PLUGIN.name = "Staff QOL"
|
||||
PLUGIN.author = "Fruity"
|
||||
PLUGIN.description = "PlyGetInfo, toolgun stuff, logging and other misc."
|
||||
|
||||
ix.util.Include("cl_plugin.lua")
|
||||
ix.util.Include("sv_plugin.lua")
|
||||
|
||||
ix.lang.AddTable("english", {
|
||||
cmdPlyGetInfo = "Displays character list, individual languages, flags (perm and temp) and other misc info.",
|
||||
qolPlyInfo = "Player Information",
|
||||
qolCharacters = "Characters",
|
||||
qolCopiedSteamID = "You have copied the SteamID.",
|
||||
qolCopySteamID = "Copy SteamID",
|
||||
qolHP = "HP",
|
||||
qolArmor = "Armor",
|
||||
qolPlayerFlags = "Playerflags",
|
||||
qolName = "Name",
|
||||
qolLanguages = "Languages",
|
||||
qolFlags = "Flags",
|
||||
qolTempFlags = "TempFlags",
|
||||
qolGroupName = "Group Name",
|
||||
qolSeeWhitelists = "See Whitelists",
|
||||
qolFindItem = "Find item by name on map/in inventory/in db",
|
||||
qolItemsInfo = "Items found",
|
||||
qolItemsInfoData = "Data",
|
||||
qolItemsInfoInvID = "Inventory ID",
|
||||
qolItemsInfoName = "Name of Item",
|
||||
qolItemsInfoOwner = "Owner",
|
||||
qolItemsInfoOrigin = "Origin",
|
||||
qolItemsInfoWPosition = "World Position",
|
||||
qolExcludeItems = "Include/Exclude Items",
|
||||
qolSorting = "Sorting",
|
||||
qolFindItemById = "Find item by name on map/in inventory/in db using an ID",
|
||||
})
|
||||
|
||||
ix.lang.AddTable("french", {
|
||||
cmdPlyGetInfo = "Affiche la liste des personnages, les langues individuelles, les drapeaux (perm et temp) et d'autres informations diverses",
|
||||
qolPlyInfo = "Informations sur le joueur",
|
||||
qolCharacters = "Personnages",
|
||||
qolCopiedSteamID = "Vous avez copié le SteamID",
|
||||
qolCopySteamID = "Copie du SteamID",
|
||||
qolHP = "HP",
|
||||
qolArmor = "Armure",
|
||||
qolPlayerFlags = "Playerflags",
|
||||
qolName = "Nom",
|
||||
qolLanguages = "Langues",
|
||||
qolFlags = "Drapeaux",
|
||||
qolTempFlags = "TempFlags",
|
||||
qolGroupName = "Nom du groupe",
|
||||
qolSeeWhitelists = "Voir les listes blanches",
|
||||
qolFindItem = "Trouver un objet par son nom sur la carte/l'inventaire/la base de données",
|
||||
qolItemsInfo = "Articles trouvés",
|
||||
qolItemsInfoData = "Données",
|
||||
qolItemsInfoInvID = "Inventory ID",
|
||||
qolItemsInfoName = "Nom de l'article",
|
||||
qolItemsInfoOwner = "Propriétaire",
|
||||
qolItemsInfoOrigin = "Origine",
|
||||
qolItemsInfoWPosition = "Position mondiale",
|
||||
qolExcludeItems = "Inclure/Exclure des éléments",
|
||||
qolSorting = "Triage",
|
||||
qolFindItemById = "Trouver un élément par son nom sur la carte/l'inventaire/la base de données en utilisant un ID",
|
||||
})
|
||||
|
||||
ix.command.Add("PlyGetInfo", {
|
||||
description = "@cmdPlyGetInfo",
|
||||
adminOnly = true,
|
||||
arguments = ix.type.player,
|
||||
OnRun = function(self, client, target)
|
||||
if (target and IsValid(target)) then
|
||||
local tempFlags = target:GetLocalVar("tempFlags") or {}
|
||||
local characters = target.ixCharList or {}
|
||||
local info = {}
|
||||
|
||||
for _, character in pairs(characters) do
|
||||
local charInfo = ix.char.loaded[character]
|
||||
|
||||
if !charInfo.vars then continue end
|
||||
|
||||
local vars = charInfo.vars
|
||||
local name = vars.name or "N/A"
|
||||
local languages = vars.languages or {}
|
||||
local flags = vars.data["f"] or ""
|
||||
local group = charInfo.GetGroup and charInfo:GetGroup() or {}
|
||||
local groupname = group.name or "N/A"
|
||||
local miscInfo = {
|
||||
curHp = target:Health(),
|
||||
curArmor = target:Armor(),
|
||||
steamID = target:SteamID(),
|
||||
steamID64 = target:SteamID64(),
|
||||
playerFlags = target:GetData("playerFlags", "N/A"),
|
||||
whitelists = target:GetData("whitelists", {})
|
||||
}
|
||||
|
||||
info[character] = {
|
||||
[1] = name,
|
||||
[2] = languages,
|
||||
[3] = flags,
|
||||
[4] = tempFlags,
|
||||
[5] = groupname
|
||||
}
|
||||
|
||||
info.player = miscInfo
|
||||
end
|
||||
|
||||
net.Start( "ixPlyGetInfo" )
|
||||
net.WriteTable(info)
|
||||
net.Send(client)
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
--[[
|
||||
ix.command.Add("FindItem", {
|
||||
description = "@qolFindItem",
|
||||
adminOnly = true,
|
||||
arguments = ix.type.text,
|
||||
OnRun = function(self, client, sSearch)
|
||||
PLUGIN:FindItem(client, sSearch)
|
||||
end
|
||||
})
|
||||
--]]
|
||||
|
||||
ix.command.Add("FindItemById", {
|
||||
description = "@qolFindItemById",
|
||||
adminOnly = true,
|
||||
arguments = ix.type.number,
|
||||
OnRun = function(self, client, id)
|
||||
PLUGIN:FindItem(client, tonumber(id))
|
||||
end
|
||||
})
|
||||
|
||||
properties.Add("ixFloppyDiscSeePassword", {
|
||||
MenuLabel = "Voir mot de passe",
|
||||
Order = 401,
|
||||
MenuIcon = "icon16/eye.png",
|
||||
|
||||
Filter = function(self, entity, client)
|
||||
if (entity:GetClass() != "ix_item") then return false end
|
||||
if (!CAMI.PlayerHasAccess(client, "Helix - Basic Admin Commands")) then return false end
|
||||
local itemTable = entity:GetItemTable()
|
||||
if !itemTable or itemTable and !istable(itemTable) then return false end
|
||||
if !itemTable.uniqueID then return false end
|
||||
if itemTable.uniqueID != "floppydisk" then return false end
|
||||
|
||||
return true
|
||||
end,
|
||||
|
||||
Action = function(self, entity)
|
||||
self:MsgStart()
|
||||
net.WriteEntity(entity)
|
||||
self:MsgEnd()
|
||||
end,
|
||||
|
||||
Receive = function(self, length, client)
|
||||
local entity = net.ReadEntity()
|
||||
|
||||
if (!IsValid(entity)) then return end
|
||||
if (!self:Filter(entity, client)) then return end
|
||||
|
||||
if !entity.ixItemID then return false end
|
||||
|
||||
if !ix.item.instances[entity.ixItemID] then return false end
|
||||
if !ix.item.instances[entity.ixItemID].data then return false end
|
||||
|
||||
local password = ix.item.instances[entity.ixItemID].data["password"] or "N/A"
|
||||
|
||||
client:Notify(password)
|
||||
|
||||
ix.log.Add(client, "getFloppyDiskPassword", entity:EntIndex(), password)
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("CharBan", {
|
||||
description = "@cmdCharBan",
|
||||
privilege = "Ban Character",
|
||||
arguments = {
|
||||
ix.type.string,
|
||||
bit.bor(ix.type.number, ix.type.optional)
|
||||
},
|
||||
adminOnly = true,
|
||||
OnRun = function(self, client, sTarget, minutes)
|
||||
PLUGIN:BanSomeone(client, sTarget, minutes)
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("CharPK", {
|
||||
description = "Ban perm. un personnage",
|
||||
privilege = "Ban Character",
|
||||
arguments = {
|
||||
ix.type.string
|
||||
},
|
||||
adminOnly = true,
|
||||
OnRun = function(self, client, sTarget)
|
||||
PLUGIN:BanSomeone(client, sTarget)
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("BringContainer", {
|
||||
description = "TP un stockage",
|
||||
arguments = {
|
||||
ix.type.number
|
||||
},
|
||||
adminOnly = true,
|
||||
OnRun = function(self, client, nEntIndex)
|
||||
if !nEntIndex or nEntIndex and !isnumber(nEntIndex) then
|
||||
client:Notify("Invalide ID")
|
||||
return false
|
||||
end
|
||||
|
||||
local entity = Entity(nEntIndex)
|
||||
if entity and IsValid(entity) then
|
||||
local inv = entity.GetInventory and entity:GetInventory()
|
||||
local isContainer = inv and inv.vars and inv.vars.isContainer
|
||||
local data = ix.container.stored[entity:GetModel():lower()]
|
||||
|
||||
if !isContainer or !data then
|
||||
client:Notify("Ceci n'est pas un stockage !")
|
||||
return false
|
||||
end
|
||||
|
||||
entity:SetPos(client:GetPos())
|
||||
client:Notify("Vous avez TP le stockage "..data.name.." avec l'index #"..nEntIndex)
|
||||
|
||||
ix.log.Add(client, "ixBringContainer", data.name or "N/A", nEntIndex)
|
||||
else
|
||||
client:Notify("Invalide entity")
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("ForceCharFallover", {
|
||||
description = "Forcefully 'fallover' a character.",
|
||||
arguments = {
|
||||
ix.type.player,
|
||||
bit.bor(ix.type.number, ix.type.optional)
|
||||
},
|
||||
adminOnly = true,
|
||||
OnRun = function(self, client, target, time)
|
||||
if (!target:Alive() or target:GetMoveType() == MOVETYPE_NOCLIP) then
|
||||
return "@notNow"
|
||||
end
|
||||
|
||||
if (time and time > 0) then
|
||||
time = math.Clamp(time, 1, 60)
|
||||
end
|
||||
|
||||
if (!IsValid(target.ixRagdoll)) then
|
||||
target:SetRagdolled(true, time)
|
||||
end
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("Play3DSoundTestOrigin", {
|
||||
description = "Définit l'origine du son joué lors de l'exécution de la commande Test3DSound.",
|
||||
adminOnly = true,
|
||||
OnRun = function(self, client)
|
||||
local trace = client:GetEyeTraceNoCursor()
|
||||
if !trace then return end
|
||||
local hitPos = trace.HitPos
|
||||
if !hitPos then return end
|
||||
local vector = Vector(hitPos)
|
||||
if !isvector(vector) then return end
|
||||
|
||||
net.Start("ixSync3dSoundTestOrigin")
|
||||
net.WriteVector(vector)
|
||||
net.Send(client)
|
||||
end
|
||||
})
|
||||
|
||||
ix.command.Add("Play3DSound", {
|
||||
description = "Jouez un son de votre emplacement en vous basant sur la gamme (20-150) donnée.",
|
||||
arguments = {
|
||||
ix.type.string,
|
||||
bit.bor(ix.type.number, ix.type.optional)
|
||||
},
|
||||
privilege = "Basic Admin Commands",
|
||||
OnRun = function(self, client, sound, range)
|
||||
range = math.Clamp(range or 75, 20, 150)
|
||||
local players = player.GetAll()
|
||||
|
||||
net.Start("ixPlay3DSound")
|
||||
net.WriteString(sound)
|
||||
net.WriteUInt(range, 8)
|
||||
net.WriteVector(client:GetPos())
|
||||
net.Send(players)
|
||||
end,
|
||||
indicator = "chatPerforming"
|
||||
})
|
||||
|
||||
ix.command.Add("Play3DSoundTest", {
|
||||
description = "Test de lecture d'un son à partir de l'emplacement Play3DSoundTestOrigin basé sur la plage (20-150) donnée.",
|
||||
arguments = {
|
||||
ix.type.string,
|
||||
bit.bor(ix.type.number, ix.type.optional)
|
||||
},
|
||||
privilege = "Basic Admin Commands",
|
||||
OnRun = function(self, client, sound, range)
|
||||
range = math.Clamp(range or 75, 20, 150)
|
||||
|
||||
net.Start("ixPlay3DSound")
|
||||
net.WriteString(sound)
|
||||
net.WriteUInt(range, 8)
|
||||
net.Send(client)
|
||||
end,
|
||||
indicator = "chatPerforming"
|
||||
})
|
||||
|
||||
local CHAR = ix.meta.character
|
||||
function CHAR:Ban(time)
|
||||
time = tonumber(time)
|
||||
|
||||
hook.Run("OnCharacterBanned", self, time or true)
|
||||
|
||||
if (time) then
|
||||
-- If time is provided, adjust it so it becomes the un-ban time.
|
||||
time = os.time() + math.max(math.ceil(time), 60)
|
||||
end
|
||||
|
||||
-- Mark the character as banned and kick the character back to menu.
|
||||
self:SetData("banned", time or true)
|
||||
|
||||
for _, v in pairs(player.GetAll()) do
|
||||
local char = v:GetCharacter()
|
||||
if !char then continue end
|
||||
|
||||
local id = char:GetID()
|
||||
if id and id != self:GetID() then continue end
|
||||
self:Kick()
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user