Questions tagged [bukkit]

Bukkit is a free, open-source variant of the vanilla Minecraft server that allows programmers to extend it using plugins written in Java.

Bukkit is a Minecraft server variant that completely changes how running and modifying a Minecraft server is done, making managing and creating servers easier and providing more flexibility. It's focused on performance, ease-of-use and extreme customisability.

Bukkit provides you with the tools necessary to completely shape your server and makes it easy to maintain it through the use of a built-in plugin install, uninstall and updating system.

Plugin developers can write plugins to modify the game's behavior, adding new features into the game using the Bukkit API. They can then share their plugins with the community.

See also:

As of Aug 21, 2014 at 8:42 AM, Bukkit has been discontinued and CraftBukkit (the actual server application) has been taken down due to DMCA requests.

Now, Spigot is a continuation of Bukkit and can be used in place of CraftBukkit.

Spigot

Spigot is a modification of the original CraftBukkit project, just made more efficient. It is a huge collection of various tweaks to help increase performance, and make it more flexible as server software.

It still implements the Bukkit API, allowing most plugins originally developed for CraftBukkit to be reverse-compatible with the Spigot platform.

See also:

1809 questions
0
votes
1 answer

Java: Bukkit: Getting blocks in a line

I'm working on a plugin for the minecraft server api known as Bukkit. My issues are getting the blocks as I don't know how to achieve this. At the moment, I have the following: public boolean loadSigns(Location loc1, Location loc2){ Selection…
Kondax Design
  • 175
  • 1
  • 1
  • 15
0
votes
1 answer

Bukkit conversation fails sleeping

I'm trying to use a Bukkit conversation, which already works, yet, when I use TimeUnit.SECONDS.sleep(integer-value), it works once, and then it fails with this error in console: java.lang.InterruptedException: sleep interrupted When a prompt has…
DBX12
  • 1
0
votes
3 answers

ConcurrentModificationException; cannot fix

I'm working on a plugin for a game server api known as Bukkit; this plugin allows players to play a minigame - a game within their game. The problem I'm facing is stopping the game. When the game stops, it loops through all players within that game…
Kondax Design
  • 175
  • 1
  • 1
  • 15
0
votes
2 answers

Cannot Teleport a Player to coordinates set in a config file [Bukkit]

So I am basicly making a Warping system but I am using it for a minigame. I want the owners of the server to be able to set the warp for the different players to spawn in when the minigame starts. For some reason, I am getting a error which is…
LucaSpeedStack
  • 513
  • 2
  • 7
  • 21
0
votes
1 answer

Java Angle Math: Check how near the player looks to object

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. So if the player directly looks at the object (shouldn't handle viewing height or position height), this number…
Aich
  • 962
  • 2
  • 9
  • 19
0
votes
1 answer

Read Minecraft Forge configuration file from Bukkit plugin?

I am trying to read the contents of a forge cfg file from my bukkit plugin. I can successfully get the file, however I cannot read the values from bukkits' FileConfiguration (as far as I'm aware of). Here is an example forge cfg file from a mod: #…
Alex
  • 361
  • 1
  • 4
  • 15
0
votes
0 answers

Write commands to running process

I've searched quite a bit for answers, but haven't found anything that really helps, and the threads I found were zombies. My problem: I'm creating a UI for Bukkit servers, but for end-users to execute commands in the server, I have to write to the…
SimonC
  • 1,547
  • 1
  • 19
  • 43
0
votes
1 answer

Query Minecraft(Bukkit) Server Javascript Auto-Updating

I have a client who wants me to design them a website; and they would like a player display for each of their servers that updates every five seconds or so. How would I go about doing this? I have an example below; any help would be…
Kondax Design
  • 175
  • 1
  • 1
  • 15
0
votes
6 answers

Java programming for minecraft bukkit plugins

Hello guys I know there are obviously tutorials out there for learning java, but I was wondering is there any existing tutorials that are aimed at teaching you how to develop bukkit plugins via teaching you java in the same adventure! This can be…
user3244364
0
votes
1 answer

Bukkit: Get data from a configuration file returns null

This one has been bothering me all day. I've been googling, searching and asking around to no avail. I have a small plugin for testing economies. Saving data works just fine! It's when I wish to load data stored inside is when it becomes a…
0
votes
2 answers

Bukkit Plugin Coding Not Working?

Well to start off, I am new to Java. This is my first ever bukkit plugin and the only error is this (Click Here). The goal of the plugin is that when you right click with the "Bedrock Breaker", it breaks the bedrock. package…
user3137578
  • 11
  • 1
  • 3
0
votes
2 answers

Using Multiple sets of numbiner for the Random function in java

Alright I am trying to use the same random function to output diffrent sets of numbers. Background: I am developing a plugin for a server and am needing a number generator to make odd's of winning, What i would like to happen is to pass my odds of…
0
votes
1 answer

Unable to send commands to Bukkit Server

I've got an issue sending commands to a Bukkit server for Minecraft. My code work perfectly for Vanilla but when I try it with Bukkit it doesn't seem to want to work any longer. I still can receive all the output from the server I just can't send…
Brilliance Of Ben
  • 91
  • 1
  • 3
  • 11
0
votes
1 answer

Variable doesn't change for another class

it happens that I'm making a bukkit arena plugin. I have an Arena class, with an enum for its status. The default status is Status.disabled. I have a method that I call on the on-Enable, which sets the arena to Idle Status. The Problem is that after…
user3091392
  • 37
  • 2
  • 5
0
votes
1 answer

Minecraft Forge Method Data Type

I am trying to work with a MinecraftForge method in a Bukkit plugin. Here is my code so far: NetworkManager ic2 = new ic2.core.IC2().network; DimensionManager dmm = new net.minecraftforge.common.DimensionManager(); T worlds = dmm.getWorlds(); //…
Mattigins
  • 1,014
  • 9
  • 25