SpeedKick

This project is abandoned and its default file will likely not work with the most recent version of Minecraft. Whether this project is out of date or its author has marked it as abandoned, this project is no longer maintained.

Introduction

This simple plugin allows admins to selectively give users permission to bypass the "Moving too fast (hacking?)" kick that occurs when players seemingly move too fast. By giving the player the sk.bypass permission, they are automatically immune from this kick.

Source code

	@EventHandler
	public void onKick(PlayerKickEvent e)
	{
		if (e.getReason().contains("You moved too") && e.getPlayer().hasPermission("sk.bypass"))
		{
			e.setCancelled(true);
		}
	}

Comments

Posts Quoted:
Reply
Clear All Quotes

About This Project

Categories

Members

Recent Files