VanillaPlus 0.1

Details

  • Filename
    VanillaPlus0.1.jar
  • Uploaded by
  • Uploaded
    Apr 5, 2012
  • Size
    6.35 KB
  • Downloads
    142
  • MD5
    89c5a055a8cee6522480bed7d53a1a3e

Supported Bukkit Versions

  • CB 1.2.5-R1.0

Changelog

  • When not enough arguments it will show an overview of the arguments.
  • /tp - Teleport you or someone else to another player.
  • /give - Give an item to yourself or someone else.
  • Different joinmessage.

/afk is added but not functional.
If you can help here's the code for the /afk:

public boolean afk = false;
...
	if(commandLabel.equalsIgnoreCase("afk")){
		if(afk = true) {
			Bukkit.broadcastMessage(
					ChatColor.GOLD + playerSender.getName() + ChatColor.WHITE + " has returned."
					);
			afk = false;
		}
		if(afk = false) {
			playerSender.sendMessage(
									"Type " +
									ChatColor.RED + "/afk" +
									ChatColor.WHITE + " again to announce that you're back."
									);
			Bukkit.broadcastMessage(
					ChatColor.GOLD + playerSender.getName() + ChatColor.WHITE + " is now AFK."
					);
			afk = true;
		}
	}


A simple blockblacklist is added but not functional.