Files
wnsrc/gamemodes/darkrp/plugins/combinedeployables/items/sh_turret_placer.lua
lifestorm 6a58f406b1 Upload
2024-08-04 23:54:45 +03:00

37 lines
985 B
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/
--]]
ITEM.name = "Turret Placer"
ITEM.description = "A turret placer kit."
ITEM.model = Model("models/combine_turrets/floor_turret.mdl")
ITEM.noBusiness = true
ITEM.width = 2
ITEM.height = 3
ITEM.functions.place = {
name = "Place",
tip = "Place a turret",
icon = "icon16/brick_add.png",
OnRun = function(item)
local client = item.player
if (!client:Alive()) then return false end
client:EmitSound("physics/cardboard/cardboard_box_break3.wav")
client.previousWep = client:GetActiveWeapon():GetClass()
client:Give("weapon_turret_placer")
client:SelectWeapon("weapon_turret_placer")
return true
end,
OnCanRun = function(item)
return (!IsValid(item.entity))
end
}