About This File
Fancy a bit of Centralized Banning without paying for RustAdmin or similar.
What is Centralized banning? Centralized banning is the ability to ban a player on one server and have that ban logged across all of your servers.
If you have a web server that runs php and mysql you can easily set it up.
This is literally a simplified version of the RustyBan Centralized banning system for use with the server end point system.
Installation is easy:
Setup a sql user, database and API table. (my sql rip is at the bottom)
Edit the Database.php file in API/config folder with your Database name, User and password.
Drop the API files into your webserver
drop the CentralBan.cs plugin into all your servers.
Set the API URL in the oxide config file and run the
CentralFirstRun
command in console.
then set your server.bansserverendpoint as your check.php?steamId= address
Done!
confused?
Watch my video
SQL
CREATE TABLE `API` ( `id` int(11) NOT NULL, `steamId` varchar(17) NOT NULL, `Reason` text NOT NULL, `expiryDate` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=MyISAM DEFAULT CHARSET=latin1; ALTER TABLE `API` ADD PRIMARY KEY (`id`); ALTER TABLE `API` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; COMMIT;
Edited by MikeHawke
What's New in Version 1.0.0
Released
Initial
License
Copyright 2021 MikeHawke
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.