Server Bounties
File: server/bounty.lua
Bounty board system — post, claim, complete bounties.
Events
| Event | Description |
|---|---|
wtf_group:server:postBounty | Post new bounty |
wtf_group:server:claimBounty | Claim bounty |
wtf_group:server:completeBounty | Mark bounty completed |
wtf_group:server:cancelBounty | Cancel bounty |
Config
lua
Config.Bounties = {
Enabled = true,
MaxActiveBounties = 10,
MaxBountyReward = 1000000,
DefaultExpiry = 3600, -- seconds
AllowSelfBounty = false,
XPOnPost = 25,
XPOnComplete = 75,
}Bounty States
active → claimed → completed
active → expired
active → cancelled
claimed → failed