Я пытался сделать так чтоб пользователь не мог брать weapon_lightsaber если он его не купил
hook.Add("PlayerSpawnObject", "RestrictQMenuWeapons", function(ply, model, entity)
local restrictedWeapons = {
["wep_laser"] = true
}
if restrictedWeapons[entity] then
local igsPid = weaponMapping[entity]
if not igsPid then
ply:ChatPrint("Ошибка: Оружие не настроено в магазине.")
return false
end
if not pl:HasPurchase(igsPid) then
ply:ChatPrint("Вы не можете взять этот предмет.")
end
end
end)
-- igs-modification/lua/igs/settings/sh_additems.lua
IGS("Cветовой меч", "wep_lightsaber"):SetWeapon("weapon_lightsaber")
:SetPrice(300)
:SetTerm(30)
:SetDescription("Разрешает спавнить Cветовой меч")
:SetCategory("Оружие")
:SetIcon("models/weapons/w_lightsaber.mdl", "model") -- Пример модели
if SERVER then
do
local ITEM_ID = "wep_lightsaber"
hook.Add("PlayerCanPickupWeapon", "RestrictLightsaber", function(ply, wep)
if wep:GetClass() == "weapon_lightsaber" then
if not ply:HasPurchase(ITEM_ID) then
ply:ChatPrint("Вы не можете взять световой меч! Купите доступ в магазине.")
return false
end
end
end)
end
end