mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
44 lines
1.2 KiB
Lua
44 lines
1.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 PLUGIN = PLUGIN
|
|
|
|
ITEM.name = "Valve d'eau"
|
|
ITEM.model = "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_gauge_valve_low.mdl"
|
|
ITEM.width = 1
|
|
ITEM.height = 1
|
|
ITEM.description = "La valve d'eau est un dispositif mécanique utilisé pour contrôler et réguler le flux d'eau. Elle est généralement composée d'un boîtier en métal ou en plastique contenant une vanne qui peut être ouverte ou fermée pour permettre ou arrêter le passage de l'eau."
|
|
ITEM.category = "Outils"
|
|
|
|
ITEM.functions.Place = {
|
|
name = "Placer sur la valve d'eau",
|
|
tip = "equipTip",
|
|
icon = "icon16/link_add.png",
|
|
OnRun = function(itemTable)
|
|
if (SERVER) then
|
|
local client = itemTable.player
|
|
PLUGIN:PlaceValve(client, itemTable)
|
|
|
|
return false
|
|
end
|
|
end,
|
|
|
|
OnCanRun = function(itemTable)
|
|
if IsValid(itemTable.entity) then return false end
|
|
end
|
|
}
|
|
|
|
function ITEM:OnTransferred(curInv, inventory)
|
|
if (SERVER) then
|
|
if self.waterCache and IsValid(self.waterCache) then
|
|
self.waterCache.HasPotPlaced = nil
|
|
end
|
|
end
|
|
end |