Quantcast
Channel: BungeeCord Plugin Development
Viewing all 4023 articles
Browse latest View live

Block bungeecord plugin messages

$
0
0
Hey, how can i block some pluginmessages, i want to block:
- ConnectOther
- Message
- Forward
- ForwardToPlayer
- ServerIP
- KickPlayer

Why would i do this?
Its simple, i own a serverhost where all servers are connected to a proxy and players/users have access to upload their own plugins so if they know how to use the plugin messages they would be able to kick players and...


Block bungeecord plugin messages

Hide online players?

$
0
0
Hi everyone, I just want to know how to make a simple plugin to just hide players. I realised that the player.hidePlayer() method doesn't exist in BungeeCord so I was wondering how I would go about doing this.

Any help is appreciated :)

Getting errors on the InventoryClickEvent

$
0
0
Hello everyone, I'm working on a server selector plugin and the plugin is working just fine, but I think that I might have a problem with the InventoryClickEvent. Whenever I Press E and click on an item in the inventory, it sends a error message to my console.

My code :
Code (Text):

import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.List;
import java.util.logging.Logger;

import net.md_5.bungee.api.ChatColor;
import...
Getting errors on the InventoryClickEvent

Sending Players to External Server

$
0
0
Hello there!

I am making a plugin, and I'll have to send a player to an "external" server, that is not inside BungeeCord's config.yml. For example suppose a player typed "/connect mc.example.com", I'd want to be able to send them to mc.example.com, even if it's not inside the config.yml. Is it possible to do that? And if it is, I would be able to send them back, right? Since they are connected to the original BungeeCord server.

Haven't used the BungeeAPI, ever, so I am unsure of those...

Sending Players to External Server

Animated Bungee Motd

$
0
0
Hi, someone know how to do an animated motd for bungeecord?

Catch vote from ServerList Votings.

$
0
0
Hello, I'm planning to create Voting plugin, which should work with Voting pages. So probably I need to work with RSA keys. Is there any way to create own "Votifier" plugin? Or is better way to download Votifier(NuVotifier) and work with its API?
For rewards, I will have own plugin. I only need to catch vote and send data from it to my plugin.

Plugin will be on BungeeCord server.

Is it possible to create it?

Thanks :)

Issue with BungeeCord Configuration

getSever() Error

$
0
0
I am really new to Java and bukkit so I don't know alot but I was wondering. What is wrong here?
https://pastebin.com/W6iiBJ8R

I get a error on get.Sever().
Something about method etc, that I need to create one. It worked before but when I made multiple commands I had to split them and now they don't work.

Thanks for your time

Hey i need help with my plugin

$
0
0
Error:

