Files
wnsrc/gamemodes/darkrp/plugins/willardtrash/entities/entities/ix_garbage/shared.lua
lifestorm 6a58f406b1 Upload
2024-08-04 23:54:45 +03:00

30 lines
719 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/
--]]
DEFINE_BASECLASS("base_gmodentity")
local PLUGIN = PLUGIN
TYPE_WATERCAN = 0
TYPE_SUPPLIES = 1
ENT.Type = "anim"
ENT.Author = "M!NT, Fruity"
ENT.PrintName = "Trash Pile"
ENT.Contact = "Willard Networks"
ENT.Purpose = "Lootable trash pile."
ENT.Spawnable = true
ENT.AdminOnly = true
ENT.PhysgunDisable = true
ENT.bNoPersist = true
function ENT:SetupDataTables()
self:DTVar("Int", 0, "index")
end