Files
mmkrp_2026/gamemodes/darkrp/gamemode/config/addentities.lua
2026-03-15 14:54:49 +03:00

167 lines
3.8 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
DarkRP.createShipment("Глоки отмычки", {
model = "models/weapons/w_pist_glock18.mdl",
entity = "qwb_glock18",
price = 10000,
amount = 10,
separate = false,
pricesep = 160,
noship = false,
allowed = {TEAM_GUN},
category = "Пистолеты",
})
DarkRP.createShipment("Юсп доброграды", {
model = "models/weapons/w_pist_usp.mdl",
entity = "qwb_usp",
price = 8000,
amount = 10,
separate = false,
pricesep = 160,
noship = false,
allowed = {TEAM_GUN},
category = "Пистолеты",
})
DarkRP.createShipment("Юмп сенвуя", {
model = "models/weapons/w_smg_ump45.mdl",
entity = "qwb_ump45",
price = 15000,
amount = 10,
separate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN},
category = "ПП",
})
DarkRP.createShipment("Дробовик жоский", {
model = "models/weapons/w_shot_m3super90.mdl",
entity = "qwb_m3super",
price = 19000,
amount = 10,
separate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN},
category = "Дробовики",
})
DarkRP.createShipment("Авп симпла", {
model = "models/weapons/w_snip_g3sg1.mdl",
entity = "qwb_awp",
price = 27000,
amount = 10,
separate = false,
pricesep = nil,
noship = false,
allowed = {TEAM_GUN},
category = "Снайперки",
})
DarkRP.createEntity("Принтер с урбапетличка рпг", {
ent = "nyxteam_printer",
model = "models/props_lab/reciever01a.mdl",
price = 3000,
max = 2,
cmd = "buymoneyprinter"
})
DarkRP.createEntity("Медкит", {
ent = "item_healthkit",
model = "models/Items/HealthKit.mdl",
price = 300,
max = 4,
cmd = "buymedkit"
})
DarkRP.createEntity("Арморкит", {
ent = "item_battery",
model = "models/Items/battery.mdl",
price = 300,
max = 4,
cmd = "buyarmorkit"
})
if not DarkRP.disabledDefaults["modules"]["hungermod"] then
DarkRP.createEntity("Microwave", {
ent = "microwave",
model = "models/props/cs_office/microwave.mdl",
price = 400,
max = 1,
cmd = "buymicrowave",
allowed = TEAM_COOK
})
end
DarkRP.createCategory{
name = "Другое",
categorises = "entities",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 255,
}
DarkRP.createCategory{
name = "Другое",
categorises = "shipments",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 255,
}
DarkRP.createCategory{
name = "ПП",
categorises = "shipments",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 100,
}
DarkRP.createCategory{
name = "Дробовики",
categorises = "shipments",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 101,
}
DarkRP.createCategory{
name = "Снайперки",
categorises = "shipments",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 102,
}
DarkRP.createCategory{
name = "Пистолеты",
categorises = "shipments",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 100,
}
DarkRP.createCategory{
name = "Другое",
categorises = "weapons",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 255,
}
DarkRP.createCategory{
name = "Другое",
categorises = "vehicles",
startExpanded = true,
color = Color(0, 107, 0, 255),
canSee = fp{fn.Id, true},
sortOrder = 255,
}