Quantcast
Channel: SpigotMC - High Performance Minecraft
Viewing all 128654 articles
Browse latest View live

Server Appears Offline


How do I show a text in the top right corner?

$
0
0
Hello, so I was playing in a 1.14 server with 1.12 client and I saw this \/
[​IMG]
This is the first time I see something like this. Could it be the resourcepack?

Which minecraft server version is the best?

$
0
0
Guys please help me I can't decide which version to use on my factions server!

Command Frameworks

$
0
0
What is the best command framework these days, I understand that sk98q has his own called Intake (https://github.com/EngineHub/Intake) and Aikar has his called ACF (https://github.com/aikar/commands) I was wondering which of these were the best to use and which (if any) are better.

I have previously written my own command manager classes and interfaces to work with SubCommands but am looking for a more professionally written framework.

How much ram should I use for Minecraft?

$
0
0
I am getting a new dell with an I5 9400 12gb of ram and a 1tb hard drive. I am going to install Linux on it and use it as my Minecraft server. How much ram should I use for Minecraft? And do you think that the standard hard drive will affect gameplay on the server? It's just going to be me and my friend playing on it.

My Batch File Won't Run

$
0
0
When I attempt to run my run.batch file to start the server it shows me this error in the cmd

Invalid maximum heap size: -Xmx4096M
The specified size exceeds the maximum representable size.
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

Please Help.

Looping Teams Issue

$
0
0
Hello,

I am currently trying to make it so if a player walks through a region(two locations), then it
will say what region/team they walked in. The issue is, when they walk in a region, it will
say in chat the first region spotted in the config file.

For Example, this is my config right now:

Code (Text):

  Map1:
    TEAMS:
      GREEN:
        COLOR-NAME: Green
        REGION:
          POS1:
            X: -497.0
            Z: -86.0
          POS2:
            X: -491.0...

Looping Teams Issue

Runnable Countdown error

$
0
0
I have this problem with the runnable that starts the countdown, everything works fine, but if the count is canceled and you want to restart it does not do it and sends me this error



Code (Text):
Already scheduled as 10
    at org.bukkit.scheduler.BukkitRunnable.checkState(BukkitRunnable.java:141) ~[craftbukkit.jar:git-Spigot-596221b-9a1fc1e]
    at org.bukkit.scheduler.BukkitRunnable.runTaskTimerAsynchronously(BukkitRunnable.java:121) ~[craftbukkit.jar:git-Spigot-596221b-9a1fc1e]
    at...
Runnable Countdown error

How to getlogger() from console

$
0
0
Hello, I need to capture everthing which is shown in console after start server. How can I do that?
I tried to use getlogger() and add a handler with log Level.ALL but it just captured one message about empty permissions.yml file and nothing more later.

Any advices?

Rotating entire armor stand model

$
0
0
Hi!

So I'm created a little armor stand model. You can see it below:
[​IMG]
Code is:
Code (Java):

    public static HashMap<ArmorStand, Vector> penis = new HashMap<ArmorStand, Vector>();

    public static void spawn(Location l) {

        l.setYaw(0);

        l.setY(l.getY() + 0.15D);
        ArmorStand penis1 = penis(l);
        penis.put(penis1, new Vector(0, 0.15, 0.5625));

        l.setX(l.getX() + 0.1875D);
        ArmorStand penis2 = penis(l);...
Rotating entire armor stand model

Bridge Egg

$
0
0
I need help! I am from Turkey. My English is not too good :/ Help me please. I want the egg thrown to create the bridge. Can you write me a skript? Thank you from now.

ExtensionsBukkit

$
0
0
A few days ago, I have started a new project, "ExtensionsBukkit".
ExtensionsBukkit will be a bukkit plugin, and will be a modding API, that will be loading "Extensions".
Extensions will be able to:
- Handle events
- Add new items
- Add new blocks
- Add new recipes
and more
ExtensionsBukkit will be using a resourcepack for making custom block textures, custom item textures, custom guis, etc.

If anyone wants to help, you’re welcome!

Gitea:...

ExtensionsBukkit

KillAura Detection

$
0
0
Topic: Hi, I am opening this thread to discuss how you guys block KillAura. I will be talking about how plugins developers are trying to block KillAura and how hack clients developers managed to bypass them.

Content:
At first in the 2013, many plugins do not block KillAura. Many members have requested KillAura detection plugin in bukkit.

Later, the NPC feature was implemented and became famous on detecting KillAura. Many plugins spawn invisible NPCs to detect KillAura....

KillAura Detection

Disable name tag in specific area

$
0
0
Hello everyone,

I have a minecraft server and have made a pvp arena for my players to pvp, my players suggest me to disable name tag during pvp, is there any plugin that can disable name tag display for players in a certain area, instead of disabling name tag for all players?

How to cancel spawn on join ?

$
0
0
Everything is said on the title, but i've already tried in the essentials config setting "spawn-on-join" to false. It doesn't change anything.
Another weird thing : when i connect, my console show me that I spawn at the place where i disconnected but for me, when i connect, i'm at the spawn. The more, on the console it doesn't show any teleportation.

Scoreboard Conflict?

$
0
0
I have set in my plugin two separate classes for two different scoreboards. One for an actual side bar and another for the tablist / player names.

The tablist works just fine but the scoreboard, it appears and disappears instantly on join. I don't get why it's not staying

Scoreboard class:
Code (Java):
    @EventHandler
    public void setSB(PlayerJoinEvent event) {
            Player player = event.getPlayer();
            Profile user = new Profile(player.getUniqueId());...

Scoreboard Conflict?

Get item used for BlockBreakEvent

$
0
0
I have a plugin that is modifying the drops from breaking ores, but I need to know what will be dropped so that I can add to it. But to do that I need to know the tool used so that I can put it into
#BlockBreakEvent.getBlock().getDrops(ItemStack tool)
I'm not sure how to work this out since the player might have the tool in their offhand and there doesn't seem to be a way to work out which they have used.

Favorite all time game?

$
0
0
Minecraft. Sorry if Im a bit biased :p

Which plugin can best prevent autofish

$
0
0
Which plugin can best prevent autofish

Trying to open doors, gates, and glass walls.

$
0
0
Trying to update the following code to the 1.13 / 1.14 API.

Code (Java):
 public static void setDoor(Block b, boolean onOff) {
        if (Conf.isDoor(b) || Conf.isGate(b)) {
            int dat = b.getData(); //Open/close door:
            if (onOff && dat < 4) {
                b.setData((byte) (dat + 4));
                playDoorSound(b, onOff);
            } else if (!onOff && dat >= 4) {
                b.setData((byte) (dat - 4));
                playDoorSound(b, onOff);
            }...
Trying to open doors, gates, and glass walls.
Viewing all 128654 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>