mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
Upload
This commit is contained in:
309
gamemodes/darkrp/plugins/housing/items/base/sh_housingkey.lua
Normal file
309
gamemodes/darkrp/plugins/housing/items/base/sh_housingkey.lua
Normal file
@@ -0,0 +1,309 @@
|
||||
--[[
|
||||
| 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
|
||||
|
||||
ITEM.name = "Housing Key"
|
||||
ITEM.model = Model("models/willardnetworks/props/vortkey.mdl")
|
||||
ITEM.description = ""
|
||||
ITEM.category = "Logements"
|
||||
ITEM.KeepOnDeath = true
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(-509.64, -427.61, 310.24),
|
||||
ang = Angle(25.06, 400.15, 0),
|
||||
fov = 0.68
|
||||
}
|
||||
|
||||
if (CLIENT) then
|
||||
function ITEM:GetDescription()
|
||||
if self:GetData("cid") then
|
||||
return "Une clé assignée au CID : "..self:GetData("cid").." pour ouvrir les portes d'un '"..(self.shop and "shop" or "apartment").."'."
|
||||
end
|
||||
|
||||
return "Une clé pour ouvrir les portes d'un "..(self.shop and "shop" or "apartment").."."
|
||||
end
|
||||
|
||||
function ITEM:PopulateTooltip(tooltip)
|
||||
if (self:GetData("apartment")) then
|
||||
local appID = self:GetData("apartment")
|
||||
PLUGIN:GetApartmentName(appID)
|
||||
|
||||
if PLUGIN.apartments[appID] then
|
||||
local panel = tooltip:AddRowAfter("name", "apartment")
|
||||
panel:SetBackgroundColor(derma.GetColor("Warning", tooltip))
|
||||
panel:SetText("Assignée "..(self.shop and "Shop" or "Apartment").." : " .. (appID and PLUGIN.apartments[appID].name or appID))
|
||||
panel:SizeToContents()
|
||||
end
|
||||
end
|
||||
|
||||
local id = tooltip:AddRowAfter("apartment", "id")
|
||||
id:SetBackgroundColor(Color(125, 96, 90, 255))
|
||||
id:SetText("ID Clé : " .. self:GetID())
|
||||
id:SizeToContents()
|
||||
end
|
||||
end
|
||||
|
||||
function ITEM:SetCID(cid)
|
||||
local client = self:GetOwner()
|
||||
|
||||
PLUGIN:SetKeyCID(client, self, cid)
|
||||
end
|
||||
|
||||
function ITEM:AssignToApartment(apartment)
|
||||
if !apartment then return false end
|
||||
local client = self:GetOwner()
|
||||
|
||||
PLUGIN:AddKeyToApartment(client, self, apartment)
|
||||
end
|
||||
|
||||
function ITEM:RemoveApartment(appID)
|
||||
local client = self:GetOwner()
|
||||
appID = appID or self:GetData("apartment")
|
||||
|
||||
PLUGIN:AddKeyToApartment(client, self, appID, true)
|
||||
end
|
||||
|
||||
function ITEM:UnlockLockApartment(bUnlock)
|
||||
local client = self:GetOwner()
|
||||
local targetEnt = client:GetEyeTrace().Entity
|
||||
if (IsValid(targetEnt) and targetEnt:IsDoor()) then
|
||||
PLUGIN:UnlockLockApartment(self, bUnlock, targetEnt)
|
||||
else
|
||||
client:NotifyLocalized("Vous ne regardez pas une porte valide !")
|
||||
end
|
||||
end
|
||||
|
||||
ITEM.functions.Unlock = {
|
||||
name = "Déverrouiller porte",
|
||||
icon = "icon16/lock_open.png",
|
||||
OnRun = function(itemTable)
|
||||
itemTable:UnlockLockApartment(true)
|
||||
|
||||
return false
|
||||
end,
|
||||
OnCanRun = function(itemTable)
|
||||
local client = itemTable:GetOwner()
|
||||
if !client then return false end
|
||||
|
||||
if (IsValid(itemTable.entity)) then
|
||||
return false
|
||||
end
|
||||
|
||||
local targetEnt = client:GetEyeTrace().Entity
|
||||
if (!IsValid(targetEnt)) then
|
||||
return false
|
||||
end
|
||||
|
||||
if !targetEnt:IsDoor() then
|
||||
return false
|
||||
end
|
||||
|
||||
if (!itemTable:GetData("apartment", false)) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
}
|
||||
|
||||
ITEM.functions.Lock = {
|
||||
name = "Verrouiller",
|
||||
icon = "icon16/lock.png",
|
||||
OnRun = function(itemTable)
|
||||
itemTable:UnlockLockApartment()
|
||||
|
||||
return false
|
||||
end,
|
||||
OnCanRun = function(itemTable)
|
||||
local client = itemTable.GetOwner and itemTable:GetOwner()
|
||||
if !client then return false end
|
||||
|
||||
if (IsValid(itemTable.entity)) then
|
||||
return false
|
||||
end
|
||||
|
||||
local targetEnt = client:GetEyeTrace().Entity
|
||||
if (!IsValid(targetEnt)) then
|
||||
return false
|
||||
end
|
||||
|
||||
if !targetEnt:IsDoor() then
|
||||
return false
|
||||
end
|
||||
|
||||
if (!itemTable:GetData("apartment", false)) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
}
|
||||
|
||||
local function ShouldHaveAccess(client)
|
||||
if (SERVER) then
|
||||
local combineutilities = ix.plugin.list["combineutilities"]
|
||||
if (combineutilities and combineutilities:HasAccessToDatafile(client)) then return true end
|
||||
else
|
||||
local faction = ix.faction.Get(client:Team())
|
||||
if (faction.alwaysDatafile or client:GetCharacter():HasFlags("U")) then
|
||||
return true
|
||||
elseif (client:HasActiveCombineSuit() or faction.allowDatafile) then
|
||||
if (client:GetCharacter():GetInventory():HasItem("pda") or client:GetActiveWeapon():GetClass() == "weapon_datapad") then
|
||||
return true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return false
|
||||
end
|
||||
|
||||
ITEM.functions.Assign = {
|
||||
name = "Assigner à un logement",
|
||||
icon = "icon16/building_go.png",
|
||||
OnClick = function(itemTable)
|
||||
local window = Derma_StringRequest("Assigner la clé à un "..(itemTable.shop and "Shop" or "Apartment"), "Lequel des "..(itemTable.shop and "shop" or "apartment").." voulez-vous assigner cela ?", false, function()
|
||||
netstream.Start("ixApartmentsAssignCIDToKey", itemTable:GetID())
|
||||
end, false, false, false, true)
|
||||
|
||||
PLUGIN:ConvertStringRequestToComboselect(window, "Choose "..(itemTable.shop and "Shop" or "Apartment"), function(comboBox)
|
||||
for appID, tApartment in pairs(PLUGIN.apartments) do
|
||||
if !tApartment.type then continue end
|
||||
if itemTable.shop and tApartment.type != "shop" then continue end
|
||||
if !itemTable.shop and tApartment.type == "shop" then continue end
|
||||
|
||||
comboBox:AddChoice( tApartment.name.." | "..string.upper(tApartment.type), appID )
|
||||
end
|
||||
end, function(comboBox)
|
||||
local _, data = comboBox:GetSelected()
|
||||
if !data then window:Close() return end
|
||||
netstream.Start("ixApartmentsAssignKeyToApartment", itemTable:GetID(), data)
|
||||
end)
|
||||
end,
|
||||
OnRun = function(itemTable)
|
||||
return false
|
||||
end,
|
||||
OnCanRun = function(itemTable)
|
||||
if (IsValid(itemTable.entity)) then
|
||||
return false
|
||||
end
|
||||
|
||||
local client = itemTable.player
|
||||
if !client then return false end
|
||||
if ShouldHaveAccess(client) then return true end
|
||||
|
||||
if !CAMI.PlayerHasAccess(itemTable:GetOwner(), "Helix - Manage Apartments Key", nil) then
|
||||
return false
|
||||
end
|
||||
|
||||
if (!itemTable:GetData("cid", false)) then
|
||||
return false
|
||||
end
|
||||
|
||||
if (itemTable:GetData("apartment", false)) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
}
|
||||
|
||||
ITEM.functions.AssignCID = {
|
||||
name = "Assigner CID",
|
||||
icon = "icon16/vcard_add.png",
|
||||
OnClick = function(itemTable)
|
||||
Derma_StringRequest("Définir "..(itemTable.shop and "Shop" or "Apartment").." l'ID de la clé", "A quel CID voulez-vous assigner cette clé ?", nil, function(text)
|
||||
netstream.Start("ixApartmentsAssignCIDToKey", itemTable:GetID(), text)
|
||||
end)
|
||||
end,
|
||||
OnRun = function(itemTable)
|
||||
return false
|
||||
end,
|
||||
OnCanRun = function(itemTable)
|
||||
if (IsValid(itemTable.entity)) then
|
||||
return false
|
||||
end
|
||||
|
||||
local client = itemTable.player
|
||||
if !client then return false end
|
||||
|
||||
if ShouldHaveAccess(client) then return true end
|
||||
|
||||
if !CAMI.PlayerHasAccess(itemTable:GetOwner(), "Helix - Manage Apartments Key", nil) then
|
||||
return false
|
||||
end
|
||||
|
||||
if (itemTable:GetData("cid", false)) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
}
|
||||
|
||||
ITEM.functions.RemoveTenant = {
|
||||
name = "Retirer du logement",
|
||||
icon = "icon16/building_delete.png",
|
||||
OnClick = function(itemTable)
|
||||
netstream.Start("ixApartmentsAssignKeyToApartment", itemTable:GetID(), false, true)
|
||||
end,
|
||||
OnRun = function(itemTable)
|
||||
return false
|
||||
end,
|
||||
OnCanRun = function(itemTable)
|
||||
if (IsValid(itemTable.entity)) then
|
||||
return false
|
||||
end
|
||||
|
||||
local client = itemTable.player
|
||||
if !client then return false end
|
||||
if ShouldHaveAccess(client) then return true end
|
||||
|
||||
if !CAMI.PlayerHasAccess(itemTable:GetOwner(), "Helix - Manage Apartments Key", nil) then
|
||||
return false
|
||||
end
|
||||
|
||||
if (!itemTable:GetData("apartment", false)) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
}
|
||||
|
||||
ITEM.functions.RemoveCID = {
|
||||
name = "Retirer CID de la Clé",
|
||||
icon = "icon16/vcard_delete.png",
|
||||
OnClick = function(itemTable)
|
||||
netstream.Start("ixApartmentsAssignCIDToKey", itemTable:GetID(), false)
|
||||
end,
|
||||
OnRun = function(itemTable)
|
||||
return false
|
||||
end,
|
||||
OnCanRun = function(itemTable)
|
||||
if (IsValid(itemTable.entity)) then
|
||||
return false
|
||||
end
|
||||
|
||||
local client = itemTable.player
|
||||
if !client then return false end
|
||||
if ShouldHaveAccess(client) then return true end
|
||||
|
||||
if !CAMI.PlayerHasAccess(itemTable:GetOwner(), "Helix - Manage Apartments Key", nil) then
|
||||
return false
|
||||
end
|
||||
|
||||
if (!itemTable:GetData("cid", false)) then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
ITEM.name = "Clé d'appartement"
|
||||
@@ -0,0 +1,17 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.name = "Clé de commerce"
|
||||
ITEM.shop = true
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(-509.64, -427.61, 310.24),
|
||||
ang = Angle(25.06, 400.15, 0),
|
||||
fov = 0.68
|
||||
}
|
||||
Reference in New Issue
Block a user