31 lines
906 B
Lua
31 lines
906 B
Lua
-- Default rule set for Opinionated Firearms distribution blocking.
|
|
-- Keep this empty for a clean-slate baseline.
|
|
return {
|
|
global = {
|
|
items = {},
|
|
prefixes = {},
|
|
},
|
|
byList = {
|
|
-- Example:
|
|
-- GunStorePistols = { items = { "Base.AA12" } },
|
|
},
|
|
rules = {
|
|
-- Example rule:
|
|
-- {
|
|
-- id = "weekend-attachment-ban",
|
|
-- enabled = false,
|
|
-- where = { lists = { "GunStorePistols", "PoliceStorageGuns" } },
|
|
-- when = { startsAt = 1762473600, endsAt = 1762732800 }, -- unix epoch UTC
|
|
-- block = {
|
|
-- items = { "@attachments" },
|
|
-- prefixes = { "Base.Clip_" },
|
|
-- },
|
|
-- },
|
|
},
|
|
aliases = {
|
|
-- Additional custom aliases can be added here.
|
|
-- Example:
|
|
-- police_vote_list = { "Base.AA12", "Base.AK47" },
|
|
},
|
|
}
|