mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
44 lines
1.0 KiB
Lua
44 lines
1.0 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 = "Water Valve"
|
|
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 = "A water valve to help tap water."
|
|
ITEM.category = "Tools"
|
|
|
|
ITEM.functions.Place = {
|
|
name = "Place On Water Cache",
|
|
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 |