This commit is contained in:
lifestorm
2024-08-04 22:55:00 +03:00
parent 0e770b2b49
commit 94063e4369
7342 changed files with 1718932 additions and 14 deletions

View File

@@ -0,0 +1,40 @@
--[[
| 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 = "Sandbag"
ITEM.description = "A bunch of packed sandbags that can be mounted together on top of each other to provide some makeshift defences, quite handy"
ITEM.model = Model("models/mosi/fallout4/props/fortifications/sandbag01.mdl")
ITEM.noBusiness = true
ITEM.category = "misc"
ITEM.width = 4
ITEM.height = 2
ITEM.outlineColor = Color(255, 0, 0, 100)
ITEM.functions.place = {
name = "Place",
tip = "Place the sandbag",
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_sandbag_placer")
client:SelectWeapon("weapon_sandbag_placer")
return true
end,
OnCanRun = function(item)
return (!IsValid(item.entity))
end
}