FXServer Integration
txAdmin Compatibility
Out-of-the-box compatibility with txAdmin events to ensure your existing scripts work without modifications.
Overview
To make switching to fxManager seamless, the provided game resource automatically emulates native txAdmin events. If your existing scripts listen for txAdmin notifications, server lifecycle updates, or moderation actions, they will work out of the box.
Official Documentation Reference
For more details on txAdmins events, you can reference the Official txAdmin Events Documentation.
How to Listen to Events
You can catch these events in your server scripts exactly how you would with standard txAdmin:
AddEventHandler('txAdmin:events:playerBanned', function(data)
print(data.author .. " banned " .. data.targetName .. " for: " .. data.reason)
end)