Inital Commit

This commit is contained in:
2026-02-11 18:22:33 -05:00
parent 2f71b475d8
commit 217cf67ab5
17 changed files with 106489 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
-- 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" },
},
}