This commit is contained in:
lifestorm
2024-08-04 22:55:00 +03:00
parent 0e770b2b49
commit 94063e4369
7342 changed files with 1718932 additions and 14 deletions

View File

@@ -0,0 +1,230 @@
--[[
| 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 table = table
local pairs = pairs
local ents = ents
local IsValid = IsValid
local Color = Color
local math = math
local PLUGIN = PLUGIN
PLUGIN.name = "Drop Items on Death"
PLUGIN.author = "AleXXX_007"
PLUGIN.description = "Après la mort, le personnage laissera tomber ses affaires."
ix.config.Add("dropItems", false, "Que les personnages abandonnent ou non leurs objets après leur mort.", nil, {
category = "Perte du stuff"
})
ix.config.Add("dropContainerModel", "models/props_c17/BriefCase001a.mdl", "Un modèle de chemin d'accès d'un conteneur avec des éléments déposés.", nil, {
category = "Perte du stuff"
})
ix.util.Include("sv_plugin.lua")
if (ix.allowedHoldableClasses) then
ix.allowedHoldableClasses["ix_drop"] = true
end
ix.char.RegisterVar("refundItems", {
field = "refundItems",
default = {},
bNoNetworking = true,
bNoDisplay = true
})
ix.lang.AddTable("english", {
deathDropRemoved = "Suppression de %d objets tombés."
})
ix.lang.AddTable("french", {
deathDropRemoved = "Suppression de %d objets tombés."
})
ix.lang.AddTable("spanish", {
deathDropRemoved = "Borrados un total de %d death drops."
})
ix.command.Add("RemoveDeathDrops", {
description = "Supprime tous les objets des morts sur la carte ou dans un rayon donné.",
adminOnly = true,
arguments = {
ix.type.number
},
OnRun = function(self, client, radius)
radius = radius and radius * radius or math.huge
local pos = client:GetPos()
local count = 0
for k, v in pairs(ents.GetAll()) do
if (!IsValid(v)) then continue end
if (v:GetClass() != "ix_drop") then continue end
if (v:GetPos():DistToSqr(pos) > radius) then continue end
v:Remove()
count = count + 1
end
return "@deathDropRemoved", count
end
})
if (CLIENT) then
function PLUGIN:PostDrawTranslucentRenderables(bDrawingDepth, bDrawingSkybox)
local command = string.utf8lower(ix.chat.currentCommand)
if (command == "removedeathdrops") then
local range = tonumber(ix.chat.currentArguments[1])
if (range) then
render.SetColorMaterial()
render.DrawSphere(LocalPlayer():GetPos(), 0 - range, 50, 50, Color(255,150,0,100))
end
end
end
end
ix.command.Add("RefundKill", {
description = "Redonne tous les objets que le joueur a perdu après sa dernière mort.",
adminOnly = true,
arguments = {
ix.type.player
},
OnRun = function(self, client, target)
local inventory = target:GetCharacter():GetInventory()
local itemIds = target:GetCharacter():GetRefundItems()
if (!itemIds) then
client:NotifyLocalized("plyNoRefunding")
end
local leftItems = table.Copy(itemIds)
local lost = 0
local temp = false
for _, v in pairs(itemIds) do
local itemTable = ix.item.instances[v]
if (!itemTable) then
lost = lost + 1
continue
end
local curInv = ix.item.inventories[self.invID or 0]
if (!curInv) then
ErrorNoHalt("[DEATHDROP] Échec du transfert de l'item "..itemTable.uniqueID.." (#"..v.."), no curInv!")
continue
end
local w, h = itemTable.width, itemTable.height
if (inventory:FindEmptySlot(w, h)) then
PLUGIN:TransferItem(target, itemTable, curInv, inventory)
table.RemoveByValue(leftItems, v)
else
temp = true
local container = ents.Create("ix_drop")
container:SetPos(target:GetPos() + target:GetAngles():Forward() * 5)
container:SetModel(ix.config.Get("dropContainerModel", "models/props_c17/BriefCase001a.mdl"))
container:Spawn()
ix.inventory.New(0, "droppedItems", function(newInv)
newInv.vars.isBag = false
newInv.vars.isDrop = true
function newInv.OnAuthorizeTransfer(_, _, _, item)
if (item.authorized) then
return true
end
end
if (!IsValid(container)) then
return
end
container:SetInventory(newInv)
newInv.vars.entity = container
for _, v1 in pairs(leftItems) do
local item = ix.item.instances[v1]
if (!item) then continue end
local owner = item:GetOwner()
local curInv1 = IsValid(owner) and owner:GetCharacter():GetInventory() or false
PLUGIN:TransferItem(owner, item, curInv1, newInv)
end
ix.saveEnts:SaveEntity(container)
end)
break
end
end
local notify = temp and "plyRefundTemp" or "plyRefund"
client:NotifyLocalized(notify)
if (lost > 0) then
client:NotifyLocalized("plyRefundLost", lost)
end
if (client != target) then
target:NotifyLocalized(notify)
if (lost > 0) then
target:NotifyLocalized("plyRefundLost", lost)
end
end
target:GetCharacter():SetRefundItems(nil)
end
})
function PLUGIN:InitializedConfig()
ix.inventory.Register("droppedItems", 9, 9)
end
function PLUGIN:CanTransferItem(itemTable, curInv, inventory)
if (!itemTable.authorized) then
if (curInv:GetID() == 0) then return end
if (curInv.vars and curInv.vars.isDrop and inventory:GetID() == curInv:GetID()) then
return false
end
if (inventory.vars and inventory.vars.isDrop) then
return false
end
end
end
function PLUGIN:OnItemTransferred(itemTable, curInv, inventory)
if (curInv.vars and curInv.vars.isDrop and table.IsEmpty(curInv:GetItems())) then
local container = curInv.vars.entity
if (IsValid(container)) then
container:Remove()
end
end
end
if (CLIENT) then
local color = Color(255, 0, 128)
function PLUGIN:InitializedPlugins()
local function drawDropESP(client, entity, x, y, factor)
ix.util.DrawText("Objets tombés", x, y - math.max(10, 32 * factor), color,
TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER, nil, math.max(255 * factor, 80))
end
ix.observer:RegisterESPType("ix_drop", drawDropESP, "drop")
end
end