monitor/docs/events.md
2025-04-16 22:30:27 +07:00

198 lines
9.6 KiB
Markdown

# Events Broadcasted
txAdmin sends **server events** to allow for integration of some functionalities with other resources.
The event name will be `txAdmin:events:<name>` and the first (and only) parameter will be a table that may contain relevant data.
> [!IMPORTANT]
> Do not fully rely on events where consistency is key since they may be executed while the server is not online therefore your resource would not be notified about it. For instance, while the server is stopped one could whitelist or ban player identifiers.
## Server-related Events
### txAdmin:events:announcement
Broadcasted when an announcement is made using txAdmin.
If you want to hide the default notification, you can do that in `txAdmin -> Settings -> Game -> Notifications`.
Event Data:
- `author`: The name of the admin or `txAdmin`.
- `message`: The message of the broadcast.
### txAdmin:events:serverShuttingDown
Broadcasted when the server is about to shut down.
This can be triggered in a scheduled and unscheduled stop or restart, by an admin or by the system.
Event Data:
- `delay`: How many milliseconds txAdmin will wait before killing the server process.
- `author`: The name of the admin or `txAdmin`.
- `message`: The message of the broadcast.
### txAdmin:events:scheduledRestart
Broadcasted automatically `[30, 15, 10, 5, 4, 3, 2, 1]` minutes before a scheduled restart.
If you want to hide the default notification, you can do that in `txAdmin -> Settings -> Game -> Notifications`.
Event Data:
- `secondsRemaining`: The number of seconds before the scheduled restart.
- `translatedMessage`: The translated message to show on the announcement.
Example usage on ESX v1.2:
```lua
ESX = nil
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
AddEventHandler('txAdmin:events:scheduledRestart', function(eventData)
if eventData.secondsRemaining == 60 then
CreateThread(function()
Wait(45000)
print("15 seconds before restart... saving all players!")
ESX.SavePlayers(function()
-- do something
end)
end)
end
end)
```
### txAdmin:events:scheduledRestartSkipped
Broadcasted when an admin skips the next scheduled restart.
Event Data:
- `secondsRemaining`: The number of seconds before the previously scheduled restart.
- `temporary`: If it was a temporary scheduled restart or one configured in the settings page.
- `author`: The name of the admin that skipped the restart.
## Player-related Events
### txAdmin:events:playerBanned
Broadcasted when a player is banned using txAdmin.
On update v5.0.0 the field `target` was replaced by `targetNetId` and `targetIds`.
Event Data:
- `author`: The name of the admin.
- `reason`: The reason of the ban.
- `actionId`: The ID of this action.
- `expiration`: The timestamp for this ban expiration, for `false` if permanent. Added in txAdmin v4.9.
- `durationInput`: xxx. Added in v5.0.
- `durationTranslated`: xxx or `null`. Added in v5.0.
- `targetNetId`: The netid of the player that was banned, or `null` if a ban was applied to identifiers only. Added in v5.0.
- `targetIds`: The identifiers that were banned. Added in v5.0.
- `targetHwids`: The hardware identifiers that were banned. Might be an empty array. Added in v6.0.
- `targetName`: The clean name of the banned player, or `identifiers` if ban was applied to ids only (legacy ban). Added in v5.0.
- `kickMessage`: The message to show the player as a kick reason. Added in v5.0.
### txAdmin:events:playerDirectMessage
Broadcasted when an admin DMs a player.
If you want to hide the default notification, you can do that in `txAdmin -> Settings -> Game -> Notifications`.
Event Data:
- `target`: The id of the player to receive the DM.
- `author`: The name of the admin.
- `message`: The message content.
### txAdmin:events:playerHealed
Broadcasted when a heal event is triggered for a player/whole server.
This is most useful for servers running "ambulance job" or other resources that keep a player unconscious even after the health being restored to 100%.
Event Data:
- `target`: The ID of the healed player, or `-1` if the entire server was healed.
- `author`: The name of the admin that triggered the heal.
### txAdmin:events:playerKicked
Broadcasted when a player is kicked using txAdmin.
Note: starting on v8.0, the `target` parameter might be `-1`, and `dropMessage` was introduced.
Event Data:
- `target`: The ID of the player that was kicked, or `-1` if kicking everyone.
- `author`: The name of the admin.
- `reason`: The reason of the kick.
- `dropMessage`: The translated message the players will see when kicked.
### txAdmin:events:playerWarned
Broadcasted when a player is warned using txAdmin.
If you want to hide the default notification, you can do that in `txAdmin -> Settings -> Game -> Notifications`.
Note: starting on v7.3, the `target` parameter was replaced by `targetNetId`, `targetIds`, and `targetName` to accomodate offline warns.
Event Data:
- `author`: The name of the admin.
- `reason`: The reason of the warn.
- `actionId`: The ID of this action.
- `targetNetId`: The netid of the player that was warned, or `null` if the target is not online. Added in v7.3.
- `targetIds`: The identifiers that were warned. Added in v7.3.
- `targetName`: The clean name of the player warned. Added in v7.3.
## Whitelist-related Events
### txAdmin:events:whitelistPlayer
Broadcasted when a player is whitelisted, or has the whitelisted status revoked.
This event is only fired when the player is already registered, and is not related to whitelist requests or approved whitelists pending join.
Event Data:
- `action`: `added`/`removed`.
- `license`: The license of the player.
- `playerName`: The player display name.
- `adminName`: Name of the admin that performed the action.
### txAdmin:events:whitelistPreApproval
Broadcasted when manually adding some identifier to the whitelist pre-approvals, meaning that as soon as a player with this identifier connects to the server, they will be saved to the database as a whitelisted player (without triggering `txAdmin:events:whitelistPlayer`).
This event is not gonna be broadcasted when a whitelist request is approved, for that use `txAdmin:events:whitelistRequest`.
This can be done in the Whitelist Page, or using the `/whitelist <member>` Discord bot slash command.
Event Data:
- `action`: `added`/`removed`.
- `identifier`: The identifier that was pre-approved (eg. `discord:xxxxxx`).
- `playerName?`: The player display name, except when action is `removed`.
- `adminName`: Name of the admin that performed the action.
### txAdmin:events:whitelistRequest
Broadcasted whenever some event related to the whitelist requests happen.
Event Data:
- `action`: `requested`/`approved`/`denied`/`deniedAll`.
- `playerName?`: The player display name, except when action is `deniedAll`.
- `requestId?`: The request ID (eg. `Rxxxx`), except when action is `deniedAll`.
- `license?`: The license of the player/requester, except when action is `deniedAll`.
- `adminName?`: Name of the admin that performed the action, except when action is `requested`.
## Other Events
### txAdmin:events:actionRevoked
Broadcasted when an admin revokes a database action (ex. ban, warn).
Event Data:
- `actionId`: The id of the player to receive the DM.
- `actionType`: The type of the action that was revoked.
- `actionReason`: The action reason.
- `actionAuthor`: The name of the admin that issued the action.
- `playerName`: name of the player that received the action, or `false` if doesn't apply.
- `playerIds`: Array containing all identifiers (ex. license, discord, etc.) this action applied to.
- `playerHwids`: Array containing all hardware ID tokens this action applied to. Might be an empty array. Added in v6.0.
- `revokedBy`: The name of the admin that revoked the action.
### txAdmin:events:adminAuth
Broadcasted whenever an admin is authenticated in game, or loses the admin permissions.
This event is particularly useful for anti-cheats to be able to ignore txAdmin admins.
Event Data:
- `netid` (number): The ID of the player or `-1` when revoking the permission of all admins (forced reauth).
- `isAdmin` (boolean): If the player is an admin or not.
- `username?` (string): The txAdmin username of the admin that was just authenticated.
### txAdmin:events:adminsUpdated
Broadcasted whenever a change happens to the list of admins (including their permissions and identifiers).
This event is used by the txAdmin resource to force admins to refresh their auth.
Event Data: array of NetIds of the admins online.
### txAdmin:events:configChanged
Broadcasted when the txAdmin settings change in a way that could be relevant for the server.
Event Data: this event has no data.
At the moment, this is only used to signal the txAdmin in-game Menu if the configured language has changed, and can be used to easily test custom language files without requiring a server restart.
### txAdmin:events:consoleCommand
Broadcasted whenever an admin sends a command through the Live Console.
Event Data:
- `author`: The txAdmin username of the admin that sent the command.
- `channel`: For now this will always be `txAdmin`, but in the future it might be `rcon` and `game` as well.
- `command`: The command that was executed.
## Deprecated Events
### txAdmin:events:playerWhitelisted
This event was deprecated on v5.0.0, and on v5.2.0 new events were added to replace this one.
### txAdmin:events:healedPlayer
This event was deprecated on v8.0, and soon will stop being triggered.
Please use `txAdmin:events:playerHealed` instead.
### txAdmin:events:skippedNextScheduledRestart
This event was deprecated on v8.0, and soon will stop being triggered.
Please use `txAdmin:events:scheduledRestartSkipped` instead.