mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 22:23:46 +03:00
32 lines
973 B
Lua
32 lines
973 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 = "Ration - Amélioré"
|
||
|
|
ITEM.model = Model("models/willardnetworks/rations/wn_new_ration.mdl")
|
||
|
|
ITEM.skin = 6
|
||
|
|
ITEM.description = "Un paquet sous film plastique contenant de la nourriture qui semble plus volumineuse que votre ration standard."
|
||
|
|
ITEM.items = {"fruit_apple", "proc_paste", "drink_breen_water", "10_coupon", "10_coupon"}
|
||
|
|
ITEM.category = "Combine"
|
||
|
|
ITEM.functions.Open = {
|
||
|
|
OnRun = function(itemTable)
|
||
|
|
local client = itemTable.player
|
||
|
|
local character = client:GetCharacter()
|
||
|
|
|
||
|
|
for _, v in ipairs(itemTable.items) do
|
||
|
|
if (!character:GetInventory():Add(v)) then
|
||
|
|
ix.item.Spawn(v, client)
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
client:EmitSound("ambient/fire/mtov_flame2.wav", 75, math.random(160, 180), 0.35)
|
||
|
|
end
|
||
|
|
}
|