# Secure your events

Go to the `waveshield.lua` file in the root of the **WaveShield resource**. Simply **insert** the **name of the event you want to secure**, for example: `esx_jail:sendToJail`

```lua
EnableServerEventsSecurity = true
SecuredServerEvents = {
    "WaveShield:receiveHeartbeat", --keep this, it prevent anti stop bypasses
    "thisEventIsSecured",
    "esx_jail:sendToJail",
    -- add every events you want to secure.
}
```
