In-Game Menu
Access admin tools directly from inside the game.
ConVars
These ConVars control the behavior of the in-game menu, and are configured through the fxPanel Settings page. ConVars configured in the settings page should not be set manually.
Settings Page ConVars
txAdmin-menuEnabledEnable or disable the in-game menu entirely. Changing it requires a server restart.
Default: true
txAdmin-menuAlignRightAlign the menu to the right side of the screen instead of the left.
Default: false
txAdmin-menuPageKeyChange the key used to switch pages within the menu. The value must be the exact browser key code (use keycode.info and the event.code value).
Default: Tab
txAdmin-playerModePtfxPlay particle effects and sound when toggling player modes (NoClip, God Mode, etc.).
Default: true
txAdmin-hideAdminInPunishmentsNever show the admin name in ban/warn messages shown to players.
Default: true
txAdmin-hideAdminInMessagesDo not show the admin name on announcements or DMs.
Default: false
txAdmin-hideDefaultAnnouncementSuppress the default announcement display, allowing you to implement your own via the txAdmin:events:announcement event.
Default: false
txAdmin-hideDefaultDirectMessageSuppress the default direct message display, allowing you to implement your own via the txAdmin:events:playerDirectMessage event.
Default: false
txAdmin-hideDefaultWarningSuppress the default warning display, allowing you to implement your own via the txAdmin:events:playerWarned event.
Default: false
txAdmin-hideDefaultScheduledRestartWarningSuppress the default scheduled restart warning display, allowing you to implement your own via the txAdmin:events:scheduledRestart event.
Default: false
ConVar Only (not in Settings page)
These ConVars are set directly in your server.cfg using setr.
txAdmin-debugModeToggle debug printing on the server and client.
Default: false
Usage: setr txAdmin-debugMode true
txAdmin-menuPlayerIdDistanceThe distance at which overhead player IDs become visible (if toggled on). The game engine limits tags to ~300m, so values above that are ineffective.
Default: 150
Usage: setr txAdmin-menuPlayerIdDistance 100
txAdmin-menuDrunkDurationHow many seconds the drunk effect (troll action) should last.
Default: 30
Usage: setr txAdmin-menuDrunkDuration 120
txAdmin-menuAnnounceNotiPosPosition of the fxPanel announcement notification. Must be one of: top-center, top-left, top-right, bottom-center, bottom-left, bottom-right.
Default: top-center
Usage: set txAdmin-menuAnnounceNotiPos top-right
Chat Commands
In addition to the menu, these chat commands are available:
/tx or /txadminOpen the admin menu. Optionally pass a player ID: /tx 42
/tpmTeleport to the waypoint set on your map.
/goto <id>Teleport to a player by their server ID.
/txAdmin-reauthRetrigger the authentication process. Available to all players (no admin required).
Troubleshooting
Nothing happens when typing /tx
Your menu is probably disabled. Check the txAdmin-menuEnabled ConVar.
Red authentication error message
If you are registered on fxPanel, type /txAdmin-reauth in the chat to retry authentication.
"Invalid Request: source" error
This means the source IP of the HTTP request from FXServer to fxPanel is not a localhost address, which can happen if your host has multiple IPs. To disable this protection, edit your config.json and set webServer.disableNuiSourceCheck to true, then restart fxPanel.