Safe Events
The SecureServe system provides a way to secure server events, preventing malicious event executions.
Event Whitelist Configuration
If you encounter a ban message such as:
"A player has been banned for Trigger Event with an executor (name of the event)"
And the ban is determined to be false, you can resolve it by adding the event name to the whitelist. This allows the event to execute without triggering the protection mechanisms.
How to Add Events to the Whitelist
To whitelist an event, modify the SecureServe.Module.Events.Whitelist
table in your server configuration file. Add the event name as shown below:
Whitelist = { -- Events explicitly allowed even if detected as potential threats (prevents false bans).
-- Add event names here that trigger false bans (check console for exact event names).
"TestEvent",
"playerJoining",
},
Replace
ExampleEventName
andAnotherEventName
with the actual event names causing issues.Save and restart your server for the changes to take effect.
Last updated