🔫Weapon Things
You can find weapon-related content for the Evidence script here.
How do I make a shell casing according to weapon type
Config.CaseModels = { -- Probe of the shell / bullet case sample to be formed on the ground when fired with a gun
[`GROUP_SNIPER`] = "w_pi_singleshot_shell",
} How do I add Blacklist Weapon
Config.BlackListedWeapons = {
["weapons"] = {
[`weapon_pistol`] = true,
[`your_weapon_name`] = true,
},
["group"] = {
[`GROUP_MELEE`] = true,
[`GROUP_THROWN`] = true,
[`GROUP_STUNGUN`] = true,
[`GROUP_PETROLCAN`] = true,
[`GROUP_PARACHUTE`] = true,
}
}Where can I change the weapon names that appear in the archive
Last updated