mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +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 = "Su Vanası"
|
||
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 = "Suyun akmasına yardımcı olacak bir su vanası."
|
||
ITEM.category = "Tools"
|
||
|
||
ITEM.functions.Place = {
|
||
name = "Su Deposuna Yerleştir",
|
||
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 |