Minecraft Magic Wands API mod 2026 download
logo
minecraft mod Magic Wands API

Magic Wands API

Game Version: 1.4.7
Total Downloads: 2,490
Updated: Feb 17, 2013
Created: Feb 17, 2013
Download Magic Wands APIDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
Wands V 1.0.0 release 6.63 KB Feb 17, 2013 1.4.7 2,490 download Magic Wands API Wands V 1.0.0 releaseDownload

Description

Share this:

Simple really, we kill the old wands.

This plugin i would like to replace all of the wands plugins are currently using.

Config

<none>

Permissions

<none>

how to make a wand

  1. make a wand class and make it implement Wand (look below for example)
  2. register the wand – WandManager.add(Wand Class);
  3. make sure you have depend: Wands in you config

Examples

Wand Class
public class ProtectionWand implements Wand {
	public HashMap<String,Location[]> selections = new HashMap<String,Location[]>();
	@Override
	public void onRightClick(ItemStack itemStack, Player player,
			Block bockedClick, BlockFace face) {
	}

	@Override
	public void onLeftClick(ItemStack itemStack, Player player,
			Block bockedClick, BlockFace face) {

	}
	@Override
	public boolean canCreate(ItemStack itemStack, Player player) {
            return true;
	}

	@Override
	public String getName() {
		return ChatColor.GOLD+"Protection Wand";
	}

}

Pictures 😀

Example
Example

Comments

Add a comment