JavaScript
fetch('https://docmaker.ir/data/how-to-lift-a-user-ban-in-fireac-ug-12')
.then(response => response.json())
.then(({ data }) => console.log(data));
When a player is banned, it means they are stored with a specific Ban ID in a database row.
In this method, you perform the unbanning through a command. Our command is "funban [Ban ID]".
This command can only be executed in two cases:
1 - Having access to unban
2 - Via server console
You can open the fireac_banlist table in your database and DROP the row where the player is banned. (delete it)
To grant unban permission to users, you must use the command "addunban [Player ID]".
For this, the player must be present on the server.
This command can only be executed via the server console, and no user on the server can run this command.