[23:46:14 ERROR]: Could not load 'plugins/Awesome Kits.jar' in folder 'plugins' org.bukkit.plugin.InvalidPluginException: Cannot find main class `com.CDGamesYT.main.main' at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:66) ~[spigot-1.8.jar:git-Spigot-550ebac-7019900] at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:131) ~[spigot-1.8.jar:git-Spigot-550ebac-7019900] at...

Hey i need help with my plugin

Informations transfert

$
0
0
Hello! This is my first message, and I am French, so I'm sorry if I'm not good at English ^. ^
I want a method, in my bungeecord API, that can get the ram from a server (the server is in the arguments).
Like this:
public long getFreeRam(String serverName) {
return <theFreeRamOfTheServer>;
}
To get the free ram, I can do it, spigot side:
Runtime.getRuntime().freeMemory() / 1024L / 1024L;
But I want it in bungeecord! I tried the messaging channel, but if I use the messaging channel, I can not...

Informations transfert

NMS source from Buildtools is not up to date?

$
0
0
I downloaded the newest build from buildtools but unfortunately the NMS-source seems no to be up to date.
The EntityZombie source got a method called o() which is not existing in the newest version.
Does anyone know where I can get the 1.12 NMS source?

The teleportation plugin to a player

$
0
0
I would like to develop a plugin that will allow to teleport to a player who is not on the same server as us. But I do not know how to do it, since I do not know how to develop. Please help me

BungeeCord - Fake Tab Players

$
0
0
Dear reader,

I am currently working on the creation of a custom tab plugin due to the fact that the more popular plugin: BungeeTabListPlus was lacking certain features. But currently Im stuck with a problem, I have succesfully managed to be able to remove players from the tablist and now I want to add new players. I am sending a PlayerListItem packet populated with a list of PlayerListItem.Item's the problem I have is that that class requires the player properties to be set in the form of a...

BungeeCord - Fake Tab Players

How to disconnect player using RedisBungeecord plugin API?

$
0
0
How to disconnect player using RedisBungeecord plugin API?
I am having some bungeecords and when I want to disconnect single player, it becomes really iritating to find to which proxy player is connected.. So I decided to create simple plugin that will disconnect player using redis Bungee, but is it possible?
If not, is it possible to send command using this plugin api to all connected Bungeecords?
Thanks for any help! :p

PS. English is not my main language - sorry for all mistakes! :p

BUNGEECORD HACKEADO

$
0
0
Hola comunidad Minecraft español .Cómo tanto español y estadounidense. Quisiera que me ayudaran a configurar un firewall para mí BungeeCord .

Tengo una network, lo eh protegido de mil maneras con plugins para evitar posibles hackeos ya que eh escuchado que existe un nuevo ByPass ipwhitelist! Un launcher supongo que permita acceder a los servidores con la cuenta del creador y así griffear. Eh escuchado algo de la IP 0.0.0.0, y BungeeHack. ¿Que opinan ustedes? Ya está visto videos de un...

BUNGEECORD HACKEADO

RedisBungee API for Bukkit

$
0
0
I am starting up a multi proxy minigame network and was thinking that creating a RedisBungee API for Bukkit plugins would be the best way to get information from within the servers themselves. Does anyone have one pre made that they can share with me? Otherwise I will make it and release it in the resources section. Thanks.

Command TabComplete

$
0
0
I implemented in my Command Class the TabExecutor and added the onTabComplete function.
The completion works, but not only for my Command. The completion works also for custom Commands (e.g. for Commands from Multiverse-Core).

Here is the Sourcecode:

Code (Text):


//SYNTAX: /msg <Player> <Message>

@Override
public Iterable<String> onTabComplete(final CommandSender sender, String[] args) {

        if (args.length > 1) {
                return ImmutableSet.of();
        } else {...
Command TabComplete

Busco configurador/devoluper

$
0
0
> SOLO ESPAÑOL + ONLY SPANISH <

ESTOY BUSCANDO UNA PERSONA CON ESTOS CONOCIMIENTOS

- Configurador spigot/bukkit muy avanzado y actualizado.
- Devoluper para 1.8 avanzado.


Si estás interesado dejame tu skype privado.
Si no sabes mucho, no lo dejes, tendrás que pasar muchas pruebas para confirmar que no mientes.
Si vemos que realmente sabes, te ofreceremos un trato económico u otro tipo de tratos.

Saludos !

BungeeCord Queue system?

$
0
0
Hello

Does anyone know of a plugin which will queue players up before sending them to a BungeeCord server and is compatible with whitelist etc?

I have trouble finding any

Sending CUSTOM commands to BungeeCord

$
0
0
Hello Spigot community, I want to execute custom commands from my Spigot plugin to BungeeCord.

I know how to send custom commands to BungeeCord since there are various videos to watch on it. But, I was wondering if it worked the same way with custom commands which you can create inside off BungeeCord (e.g. /hello or something like that). So I made my own custom command which is /bungeetoggleon (bungee toggle on) so when a player requests help with /helpop, you can choose whether to receive...

Sending CUSTOM commands to BungeeCord
Viewing all 4023 articles
Browse latest View live


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