Code0 Please post your errors and code if you are having trouble
ProStriker123 Could you please copy and paste your code out of your editor, and please use the code tags. And btw, this will never happen, because...
It is actually removing the Blaze Rod from the inventory, but it isn't showed client-side. You could use: p.updateInventory(); , but this is...
It appears to be your field 'methods' is null, since the exception does not point further to the class where the removePlayer method is in.
Ofcourse it's not alphabetical, it's displayed with the highest score first, so descending.
Your else and if statements are totally screwed up, Try making it more simple, like this: (Pseudo-code) if(args.length=0) sendmessage not...
Search the forums: http://forums.bukkit.org/threads/coloured-wool-and-potions.72766/
The scores on a scoreboard are always displayed in descending order, there's no way to change it, it's client-side.
You are likely building your plugin with another version of craftbukkit than your server is running on. And why dont get the livingentities for a...
Yes, and make sure your listeners are registered EDIT: No sorry it's like this: ItemStack item = e.getItemDrop().getItemStack();
qlimax5000 String message = "This is a random message"; if(message.length > 10) message = message.substring(0, 9) + "..."; And then you can do...
Also check first if your Sign object isn't null
If you want to check the first line of the lore you can try something like this: ItemStack item; if(item.getItemMeta().getLore() != null)...
for(ItemStack item : p.getInventory().getContents()) { if(item.getType() == s.getType()) {...
Didn't test it, but this might work: if (targetBlock != null && targetBlock.getLocation().distance(playerLocation) < 100) {...
Separate names with a comma.