mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 06:03:47 +03:00
Upload
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
--[[
|
||||
| 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 = "Ładownica na amunicję"
|
||||
ITEM.description = "Torba, która może pomieścić sporą ilość pocisków."
|
||||
ITEM.model = Model("models/willardnetworks/clothingitems/backpack.mdl")
|
||||
ITEM.noOpen = false
|
||||
ITEM.noEquip = true
|
||||
ITEM.invWidth = 4
|
||||
ITEM.invHeight = 2
|
||||
ITEM.width = 2
|
||||
ITEM.height = 1
|
||||
ITEM.restriction = { -- ammo is base_stackable, and thats kinda too broad for this so gotta list it manually
|
||||
"bullets_357",
|
||||
"bullets_assaultrifle",
|
||||
"bullets_buckshot",
|
||||
"bullets_heavypulse",
|
||||
"bullets_pistol",
|
||||
"bullets_pulse",
|
||||
"bullets_smg1",
|
||||
"bullets_sniper"
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
--[[
|
||||
| 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 = "Duża torba"
|
||||
ITEM.description = "Plecak z insygniami Kombinatu."
|
||||
ITEM.invWidth = 4
|
||||
ITEM.invHeight = 4
|
||||
ITEM.bodygroup = "bag"
|
||||
ITEM.model = Model("models/willardnetworks/clothingitems/backpack.mdl")
|
||||
ITEM.outfitCategory = "Bag"
|
||||
ITEM.noOpen = true
|
||||
|
||||
ITEM.hooks.View = function(item, data)
|
||||
local client = item.player
|
||||
local inventory = client:GetCharacter():GetInventory()
|
||||
local items = inventory:GetItemsByUniqueID(item.uniqueID)
|
||||
if (#items > 1) then
|
||||
table.SortByMember(items, "id", true)
|
||||
if (items[1].id != item.id) then
|
||||
return false
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,18 @@
|
||||
--[[
|
||||
| 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 = "Ładownica na magazynki"
|
||||
ITEM.description = "Torba, do której można schować magazynki."
|
||||
ITEM.model = Model("models/willardnetworks/clothingitems/satchel.mdl")
|
||||
ITEM.noOpen = false
|
||||
ITEM.noEquip = true
|
||||
ITEM.invWidth = 4
|
||||
ITEM.invHeight = 1
|
||||
ITEM.restriction = {"base_arccwmag"}
|
||||
@@ -0,0 +1,26 @@
|
||||
--[[
|
||||
| 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 = "Torba medyczna"
|
||||
ITEM.description = "Torba, w której można schować wszystkie przybory medyczne"
|
||||
ITEM.model = Model("models/willardnetworks/clothingitems/satchel.mdl")
|
||||
ITEM.noOpen = false
|
||||
ITEM.noEquip = true
|
||||
ITEM.invWidth = 2
|
||||
ITEM.invHeight = 6
|
||||
ITEM.restriction = {
|
||||
"base_medical",
|
||||
"drink_saline",
|
||||
"comp_antidote",
|
||||
"comp_bloodsyringe",
|
||||
"comp_syringe",
|
||||
"drug_amph_a",
|
||||
"drug_amph_b",
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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 = "Mała torba"
|
||||
ITEM.description = "Mała saszetka, która spoczywa na biodrze."
|
||||
ITEM.invWidth = 3
|
||||
ITEM.invHeight = 4
|
||||
ITEM.bodygroup = "satchel"
|
||||
ITEM.model = Model("models/willardnetworks/clothingitems/satchel.mdl")
|
||||
ITEM.outfitCategory = "Satchel"
|
||||
ITEM.noOpen = true
|
||||
Reference in New Issue
Block a user