Bukkit is the name of a set of community built, open source tools envisioned and developed to ease the creation of SMP plugins. It was intended to replace hey0's Mod.
0
votes
0answers
4 views
Unable to override method aD() in custom class extending EntityLiving (using CraftBukkit for Minecraft)
I am creating a CustomZombie by extending EntityZombie (which extends ultimately EntityLiving) and want to override method aD() by copying some code that I found on bukkit forums so that I can double ...
0
votes
0answers
47 views
Java Angle Math: Calculate how near the player looks to an entity [duplicate]
I am programming a Minecraft Bukkit plugin and need a way to calculate an input number from 0 to 360 for displaying a custom compass / radar. So if the player directly looks at the object (shouldn't ...
0
votes
0answers
251 views
How can I get the entity a player is looking at in a Bukkit plugin?
I'm creating a wizardry plugin for Minecraft, and I was wondering how you would get the entity that a player was looking at, I know that you would have to use a Vector, but I really am not familiar ...
0
votes
1answer
820 views
Minecraft - How do I check if someone has a clear inventory
How do I check if a player has a clear inventory?
I'm making a PvP arena plugin but I need it so when someone types /pvp join, it checks if they have a clear inventory. If they do have a clear ...
0
votes
1answer
196 views
Index out of bounds, Java bukkit plugin
I'm getting index out of bounds errors in my Bukkit plugin, and it's really beginning to piss me off...
I for the life of me can't figure this issue out!
Caused by: ...
0
votes
2answers
425 views
Player position triggering teleports
I'm developing a Minecraft plugin (bukkit) in which a server admin can create 'portals' - a small region that will teleport any players who enter it. I have the teleportation sorted and I know how I ...
2
votes
1answer
426 views
How can I teleport seamlessly, without using interpolation?
I've been implementing Bukkit plugin for creating toggleable in-game warping areas that will teleport any catched entity to other similar area.
I was going to implement concept of non-Euclidean maze ...
-3
votes
1answer
328 views
Bukkit inventory saving: crashing somewhere
I'm working on a command for a bukkit plugin that lets you transfer worlds. In the section about saving the player's inventory, I'm getting a runtime error. My question is: Why is the error happening, ...