fWarps
fWarps is a simple, MySQL based warping plugin. fWarps is relatively configurable and let's you configure the permission nodes needed to execute commands, the MySQL login info, and a startup logger. No other plugins are required to use fWarps.
For a list of commands, see here. For a guide on the configuration file, see here.
Setup:
- Download the plugin from this page
- Start the server once, with the plugin, you will get errors in console
- Stop the server
- Follow the configuration guide
- Run the following query on your MySQL database:
CREATE TABLE IF NOT EXISTS `warps` ( `warp_id` int(10) NOT NULL AUTO_INCREMENT, `warp_name` varchar(60) NOT NULL, `warp_author` varchar(20) NOT NULL, `world_name` varchar(50) NOT NULL, `x` int(255) NOT NULL, `y` int(255) NOT NULL, `z` int(255) NOT NULL, PRIMARY KEY (`warp_id`), UNIQUE KEY `warp_name` (`warp_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Developers: The source code of the plugin can be found here
Note: The plugin contains a startup logger which sends the plugin name and version to a webserver. No sensitive data is sent. The logger can be disabled in the configuration file, however i would appreciate if you kept it on, because i get useful, anonymous statistics about the plugin.