first commit
This commit is contained in:
parent
99564aaa64
commit
db66d45170
|
@ -1,8 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<classpath>
|
|
||||||
<classpathentry kind="src" path="src"/>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
|
|
||||||
<classpathentry kind="lib" path="F:/DevServer/Spigot/spigot.jar"/>
|
|
||||||
<classpathentry kind="lib" path="F:/Sources/Jars/teamspeak3-api-1.0.12.jar"/>
|
|
||||||
<classpathentry kind="output" path="bin"/>
|
|
||||||
</classpath>
|
|
|
@ -1,10 +0,0 @@
|
||||||
stages:
|
|
||||||
- build
|
|
||||||
- test
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
job1:
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- find -name "*.java" > sources.txt
|
|
||||||
- javac bin @sources.txt
|
|
17
.project
17
.project
|
@ -1,17 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<projectDescription>
|
|
||||||
<name>Core</name>
|
|
||||||
<comment></comment>
|
|
||||||
<projects>
|
|
||||||
</projects>
|
|
||||||
<buildSpec>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
</buildSpec>
|
|
||||||
<natures>
|
|
||||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
|
||||||
</natures>
|
|
||||||
</projectDescription>
|
|
|
@ -2,4 +2,4 @@ Core Plugin for univento.eu
|
||||||
|
|
||||||
Written by joethei
|
Written by joethei
|
||||||
|
|
||||||
API Doku at: http://joethei.de/javadocs/Core
|
API Doku can be found at: http://dev.univento.eu/docs/Core
|
|
@ -0,0 +1,33 @@
|
||||||
|
package eu.univento.cloud.client;
|
||||||
|
|
||||||
|
import io.netty.bootstrap.Bootstrap;
|
||||||
|
import io.netty.channel.Channel;
|
||||||
|
import io.netty.channel.ChannelInitializer;
|
||||||
|
import io.netty.channel.nio.NioEventLoopGroup;
|
||||||
|
import io.netty.channel.socket.nio.NioSocketChannel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class CloudClient {
|
||||||
|
|
||||||
|
public CloudClient() throws Exception{
|
||||||
|
NioEventLoopGroup child = new NioEventLoopGroup();
|
||||||
|
try{
|
||||||
|
Bootstrap bootstrap = new Bootstrap();
|
||||||
|
bootstrap.channel(NioSocketChannel.class);
|
||||||
|
bootstrap.group(child);
|
||||||
|
bootstrap.handler(new ChannelInitializer<Channel>() {
|
||||||
|
@Override
|
||||||
|
protected void initChannel(Channel channel) throws Exception {
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
bootstrap.connect("master.univento.eu", 8000).sync().channel().closeFuture().sync();
|
||||||
|
}finally {
|
||||||
|
child.shutdownGracefully();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,36 +1,23 @@
|
||||||
package eu.univento.core;
|
package eu.univento.core;
|
||||||
|
|
||||||
import java.io.IOException;
|
import eu.univento.core.api.BossBar;
|
||||||
import java.sql.SQLException;
|
import eu.univento.core.api.Config;
|
||||||
import java.util.HashMap;
|
import eu.univento.core.api.SignInput;
|
||||||
import java.util.logging.Level;
|
import eu.univento.core.api.database.MySQL;
|
||||||
import java.util.logging.Logger;
|
import eu.univento.core.api.events.MoveEventFilter;
|
||||||
|
import eu.univento.core.api.fakeplayer.PlayerKi;
|
||||||
|
import eu.univento.core.api.player.TeamSpeak;
|
||||||
|
import eu.univento.core.api.server.ServerSettings;
|
||||||
|
import eu.univento.core.commands.*;
|
||||||
|
import eu.univento.core.listeners.*;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.plugin.PluginManager;
|
import org.bukkit.plugin.PluginManager;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
|
||||||
import eu.univento.core.api.Config;
|
import java.io.IOException;
|
||||||
import eu.univento.core.api.Messages;
|
import java.sql.SQLException;
|
||||||
import eu.univento.core.api.MySQL;
|
import java.util.logging.Level;
|
||||||
import eu.univento.core.api.Settings;
|
import java.util.logging.Logger;
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms;
|
|
||||||
import eu.univento.core.commands.Ban;
|
|
||||||
import eu.univento.core.commands.Build;
|
|
||||||
import eu.univento.core.commands.Fix;
|
|
||||||
import eu.univento.core.commands.GameMode;
|
|
||||||
import eu.univento.core.commands.GlobalMute;
|
|
||||||
import eu.univento.core.commands.RunAs;
|
|
||||||
import eu.univento.core.commands.SetRank;
|
|
||||||
import eu.univento.core.commands.SystemInfo;
|
|
||||||
import eu.univento.core.commands.TS;
|
|
||||||
import eu.univento.core.commands.Vanish;
|
|
||||||
import eu.univento.core.commands.Youtuber;
|
|
||||||
import eu.univento.core.listeners.Blocks;
|
|
||||||
import eu.univento.core.listeners.Chat;
|
|
||||||
import eu.univento.core.listeners.Commands;
|
|
||||||
import eu.univento.core.listeners.JoinQuit;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* main class
|
* main class
|
||||||
|
@ -39,6 +26,8 @@ import eu.univento.core.listeners.JoinQuit;
|
||||||
*/
|
*/
|
||||||
public class Core extends JavaPlugin{
|
public class Core extends JavaPlugin{
|
||||||
|
|
||||||
|
//TODO: rewrite time critical database functions from MySQL to MongoDB
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* plugin instance
|
* plugin instance
|
||||||
*/
|
*/
|
||||||
|
@ -61,11 +50,11 @@ public class Core extends JavaPlugin{
|
||||||
return sql;
|
return sql;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
private static TeamSpeak ts;
|
||||||
* nick names of players
|
|
||||||
*/
|
|
||||||
public static HashMap<CustomPlayer, String> nicks = new HashMap<CustomPlayer, String>();
|
|
||||||
|
|
||||||
|
public static TeamSpeak getTs() {
|
||||||
|
return ts;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* logging and stuff
|
* logging and stuff
|
||||||
*/
|
*/
|
||||||
|
@ -76,40 +65,51 @@ public class Core extends JavaPlugin{
|
||||||
* @param string String
|
* @param string String
|
||||||
*/
|
*/
|
||||||
public static void log(Level level, String string) {
|
public static void log(Level level, String string) {
|
||||||
log.log(level, "[" + Messages.CONSOLE_PREFIX + Core.getInstance().getDescription().getName() + "] " + string);
|
if(ServerSettings.isDebug()) {
|
||||||
|
log.log(level, "[Core] " + string);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private SignInput signInput;
|
||||||
|
|
||||||
|
public SignInput getSignInput() {
|
||||||
|
return signInput;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onEnable() {
|
public void onEnable() {
|
||||||
Settings.setDebug(true);
|
ServerSettings.setDebug(true);
|
||||||
Settings.setBuild(true);
|
|
||||||
try {
|
try {
|
||||||
Config.writeDefault();
|
Config.writeDefault();
|
||||||
} catch (ClassNotFoundException | SQLException | IOException e) {
|
} catch (ClassNotFoundException | SQLException | IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
instance = this;
|
instance = this;
|
||||||
if(Settings.isDebug()) log(Level.INFO, "Debug Modus aktiviert");
|
this.signInput = new SignInput(this);
|
||||||
Perms.initScoreboard();
|
if(ServerSettings.isDebug()) log(Level.INFO, "Debug Modus aktiviert");
|
||||||
PluginManager pm = Bukkit.getPluginManager();
|
PluginManager pm = Bukkit.getPluginManager();
|
||||||
pm.registerEvents(new Commands(), this);
|
pm.registerEvents(new Commands(), this);
|
||||||
pm.registerEvents(new JoinQuit(), this);
|
pm.registerEvents(new JoinQuit(), this);
|
||||||
pm.registerEvents(new Chat(), this);
|
pm.registerEvents(new Chat(), this);
|
||||||
pm.registerEvents(new Blocks(), this);
|
pm.registerEvents(new Blocks(), this);
|
||||||
|
pm.registerEvents(new Events(), this);
|
||||||
|
pm.registerEvents(new MoveEventFilter(getServer()), this);
|
||||||
|
pm.registerEvents(new BossBar(), this);
|
||||||
|
pm.registerEvents(new PlayerKi(), this);
|
||||||
|
|
||||||
if(Settings.isDebug()) log(Level.INFO, "Events registriert");
|
log(Level.INFO, "Events registriert");
|
||||||
|
|
||||||
String[] fix = {""};
|
String[] fix = {""};
|
||||||
new Fix(this, "fix", "Fixe dich oder andere Spieler", fix);
|
if(ServerSettings.isGame()) new Fix(this, "fix", "Fixe dich oder andere Spieler", fix);
|
||||||
|
|
||||||
String[] runas = {""};
|
String[] runas = {""};
|
||||||
new RunAs(this, "RunAs", "Sende einen Befehl als ein anderer Spieler", runas);
|
new RunAs(this, "RunAs", "Sende einen Befehl als ein anderer Spieler", runas);
|
||||||
|
|
||||||
String[] systeminfo = {""};
|
String[] systeminfo = {""};
|
||||||
new SystemInfo(this, "SystemInfo", "Gibt Infos über den Server aus", systeminfo);
|
new SystemInfo(this, "SystemInfo", "Gibt Infos über den ServerPinger aus", systeminfo);
|
||||||
|
|
||||||
String[] vanish = {""};
|
String[] vanish = {""};
|
||||||
new Vanish(this, "vanish", "Lässt dich verschwinden", vanish);
|
new Vanish(this, "vanish", "Lässt dich verschwinden", vanish);
|
||||||
|
|
||||||
String[] gamemode = {"gm"};
|
String[] gamemode = {"gm"};
|
||||||
new GameMode(this, "gamemode" , "Setzt deinen GameMode", gamemode);
|
new GameMode(this, "gamemode" , "Setzt deinen GameMode", gamemode);
|
||||||
|
@ -118,7 +118,7 @@ public class Core extends JavaPlugin{
|
||||||
new SetRank(this, "setrank" , "Setzt den Rang eines Spielers", setrank);
|
new SetRank(this, "setrank" , "Setzt den Rang eines Spielers", setrank);
|
||||||
|
|
||||||
String[] globalmute = {"globalmute"};
|
String[] globalmute = {"globalmute"};
|
||||||
new GlobalMute(this, "globalmute", "Muted den gesamten Server", globalmute);
|
new GlobalMute(this, "globalmute", "Muted den gesamten ServerPinger", globalmute);
|
||||||
|
|
||||||
String[] youtuber = {""};
|
String[] youtuber = {""};
|
||||||
new Youtuber(this, "youtuber", "setzt Spieler in den Youtuber Rang", youtuber);
|
new Youtuber(this, "youtuber", "setzt Spieler in den Youtuber Rang", youtuber);
|
||||||
|
@ -129,51 +129,31 @@ public class Core extends JavaPlugin{
|
||||||
String[] ban = {""};
|
String[] ban = {""};
|
||||||
new Ban(this, "ban", "Bannt Spieler", ban);
|
new Ban(this, "ban", "Bannt Spieler", ban);
|
||||||
|
|
||||||
if(Settings.isBuild()) {
|
|
||||||
String[] build = {"b"};
|
String[] build = {"b"};
|
||||||
new Build(this, "build", "Setzt den Spieler in den Bau Modus", build);
|
new Build(this, "build", "Setzt den Spieler in den Bau Modus", build);
|
||||||
|
|
||||||
if(Settings.isDebug()) log(Level.INFO, "Build Modus aktiviert");
|
String[] chatclear = {"cc"};
|
||||||
|
new ChatClear(this, "chatclear", "Cleart den Chat", chatclear);
|
||||||
|
|
||||||
|
if(ServerSettings.isGame()) {
|
||||||
|
String[] nick = {""};
|
||||||
|
new Nick(this, "nick", "ändert das Verhalten des Nicksystems", nick);
|
||||||
|
log(Level.INFO, "/nick aktiviert");
|
||||||
}
|
}
|
||||||
if(Settings.isDebug()) log(Level.INFO, "Alle Befehle registriert");
|
|
||||||
|
|
||||||
try
|
log(Level.INFO, "Alle Befehle registriert");
|
||||||
{
|
|
||||||
MySQL tempSQL = sql;
|
|
||||||
tempSQL.openConnection();
|
|
||||||
|
|
||||||
tempSQL.getConnection().createStatement().execute("CREATE TABLE IF NOT EXISTS PlayerData(ID bigint PRIMARY KEY auto_increment, player_uuid varchar(50), FirstJoin TIMESTAMP default now(), Coins bigint, mute boolean, Rank varchar(15),TS_ID bigint, Friends varchar(2500), nick boolean);");
|
|
||||||
if(Settings.isDebug()) log(Level.INFO, "MySQL PlayerData ausgeführt");
|
|
||||||
|
|
||||||
tempSQL.getConnection().createStatement().execute("CREATE TABLE IF NOT EXISTS bans(ID bigint PRIMARY KEY auto_increment, player_uuid varchar(50), Reason varchar(50), who varchar(50));");
|
|
||||||
if(Settings.isDebug()) log(Level.INFO, "MySQL Bans erstellt");
|
|
||||||
|
|
||||||
tempSQL.getConnection().createStatement().execute("CREATE TABLE IF NOT EXISTS bugs(ID bigint PRIMARY KEY auto_increment, player_uuid varchar(50), time timestamp, msg varchar(250));");
|
|
||||||
if(Settings.isDebug()) log(Level.INFO, "MySQL Bugs erstellt");
|
|
||||||
|
|
||||||
tempSQL.getConnection().createStatement().execute("CREATE TABLE IF NOT EXISTS Friends(ID bigint PRIMARY KEY auto_increment, player_uuid VARCHAR(64), Friends VARCHAR(2500));");
|
|
||||||
if(Settings.isDebug()) log(Level.INFO, "MySQL Friends erstellt");
|
|
||||||
|
|
||||||
tempSQL.getConnection().createStatement().execute("CREATE TABLE IF NOT EXISTS Messages(ID bigint PRIMARY KEY auto_increment,Ident varchar(25), Message varchar(250));");
|
|
||||||
if(Settings.isDebug()) log(Level.INFO, "MySQL Messages erstellt");
|
|
||||||
|
|
||||||
tempSQL.closeConnection();
|
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
Bukkit.getMessenger().registerOutgoingPluginChannel(this, "BungeeCord");
|
Bukkit.getMessenger().registerOutgoingPluginChannel(this, "BungeeCord");
|
||||||
try {
|
|
||||||
Messages.writeDefault();
|
this.ts = new TeamSpeak();
|
||||||
Messages.readStrings();
|
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
log(Level.INFO, "Plugin ver. " + getDescription().getVersion() + " gestartet");
|
log(Level.INFO, "Plugin ver. " + getDescription().getVersion() + " gestartet");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDisable() {
|
public void onDisable() {
|
||||||
Core.log(Level.INFO, "Plugin beendet");
|
log(Level.INFO, "Plugin beendet");
|
||||||
|
getTs().disconnect();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,38 +1,18 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
|
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import net.minecraft.server.v1_8_R3.IChatBaseComponent;
|
import net.minecraft.server.v1_8_R3.IChatBaseComponent;
|
||||||
import net.minecraft.server.v1_8_R3.IChatBaseComponent.ChatSerializer;
|
import net.minecraft.server.v1_8_R3.IChatBaseComponent.ChatSerializer;
|
||||||
import net.minecraft.server.v1_8_R3.PacketPlayOutChat;
|
import net.minecraft.server.v1_8_R3.PacketPlayOutChat;
|
||||||
|
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
public class Actionbar {
|
public class Actionbar {
|
||||||
|
|
||||||
|
public static void send(Player player, String message){
|
||||||
public static void send(Player p, String text) {
|
CraftPlayer p = (CraftPlayer) player;
|
||||||
|
IChatBaseComponent cbc = ChatSerializer.a("{\"text\": \"" + message + "\"}");
|
||||||
CraftPlayer cp = (CraftPlayer)p;
|
PacketPlayOutChat ppoc = new PacketPlayOutChat(cbc,(byte) 2);
|
||||||
|
((CraftPlayer) p).getHandle().playerConnection.sendPacket(ppoc);
|
||||||
IChatBaseComponent textC = ChatSerializer.a("{\"text\": \"" + text + "\"}");
|
|
||||||
|
|
||||||
PacketPlayOutChat actionbar = new PacketPlayOutChat(textC);
|
|
||||||
|
|
||||||
try {
|
|
||||||
Field field = actionbar.getClass().getDeclaredField("a");
|
|
||||||
field.setAccessible(true);
|
|
||||||
try {
|
|
||||||
field.set(actionbar, (byte)2);
|
|
||||||
} catch (IllegalArgumentException | IllegalAccessException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
} catch (NoSuchFieldException | SecurityException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
} finally {
|
|
||||||
cp.getHandle().playerConnection.sendPacket(actionbar);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,20 +1,21 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.Command;
|
import org.bukkit.command.Command;
|
||||||
import org.bukkit.command.CommandMap;
|
import org.bukkit.command.CommandMap;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.plugin.java.JavaPlugin;
|
import org.bukkit.plugin.java.JavaPlugin;
|
||||||
|
|
||||||
public abstract class AutoCommand<P extends JavaPlugin> extends Command {
|
import java.lang.reflect.Field;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author PostCrafter
|
* @author PostCrafter
|
||||||
* @see http://postcrafter.de/viewtopic.php?f=15&t=143
|
* @see href http://postcrafter.de/viewtopic.php?f=15&t=143
|
||||||
|
* @param <P> main class
|
||||||
*/
|
*/
|
||||||
|
public abstract class AutoCommand<P extends JavaPlugin> extends Command {
|
||||||
|
|
||||||
private static String VERSION;
|
private static String VERSION;
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,20 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.plugin.Plugin;
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author janhektor
|
||||||
|
*
|
||||||
|
*/
|
||||||
public class Blackscreen
|
public class Blackscreen
|
||||||
{
|
{
|
||||||
private static Object packetObject;
|
private static Object packetObject;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import eu.univento.core.Core;
|
||||||
import java.util.Map;
|
import eu.univento.core.api.utils.FDragon;
|
||||||
|
import eu.univento.core.api.utils.FWither;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.EventPriority;
|
import org.bukkit.event.EventPriority;
|
||||||
|
@ -12,9 +12,8 @@ import org.bukkit.event.player.PlayerQuitEvent;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.bukkit.scheduler.BukkitRunnable;
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.util.HashMap;
|
||||||
import eu.univento.core.api.utils.FDragon;
|
import java.util.Map;
|
||||||
import eu.univento.core.api.utils.FWither;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -30,15 +29,15 @@ public class BossBar implements Listener {
|
||||||
|
|
||||||
|
|
||||||
public static Plugin plugin;
|
public static Plugin plugin;
|
||||||
public static Map<Player, String> playerdragonbartask = new HashMap<Player, String>();
|
public static Map<Player, String> playerdragonbartask = new HashMap<>();
|
||||||
public static Map<Player, Float> healthdragonbartask = new HashMap<Player, Float>();
|
public static Map<Player, Float> healthdragonbartask = new HashMap<>();
|
||||||
public static Map<Player, Integer> cooldownsdragonbar= new HashMap<Player, Integer>();
|
public static Map<Player, Integer> cooldownsdragonbar= new HashMap<>();
|
||||||
public static Map<Player, Integer> starttimerdragonbar= new HashMap<Player, Integer>();
|
public static Map<Player, Integer> starttimerdragonbar= new HashMap<>();
|
||||||
|
|
||||||
public static Map<Player, String> playerwitherbartask = new HashMap<Player, String>();
|
public static Map<Player, String> playerwitherbartask = new HashMap<>();
|
||||||
public static Map<Player, Float> healthwitherbartask = new HashMap<Player, Float>();
|
public static Map<Player, Float> healthwitherbartask = new HashMap<>();
|
||||||
public static Map<Player, Integer> cooldownswitherbar= new HashMap<Player, Integer>();
|
public static Map<Player, Integer> cooldownswitherbar= new HashMap<>();
|
||||||
public static Map<Player, Integer> starttimerwitherbar= new HashMap<Player, Integer>();
|
public static Map<Player, Integer> starttimerwitherbar= new HashMap<>();
|
||||||
|
|
||||||
public void DragonBarTask() {
|
public void DragonBarTask() {
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.sql.SQLException;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.configuration.file.FileConfiguration;
|
import org.bukkit.configuration.file.FileConfiguration;
|
||||||
import org.bukkit.configuration.file.YamlConfiguration;
|
import org.bukkit.configuration.file.YamlConfiguration;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gets data from config file
|
* gets data from config file
|
||||||
* @author joethei
|
* @author joethei
|
||||||
|
@ -16,7 +16,9 @@ import org.bukkit.configuration.file.YamlConfiguration;
|
||||||
*/
|
*/
|
||||||
public class Config {
|
public class Config {
|
||||||
|
|
||||||
|
/**config file*/
|
||||||
private static File file = new File("plugins/Core", "config.yml");
|
private static File file = new File("plugins/Core", "config.yml");
|
||||||
|
/**load configuration */
|
||||||
private static FileConfiguration cfg = YamlConfiguration.loadConfiguration(file);
|
private static FileConfiguration cfg = YamlConfiguration.loadConfiguration(file);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.World;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.World;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
public class Hologram
|
public class Hologram
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,123 +0,0 @@
|
||||||
package eu.univento.core.api;
|
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
|
||||||
import java.sql.SQLException;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* messages from database
|
|
||||||
* @author joethei
|
|
||||||
* @version 1.0
|
|
||||||
*/
|
|
||||||
public class Messages {
|
|
||||||
|
|
||||||
public static String PREFIX;
|
|
||||||
public static String CONSOLE_PREFIX;
|
|
||||||
public static String UNKNOWN_ERROR;
|
|
||||||
public static String NOT_A_PLAYER;
|
|
||||||
public static String NO_PERMS;
|
|
||||||
public static String ERROR;
|
|
||||||
public static String NOT_ONLINE;
|
|
||||||
public static String KICK_RESTART;
|
|
||||||
public static String KICK_FULL;
|
|
||||||
public static String COMMAND_NOT_FOUND;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* write default data
|
|
||||||
* @throws ClassNotFoundException Class couldn't be found
|
|
||||||
* @throws SQLException SQL server not available or throwing error
|
|
||||||
*/
|
|
||||||
public static void writeDefault() throws ClassNotFoundException, SQLException {
|
|
||||||
//editable messages will be set here, but do not edit this messages.
|
|
||||||
MySQL sql = Core.returnSQL();
|
|
||||||
sql.openConnection();
|
|
||||||
if(!isInDatabase("Prefix")) writeData("INSERT INTO Messages(Ident, Message) values ('Prefix', '§aunivento §8»');");
|
|
||||||
if(!isInDatabase("ConsolePrefix")) writeData("INSERT INTO Messages(Ident, Message) values ('ConsolePrefix', '[univento Core]');");
|
|
||||||
if(!isInDatabase("UnknownError")) writeData("INSERT INTO Messages(Ident, Message) values ('UnknownError', '§cEs ist leider ein unbekannter Fehler aufgetreten');");
|
|
||||||
if(!isInDatabase("Commands.NoPlayer")) writeData("INSERT INTO Messages(Ident, Message) values ('Commands.NoPlayer', '§cDu bist leider kein Spieler');");
|
|
||||||
if(!isInDatabase("Commands.NoPerms")) writeData("INSERT INTO Messages(Ident, Message) values ('Commands.NoPerms', '§cDu hast keine Berechtigungen diesen Befehl auszuführen')");
|
|
||||||
if(!isInDatabase("Commands.Error")) writeData("INSERT INTO Messages(Ident, Message) values ('Commands.Error', '§cBeim ausführen dieses Befehls ist ein Fehler aufgetreten');");
|
|
||||||
if(!isInDatabase("Commands.NotOnline")) writeData("INSERT INTO Messages(Ident, Message) values ('Commands.NotOnline', '§cDer Spieler $player ist nicht online');");
|
|
||||||
if(!isInDatabase("Commands.Unknown")) writeData("INSERT INTO Messages(Ident, Message) values ('Commands.Unknown', '§6Dieser Befehl konnte leider nicht gefunden werden');");
|
|
||||||
if(!isInDatabase("Kick.Restart")) writeData("INSERT INTO Messages(Ident, Message) values ('Kick.Restart', '§cDer Server startet gerade neu');");
|
|
||||||
if(!isInDatabase("Kick.Full")) writeData("INSERT INTO Messages(Ident, Message) values ('Kick.Full', '§cDer Server ist leider schon voll')");
|
|
||||||
|
|
||||||
sql.closeConnection();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void writeData(String data) {
|
|
||||||
MySQL sql = Core.returnSQL();
|
|
||||||
try {
|
|
||||||
sql.openConnection();
|
|
||||||
sql.getConnection().createStatement().execute(data);
|
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* checks if message is in database
|
|
||||||
* @param ident identifier of message
|
|
||||||
* @return true/false
|
|
||||||
*/
|
|
||||||
private static boolean isInDatabase(String ident) {
|
|
||||||
MySQL sql = Core.returnSQL();
|
|
||||||
try {
|
|
||||||
sql.openConnection();
|
|
||||||
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT * FROM Messages WHERE Ident='" + ident + "';");
|
|
||||||
if (!rs.next()) {
|
|
||||||
sql.closeConnection();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
sql.closeConnection();
|
|
||||||
return true;
|
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* reads all string to variables
|
|
||||||
* @throws ClassNotFoundException Class couldn't be found
|
|
||||||
* @throws SQLException SQL server not available or throwing error
|
|
||||||
*/
|
|
||||||
public static void readStrings() throws ClassNotFoundException, SQLException {
|
|
||||||
PREFIX = readString("Prefix") + " ";
|
|
||||||
CONSOLE_PREFIX = readString("ConsolePrefix") + " ";
|
|
||||||
UNKNOWN_ERROR = PREFIX + readString("UnknownError");
|
|
||||||
NOT_A_PLAYER = readString("Commands.NoPlayer") ;
|
|
||||||
NO_PERMS = PREFIX + readString("Commands.NoPerms");
|
|
||||||
ERROR = PREFIX + readString("Commands.Error");
|
|
||||||
NOT_ONLINE = PREFIX + readString("Commands.NotOnline");
|
|
||||||
KICK_RESTART = readString("Kick.Restart");
|
|
||||||
KICK_FULL = readString("Kick.Full");
|
|
||||||
COMMAND_NOT_FOUND = PREFIX + readString("Commands.Unkown");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* reads single message from database
|
|
||||||
* @param path path
|
|
||||||
* @return String
|
|
||||||
*/
|
|
||||||
public static String readString(String path) {
|
|
||||||
MySQL sql = Core.returnSQL();
|
|
||||||
try {
|
|
||||||
sql.openConnection();
|
|
||||||
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT * FROM Messages WHERE Ident='" + path + "';");
|
|
||||||
if (!rs.next()) {
|
|
||||||
sql.closeConnection();
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
String message = rs.getString("Message");
|
|
||||||
sql.closeConnection();
|
|
||||||
return message;
|
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,364 +0,0 @@
|
||||||
package eu.univento.core.api;
|
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Random;
|
|
||||||
import java.util.UUID;
|
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.craftbukkit.*;
|
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.inventory.CraftItemStack;
|
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.util.CraftChatMessage;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
|
||||||
|
|
||||||
import net.minecraft.server.v1_8_R3.*;
|
|
||||||
import net.minecraft.server.v1_8_R3.PacketPlayOutPlayerInfo.EnumPlayerInfoAction;
|
|
||||||
import net.minecraft.server.v1_8_R3.PacketPlayOutPlayerInfo.PlayerInfoData;
|
|
||||||
import net.minecraft.server.v1_8_R3.WorldSettings.EnumGamemode;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Summerfeeling
|
|
||||||
*/
|
|
||||||
|
|
||||||
public class NPC {
|
|
||||||
|
|
||||||
private DataWatcher watcher;
|
|
||||||
private Material chestplate;
|
|
||||||
private Material leggings;
|
|
||||||
private Location location;
|
|
||||||
private Material inHand;
|
|
||||||
private Material helmet;
|
|
||||||
private Material boots;
|
|
||||||
private String tablist;
|
|
||||||
private int entityID;
|
|
||||||
private String name;
|
|
||||||
private UUID uuid;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* NPC, a class for spawning fake players in the 1.8 Copyright (C)
|
|
||||||
* [Summerfeeling] Dieses Programm ist freie Software. Sie können es unter
|
|
||||||
* den Bedingungen der GNU General Public License, wie von der Free Software
|
|
||||||
* Foundation veröffentlicht, weitergeben und/oder modifizieren, entweder
|
|
||||||
* gemäß Version 3 der Lizenz oder (nach Ihrer Option) jeder späteren
|
|
||||||
* Version. Die Veröffentlichung dieses Programms erfolgt in der Hoffnung,
|
|
||||||
* daß es Ihnen von Nutzen sein wird, aber OHNE IRGENDEINE GARANTIE, sogar
|
|
||||||
* ohne die implizite Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR
|
|
||||||
* EINEN BESTIMMTEN ZWECK. Details finden Sie in der GNU General Public
|
|
||||||
* License. Sie sollten ein Exemplar der GNU General Public License zusammen
|
|
||||||
* mit diesem Programm erhalten haben. Falls nicht, siehe
|
|
||||||
* <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
public NPC(String name, String tablist, UUID uuid, int entityID, Location location, Material inHand) {
|
|
||||||
this.location = location;
|
|
||||||
this.tablist = tablist;
|
|
||||||
this.name = name;
|
|
||||||
this.uuid = uuid;
|
|
||||||
this.entityID = entityID;
|
|
||||||
this.inHand = inHand;
|
|
||||||
this.watcher = new DataWatcher(null);
|
|
||||||
watcher.a(6, (float) 20);
|
|
||||||
}
|
|
||||||
|
|
||||||
public NPC(String name, Location location) {
|
|
||||||
this(name, name, UUID.randomUUID(), new Random().nextInt(10000), location, Material.AIR);
|
|
||||||
}
|
|
||||||
|
|
||||||
public NPC(String name, Location location, Material inHand) {
|
|
||||||
this(name, name, UUID.randomUUID(), new Random().nextInt(10000), location, inHand);
|
|
||||||
}
|
|
||||||
|
|
||||||
public NPC(String name, String tablist, Location location) {
|
|
||||||
this(name, tablist, UUID.randomUUID(), new Random().nextInt(10000), location, Material.AIR);
|
|
||||||
}
|
|
||||||
|
|
||||||
public NPC(String name, String tablist, Location location, Material inHand) {
|
|
||||||
this(name, tablist, UUID.randomUUID(), new Random().nextInt(10000), location, inHand);
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void spawn() {
|
|
||||||
try {
|
|
||||||
PacketPlayOutNamedEntitySpawn packet = new PacketPlayOutNamedEntitySpawn();
|
|
||||||
this.addToTablist();
|
|
||||||
|
|
||||||
this.setValue(packet, "a", this.entityID);
|
|
||||||
this.setValue(packet, "b", this.uuid);
|
|
||||||
this.setValue(packet, "c", this.toFixedPoint(this.location.getX()));
|
|
||||||
this.setValue(packet, "d", this.toFixedPoint(this.location.getY()));
|
|
||||||
this.setValue(packet, "e", this.toFixedPoint(this.location.getZ()));
|
|
||||||
this.setValue(packet, "f", this.toPackedByte(this.location.getYaw()));
|
|
||||||
this.setValue(packet, "g", this.toPackedByte(this.location.getPitch()));
|
|
||||||
this.setValue(packet, "h", this.inHand == null ? 0 : this.inHand.getId());
|
|
||||||
this.setValue(packet, "i", this.watcher);
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void despawn() {
|
|
||||||
PacketPlayOutEntityDestroy packet = new PacketPlayOutEntityDestroy(new int[] { this.entityID });
|
|
||||||
this.removeFromTablist();
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void changePlayerlistName(String name) {
|
|
||||||
try {
|
|
||||||
PacketPlayOutPlayerInfo packet = new PacketPlayOutPlayerInfo();
|
|
||||||
PlayerInfoData data = new PlayerInfoData(packet, new GameProfile(this.uuid, this.name), 0,
|
|
||||||
EnumGamemode.NOT_SET, CraftChatMessage.fromString(name)[0]);
|
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
List<PlayerInfoData> players = (List<PlayerInfoData>) this.getValue(packet, "b");
|
|
||||||
players.add(data);
|
|
||||||
|
|
||||||
this.setValue(packet, "a", EnumPlayerInfoAction.UPDATE_DISPLAY_NAME);
|
|
||||||
this.setValue(packet, "b", players);
|
|
||||||
this.tablist = name;
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
private void addToTablist() {
|
|
||||||
try {
|
|
||||||
PacketPlayOutPlayerInfo packet = new PacketPlayOutPlayerInfo();
|
|
||||||
PlayerInfoData data = new PlayerInfoData(packet, new GameProfile(this.uuid, this.name), 0,
|
|
||||||
EnumGamemode.NOT_SET, CraftChatMessage.fromString(this.tablist)[0]);
|
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
List<PlayerInfoData> players = (List<PlayerInfoData>) this.getValue(packet, "b");
|
|
||||||
players.add(data);
|
|
||||||
|
|
||||||
this.setValue(packet, "a", EnumPlayerInfoAction.ADD_PLAYER);
|
|
||||||
this.setValue(packet, "b", players);
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
private void removeFromTablist() {
|
|
||||||
try {
|
|
||||||
PacketPlayOutPlayerInfo packet = new PacketPlayOutPlayerInfo();
|
|
||||||
PlayerInfoData data = new PlayerInfoData(packet, new GameProfile(this.uuid, this.name), 0,
|
|
||||||
EnumGamemode.NOT_SET, CraftChatMessage.fromString(this.tablist)[0]);
|
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
List<PlayerInfoData> players = (List<PlayerInfoData>) this.getValue(packet, "b");
|
|
||||||
players.add(data);
|
|
||||||
|
|
||||||
this.setValue(packet, "a", EnumPlayerInfoAction.REMOVE_PLAYER);
|
|
||||||
this.setValue(packet, "b", players);
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void teleport(Location location) {
|
|
||||||
try {
|
|
||||||
PacketPlayOutEntityTeleport packet = new PacketPlayOutEntityTeleport();
|
|
||||||
|
|
||||||
this.setValue(packet, "a", this.entityID);
|
|
||||||
this.setValue(packet, "b", this.toFixedPoint(location.getX()));
|
|
||||||
this.setValue(packet, "c", this.toFixedPoint(location.getY()));
|
|
||||||
this.setValue(packet, "d", this.toFixedPoint(location.getZ()));
|
|
||||||
this.setValue(packet, "e", this.toPackedByte(location.getYaw()));
|
|
||||||
this.setValue(packet, "f", this.toPackedByte(location.getPitch()));
|
|
||||||
this.setValue(packet, "g", this.location.getBlock().getType() == Material.AIR ? false : true);
|
|
||||||
this.location = location;
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void setItemInHand(Material material) {
|
|
||||||
try {
|
|
||||||
PacketPlayOutEntityEquipment packet = new PacketPlayOutEntityEquipment();
|
|
||||||
|
|
||||||
this.setValue(packet, "a", this.entityID);
|
|
||||||
this.setValue(packet, "b", 0);
|
|
||||||
this.setValue(packet, "c",
|
|
||||||
material == Material.AIR || material == null ? CraftItemStack.asNMSCopy(new ItemStack(Material.AIR))
|
|
||||||
: CraftItemStack.asNMSCopy(new ItemStack(material)));
|
|
||||||
this.inHand = material;
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Material getItemInHand() {
|
|
||||||
return this.inHand;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void setHelmet(Material material) {
|
|
||||||
try {
|
|
||||||
PacketPlayOutEntityEquipment packet = new PacketPlayOutEntityEquipment();
|
|
||||||
|
|
||||||
this.setValue(packet, "a", this.entityID);
|
|
||||||
this.setValue(packet, "b", 4);
|
|
||||||
this.setValue(packet, "c",
|
|
||||||
material == Material.AIR || material == null ? CraftItemStack.asNMSCopy(new ItemStack(Material.AIR))
|
|
||||||
: CraftItemStack.asNMSCopy(new ItemStack(material)));
|
|
||||||
this.helmet = material;
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Material getHelmet() {
|
|
||||||
return this.helmet;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void setChestplate(Material material) {
|
|
||||||
try {
|
|
||||||
PacketPlayOutEntityEquipment packet = new PacketPlayOutEntityEquipment();
|
|
||||||
|
|
||||||
this.setValue(packet, "a", this.entityID);
|
|
||||||
this.setValue(packet, "b", 3);
|
|
||||||
this.setValue(packet, "c",
|
|
||||||
material == Material.AIR || material == null ? CraftItemStack.asNMSCopy(new ItemStack(Material.AIR))
|
|
||||||
: CraftItemStack.asNMSCopy(new ItemStack(material)));
|
|
||||||
this.chestplate = material;
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Material getChestplate() {
|
|
||||||
return this.chestplate;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void setLeggings(Material material) {
|
|
||||||
try {
|
|
||||||
PacketPlayOutEntityEquipment packet = new PacketPlayOutEntityEquipment();
|
|
||||||
|
|
||||||
this.setValue(packet, "a", this.entityID);
|
|
||||||
this.setValue(packet, "b", 2);
|
|
||||||
this.setValue(packet, "c",
|
|
||||||
material == Material.AIR || material == null ? CraftItemStack.asNMSCopy(new ItemStack(Material.AIR))
|
|
||||||
: CraftItemStack.asNMSCopy(new ItemStack(material)));
|
|
||||||
this.leggings = material;
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Material getLeggings() {
|
|
||||||
return this.leggings;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
public void setBoots(Material material) {
|
|
||||||
try {
|
|
||||||
PacketPlayOutEntityEquipment packet = new PacketPlayOutEntityEquipment();
|
|
||||||
|
|
||||||
this.setValue(packet, "a", this.entityID);
|
|
||||||
this.setValue(packet, "b", 1);
|
|
||||||
this.setValue(packet, "c",
|
|
||||||
material == Material.AIR || material == null ? CraftItemStack.asNMSCopy(new ItemStack(Material.AIR))
|
|
||||||
: CraftItemStack.asNMSCopy(new ItemStack(material)));
|
|
||||||
this.boots = material;
|
|
||||||
|
|
||||||
for (Player online : Bukkit.getOnlinePlayers()) {
|
|
||||||
((CraftPlayer) online).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Material getBoots() {
|
|
||||||
return this.boots;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getEntityID() {
|
|
||||||
return this.entityID;
|
|
||||||
}
|
|
||||||
|
|
||||||
public UUID getUUID() {
|
|
||||||
return this.uuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Location getLocation() {
|
|
||||||
return this.location;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getName() {
|
|
||||||
return this.name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getPlayerlistName() {
|
|
||||||
return this.tablist;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setValue(Object instance, String field, Object value) throws Exception {
|
|
||||||
Field f = instance.getClass().getDeclaredField(field);
|
|
||||||
f.setAccessible(true);
|
|
||||||
f.set(instance, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Object getValue(Object instance, String field) throws Exception {
|
|
||||||
Field f = instance.getClass().getDeclaredField(field);
|
|
||||||
f.setAccessible(true);
|
|
||||||
return f.get(instance);
|
|
||||||
}
|
|
||||||
|
|
||||||
private int toFixedPoint(double d) {
|
|
||||||
return (int) (d * 32.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
private byte toPackedByte(float f) {
|
|
||||||
return (byte) ((int) (f * 256.0F / 360.0F));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,98 +0,0 @@
|
||||||
package eu.univento.core.api;
|
|
||||||
|
|
||||||
import java.io.DataOutputStream;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.io.InputStreamReader;
|
|
||||||
import java.io.OutputStream;
|
|
||||||
import java.net.InetSocketAddress;
|
|
||||||
import java.net.Socket;
|
|
||||||
import java.nio.charset.Charset;
|
|
||||||
|
|
||||||
public class ServerPinger
|
|
||||||
{
|
|
||||||
private String host;
|
|
||||||
private int port;
|
|
||||||
|
|
||||||
public ServerPinger(String host, int port)
|
|
||||||
{
|
|
||||||
this.host = host;
|
|
||||||
this.port = port;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ServerPinger(String host) {
|
|
||||||
this.host = host;
|
|
||||||
this.port = 25565;
|
|
||||||
}
|
|
||||||
|
|
||||||
public ServerPinger() {
|
|
||||||
this.host = "127.0.0.1";
|
|
||||||
this.port = 25565;
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("resource")
|
|
||||||
public String parseData(Connection connection)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
Socket socket = new Socket();
|
|
||||||
|
|
||||||
socket.setSoTimeout(2500);
|
|
||||||
socket.connect(new InetSocketAddress(this.host, this.port));
|
|
||||||
|
|
||||||
OutputStream os = socket.getOutputStream();
|
|
||||||
DataOutputStream dos = new DataOutputStream(os);
|
|
||||||
|
|
||||||
InputStream is = socket.getInputStream();
|
|
||||||
InputStreamReader isr = new InputStreamReader(is, Charset.forName("UTF-16BE"));
|
|
||||||
|
|
||||||
dos.write(new byte[] { -2, 1 });
|
|
||||||
|
|
||||||
int packetID = is.read();
|
|
||||||
|
|
||||||
if (packetID == -1) {
|
|
||||||
System.out.println("Invalid Packet ID! (End Of Stream)");
|
|
||||||
}
|
|
||||||
if (packetID != 255) {
|
|
||||||
System.out.println("Invalid Packet Id! " + packetID);
|
|
||||||
}
|
|
||||||
|
|
||||||
int length = isr.read();
|
|
||||||
|
|
||||||
if (length == -1) {
|
|
||||||
System.out.println("End Of Stream");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (length == 0) {
|
|
||||||
System.out.println("Invalid length");
|
|
||||||
}
|
|
||||||
|
|
||||||
char[] chars = new char[length];
|
|
||||||
|
|
||||||
if (isr.read(chars, 0, length) != length) {
|
|
||||||
System.out.println("End Of Stream");
|
|
||||||
}
|
|
||||||
|
|
||||||
String string = new String(chars);
|
|
||||||
String[] data = string.split("");
|
|
||||||
|
|
||||||
if (connection == Connection.ONLINE_PLAYERS)
|
|
||||||
return data[4];
|
|
||||||
if (connection == Connection.MOTD)
|
|
||||||
return data[3];
|
|
||||||
if (connection == Connection.MAX_PLAYERS) {
|
|
||||||
return data[5];
|
|
||||||
}
|
|
||||||
System.out.println("Connection value not handled!");
|
|
||||||
}
|
|
||||||
catch (Exception localException)
|
|
||||||
{
|
|
||||||
localException.printStackTrace();
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static enum Connection {
|
|
||||||
ONLINE_PLAYERS, MAX_PLAYERS, MOTD;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,109 +0,0 @@
|
||||||
package eu.univento.core.api;
|
|
||||||
|
|
||||||
import com.google.common.collect.Iterables;
|
|
||||||
import com.google.common.io.ByteArrayDataOutput;
|
|
||||||
import com.google.common.io.ByteStreams;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
|
||||||
|
|
||||||
import java.io.ByteArrayOutputStream;
|
|
||||||
import java.io.DataOutputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* sends player to other bungeecord servers
|
|
||||||
* @author joethei
|
|
||||||
* @version 1.0
|
|
||||||
*/
|
|
||||||
public class Servers {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* sends player to server
|
|
||||||
* @param p player
|
|
||||||
* @param server name of server
|
|
||||||
*/
|
|
||||||
public static void connectServer(Player p, String server) {
|
|
||||||
if ((p instanceof Player)) {
|
|
||||||
ByteArrayOutputStream b = new ByteArrayOutputStream();
|
|
||||||
DataOutputStream out = new DataOutputStream(b);
|
|
||||||
try {
|
|
||||||
out.writeUTF("Connect");
|
|
||||||
out.writeUTF(server);
|
|
||||||
} catch (IOException el) {
|
|
||||||
el.printStackTrace();
|
|
||||||
}
|
|
||||||
p.sendPluginMessage(Core.getInstance(), "BungeeCord", b.toByteArray());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* connects all player to server
|
|
||||||
* @param server name of server
|
|
||||||
*/
|
|
||||||
public static void connectAllToServer(String server) {
|
|
||||||
for (Player all : Bukkit.getOnlinePlayers())
|
|
||||||
connectServer(all, server);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* gets player count of server
|
|
||||||
* @param server name of server
|
|
||||||
* @return player count
|
|
||||||
*/
|
|
||||||
public static int getOnlinePlayers(String server) {
|
|
||||||
int online = 0;
|
|
||||||
|
|
||||||
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
|
||||||
|
|
||||||
out.writeUTF("PlayerCount");
|
|
||||||
out.writeUTF(server);
|
|
||||||
|
|
||||||
Player player = (Player) Iterables.getFirst(Bukkit.getOnlinePlayers(), null);
|
|
||||||
player.sendPluginMessage(Core.getInstance(), "BungeeCord", out.toByteArray());
|
|
||||||
|
|
||||||
return online;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* gets ip of server from bungeecord
|
|
||||||
* @param server server name
|
|
||||||
* @return server ip
|
|
||||||
*/
|
|
||||||
public static String getServerIP(String server) {
|
|
||||||
String ip = null;
|
|
||||||
|
|
||||||
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
|
||||||
|
|
||||||
out.writeUTF("ServerInfo");
|
|
||||||
out.writeUTF(server);
|
|
||||||
|
|
||||||
Player player = (Player) Iterables.getFirst(Bukkit.getOnlinePlayers(), null);
|
|
||||||
player.sendPluginMessage(Core.getInstance(), "BungeeCord", out.toByteArray());
|
|
||||||
|
|
||||||
return ip;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* gets port of server from bungeecord
|
|
||||||
* @param server server name
|
|
||||||
* @return server port
|
|
||||||
*/
|
|
||||||
public static int getServerPort(String server) {
|
|
||||||
int port = 0;
|
|
||||||
|
|
||||||
ByteArrayDataOutput out = ByteStreams.newDataOutput();
|
|
||||||
|
|
||||||
out.writeUTF("ServerInfo");
|
|
||||||
out.writeUTF(server);
|
|
||||||
|
|
||||||
Player player = (Player) Iterables.getFirst(Bukkit.getOnlinePlayers(), null);
|
|
||||||
player.sendPluginMessage(Core.getInstance(), "BungeeCord", out.toByteArray());
|
|
||||||
|
|
||||||
return port;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,67 +0,0 @@
|
||||||
package eu.univento.core.api;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* server-wide settings
|
|
||||||
* @author joethei
|
|
||||||
* @version 0.1
|
|
||||||
*/
|
|
||||||
|
|
||||||
public class Settings {
|
|
||||||
|
|
||||||
private static boolean build;
|
|
||||||
private static boolean lobby;
|
|
||||||
private static boolean debug;
|
|
||||||
private static boolean mute;
|
|
||||||
/**
|
|
||||||
* @return is build
|
|
||||||
*/
|
|
||||||
public static boolean isBuild() {
|
|
||||||
return build;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @param build the build to set
|
|
||||||
*/
|
|
||||||
public static void setBuild(boolean build) {
|
|
||||||
Settings.build = build;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @return is lobby
|
|
||||||
*/
|
|
||||||
public static boolean isLobby() {
|
|
||||||
return lobby;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @param lobby the lobby to set
|
|
||||||
*/
|
|
||||||
public static void setLobby(boolean lobby) {
|
|
||||||
Settings.lobby = lobby;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @return is debug
|
|
||||||
*/
|
|
||||||
public static boolean isDebug() {
|
|
||||||
return debug;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* @param debug the debug to set
|
|
||||||
*/
|
|
||||||
public static void setDebug(boolean debug) {
|
|
||||||
Settings.debug = debug;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return is mute
|
|
||||||
*/
|
|
||||||
public static boolean isMute() {
|
|
||||||
return mute;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param mute the mute to set
|
|
||||||
*/
|
|
||||||
public static void setMute(boolean mute) {
|
|
||||||
Settings.mute = mute;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -3,6 +3,13 @@ package eu.univento.core.api;
|
||||||
import io.netty.channel.Channel;
|
import io.netty.channel.Channel;
|
||||||
import io.netty.channel.ChannelHandlerContext;
|
import io.netty.channel.ChannelHandlerContext;
|
||||||
import io.netty.handler.codec.MessageToMessageDecoder;
|
import io.netty.handler.codec.MessageToMessageDecoder;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.player.PlayerJoinEvent;
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
import java.lang.reflect.Array;
|
import java.lang.reflect.Array;
|
||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
|
@ -12,12 +19,6 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
|
||||||
import org.bukkit.plugin.Plugin;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,104 +0,0 @@
|
||||||
package eu.univento.core.api;
|
|
||||||
|
|
||||||
import com.google.common.base.Preconditions;
|
|
||||||
import com.google.common.base.Splitter;
|
|
||||||
import com.google.common.collect.Lists;
|
|
||||||
import com.google.common.collect.Maps;
|
|
||||||
|
|
||||||
import java.util.AbstractMap;
|
|
||||||
import java.util.Iterator;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.OfflinePlayer;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.scoreboard.DisplaySlot;
|
|
||||||
import org.bukkit.scoreboard.Objective;
|
|
||||||
import org.bukkit.scoreboard.Scoreboard;
|
|
||||||
import org.bukkit.scoreboard.Team;
|
|
||||||
|
|
||||||
public class SimpleScoreboard
|
|
||||||
{
|
|
||||||
private Scoreboard scoreboard;
|
|
||||||
private String title;
|
|
||||||
private Map<String, Integer> scores;
|
|
||||||
private List<Team> teams;
|
|
||||||
|
|
||||||
public SimpleScoreboard(String title)
|
|
||||||
{
|
|
||||||
this.scoreboard = Bukkit.getScoreboardManager().getNewScoreboard();
|
|
||||||
this.title = title;
|
|
||||||
this.scores = Maps.newLinkedHashMap();
|
|
||||||
this.teams = Lists.newArrayList();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void add(String text) {
|
|
||||||
add(text, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void add(String text, Integer score) {
|
|
||||||
Preconditions.checkArgument(text.length() < 48, "text cannot be over 48 characters in length");
|
|
||||||
text = fixDuplicates(text);
|
|
||||||
this.scores.put(text, score);
|
|
||||||
}
|
|
||||||
|
|
||||||
private String fixDuplicates(String text) {
|
|
||||||
while (this.scores.containsKey(text))
|
|
||||||
text = text + "§r";
|
|
||||||
if (text.length() > 48)
|
|
||||||
text = text.substring(0, 47);
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
private Map.Entry<Team, String> createTeam(String text)
|
|
||||||
{
|
|
||||||
String result = "";
|
|
||||||
if (text.length() <= 16)
|
|
||||||
return new AbstractMap.SimpleEntry<Team, String>(null, text);
|
|
||||||
Team team = this.scoreboard.registerNewTeam("text-" + this.scoreboard.getTeams().size());
|
|
||||||
Iterator<String> iterator = Splitter.fixedLength(16).split(text).iterator();
|
|
||||||
team.setPrefix((String)iterator.next());
|
|
||||||
result = (String)iterator.next();
|
|
||||||
if (text.length() > 32)
|
|
||||||
team.setSuffix((String)iterator.next());
|
|
||||||
this.teams.add(team);
|
|
||||||
return new AbstractMap.SimpleEntry<Team, String>(team, result);
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings({ "deprecation", "rawtypes" })
|
|
||||||
public void build()
|
|
||||||
{
|
|
||||||
Objective obj = this.scoreboard.registerNewObjective(this.title.length() > 16 ? this.title.substring(0, 15) : this.title, "dummy");
|
|
||||||
obj.setDisplayName(this.title);
|
|
||||||
obj.setDisplaySlot(DisplaySlot.SIDEBAR);
|
|
||||||
|
|
||||||
int index = this.scores.size();
|
|
||||||
|
|
||||||
for (Map.Entry text : this.scores.entrySet()) {
|
|
||||||
Map.Entry team = createTeam((String)text.getKey());
|
|
||||||
Integer score = Integer.valueOf(text.getValue() != null ? ((Integer)text.getValue()).intValue() : index);
|
|
||||||
OfflinePlayer player = Bukkit.getOfflinePlayer((String)team.getValue());
|
|
||||||
if (team.getKey() != null)
|
|
||||||
((Team)team.getKey()).addPlayer(player);
|
|
||||||
obj.getScore(player.getName()).setScore(score.intValue());
|
|
||||||
index--;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void reset() {
|
|
||||||
this.title = null;
|
|
||||||
this.scores.clear();
|
|
||||||
for (Team t : this.teams)
|
|
||||||
t.unregister();
|
|
||||||
this.teams.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
public Scoreboard getScoreboard() {
|
|
||||||
return this.scoreboard;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void send(Player[] players) {
|
|
||||||
for (Player p : players)
|
|
||||||
p.setScoreboard(this.scoreboard);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,5 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import net.minecraft.server.v1_8_R3.IChatBaseComponent;
|
import net.minecraft.server.v1_8_R3.IChatBaseComponent;
|
||||||
import net.minecraft.server.v1_8_R3.PacketPlayOutPlayerListHeaderFooter;
|
import net.minecraft.server.v1_8_R3.PacketPlayOutPlayerListHeaderFooter;
|
||||||
import net.minecraft.server.v1_8_R3.PacketPlayOutTitle;
|
import net.minecraft.server.v1_8_R3.PacketPlayOutTitle;
|
||||||
|
@ -9,22 +8,25 @@ import org.bukkit.ChatColor;
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
public class Title
|
import java.lang.reflect.Field;
|
||||||
{
|
|
||||||
@Deprecated
|
|
||||||
public static void sendTitle(Player player, Integer fadeIn, Integer stay, Integer fadeOut, String message)
|
|
||||||
{
|
|
||||||
sendTitle(player, fadeIn, stay, fadeOut, message, null);
|
|
||||||
}
|
|
||||||
@Deprecated
|
|
||||||
public static void sendSubtitle(Player player, Integer fadeIn, Integer stay, Integer fadeOut, String message) {
|
|
||||||
sendTitle(player, fadeIn, stay, fadeOut, null, message);
|
|
||||||
}
|
|
||||||
@Deprecated
|
|
||||||
public static void sendFullTitle(Player player, Integer fadeIn, Integer stay, Integer fadeOut, String title, String subtitle) {
|
|
||||||
sendTitle(player, fadeIn, stay, fadeOut, title, subtitle);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
//TODO: find real author, its not me
|
||||||
|
/**
|
||||||
|
* sends title to player
|
||||||
|
* @author joethei
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
|
public class Title {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* send title to player
|
||||||
|
* @param player Player
|
||||||
|
* @param fadeIn Integer
|
||||||
|
* @param stay Integer
|
||||||
|
* @param fadeOut Integer
|
||||||
|
* @param title String
|
||||||
|
* @param subtitle String
|
||||||
|
*/
|
||||||
public static void sendTitle(Player player, Integer fadeIn, Integer stay, Integer fadeOut, String title, String subtitle) {
|
public static void sendTitle(Player player, Integer fadeIn, Integer stay, Integer fadeOut, String title, String subtitle) {
|
||||||
PlayerConnection connection = ((CraftPlayer) player).getHandle().playerConnection;
|
PlayerConnection connection = ((CraftPlayer) player).getHandle().playerConnection;
|
||||||
|
|
||||||
|
@ -48,11 +50,19 @@ public class Title
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends tab title to player
|
||||||
|
* @param player Player
|
||||||
|
* @param header String
|
||||||
|
* @param footer String
|
||||||
|
*/
|
||||||
public static void sendTabTitle(Player player, String header, String footer) {
|
public static void sendTabTitle(Player player, String header, String footer) {
|
||||||
if (header == null) header = "";
|
if (header == null)
|
||||||
|
header = "";
|
||||||
header = ChatColor.translateAlternateColorCodes('&', header);
|
header = ChatColor.translateAlternateColorCodes('&', header);
|
||||||
|
|
||||||
if (footer == null) footer = "";
|
if (footer == null)
|
||||||
|
footer = "";
|
||||||
footer = ChatColor.translateAlternateColorCodes('&', footer);
|
footer = ChatColor.translateAlternateColorCodes('&', footer);
|
||||||
|
|
||||||
header = header.replaceAll("%player%", player.getDisplayName());
|
header = header.replaceAll("%player%", player.getDisplayName());
|
||||||
|
@ -62,8 +72,7 @@ public class Title
|
||||||
IChatBaseComponent tabTitle = IChatBaseComponent.ChatSerializer.a("{\"text\": \"" + header + "\"}");
|
IChatBaseComponent tabTitle = IChatBaseComponent.ChatSerializer.a("{\"text\": \"" + header + "\"}");
|
||||||
IChatBaseComponent tabFoot = IChatBaseComponent.ChatSerializer.a("{\"text\": \"" + footer + "\"}");
|
IChatBaseComponent tabFoot = IChatBaseComponent.ChatSerializer.a("{\"text\": \"" + footer + "\"}");
|
||||||
PacketPlayOutPlayerListHeaderFooter headerPacket = new PacketPlayOutPlayerListHeaderFooter(tabTitle);
|
PacketPlayOutPlayerListHeaderFooter headerPacket = new PacketPlayOutPlayerListHeaderFooter(tabTitle);
|
||||||
try
|
try {
|
||||||
{
|
|
||||||
Field field = headerPacket.getClass().getDeclaredField("b");
|
Field field = headerPacket.getClass().getDeclaredField("b");
|
||||||
field.setAccessible(true);
|
field.setAccessible(true);
|
||||||
field.set(headerPacket, tabFoot);
|
field.set(headerPacket, tabFoot);
|
||||||
|
@ -74,8 +83,12 @@ public class Title
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean isInteger(String s)
|
/**
|
||||||
{
|
* checks if String is integer
|
||||||
|
* @param s String
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
boolean isInteger(String s) {
|
||||||
try {
|
try {
|
||||||
Integer.parseInt(s);
|
Integer.parseInt(s);
|
||||||
} catch (NumberFormatException e) {
|
} catch (NumberFormatException e) {
|
||||||
|
|
|
@ -1,26 +1,15 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import org.bukkit.*;
|
||||||
|
import org.bukkit.entity.Entity;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.bukkit.potion.PotionEffect;
|
||||||
|
import org.bukkit.util.Vector;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Random;
|
|
||||||
import net.minecraft.server.v1_8_R3.EnumParticle;
|
|
||||||
import net.minecraft.server.v1_8_R3.PacketPlayOutWorldParticles;
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.Color;
|
|
||||||
import org.bukkit.Effect;
|
|
||||||
import org.bukkit.FireworkEffect;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.Material;
|
|
||||||
import org.bukkit.Sound;
|
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
|
||||||
import org.bukkit.entity.Entity;
|
|
||||||
import org.bukkit.entity.EntityType;
|
|
||||||
import org.bukkit.entity.Firework;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
import org.bukkit.inventory.meta.FireworkMeta;
|
|
||||||
import org.bukkit.potion.PotionEffect;
|
|
||||||
import org.bukkit.util.Vector;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* some utils you may need
|
* some utils you may need
|
||||||
|
@ -104,45 +93,6 @@ public class Utils {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* shoots random fireworks at defined location
|
|
||||||
* @param loc Location
|
|
||||||
*/
|
|
||||||
public static void randomFireworks(Location loc) {
|
|
||||||
Firework fw = (Firework) loc.getWorld().spawnEntity(loc, EntityType.FIREWORK);
|
|
||||||
FireworkMeta fwm = fw.getFireworkMeta();
|
|
||||||
Random r = new Random();
|
|
||||||
int rt = r.nextInt(5) + 1;
|
|
||||||
FireworkEffect.Type type = FireworkEffect.Type.BALL;
|
|
||||||
if (rt == 1)
|
|
||||||
type = FireworkEffect.Type.BALL;
|
|
||||||
if (rt == 2)
|
|
||||||
type = FireworkEffect.Type.BALL_LARGE;
|
|
||||||
if (rt == 3)
|
|
||||||
type = FireworkEffect.Type.BURST;
|
|
||||||
if (rt == 4)
|
|
||||||
type = FireworkEffect.Type.CREEPER;
|
|
||||||
if (rt == 5)
|
|
||||||
type = FireworkEffect.Type.STAR;
|
|
||||||
|
|
||||||
int red = r.nextInt(256);
|
|
||||||
int b = r.nextInt(256);
|
|
||||||
int g = r.nextInt(256);
|
|
||||||
|
|
||||||
Color c1 = Color.fromRGB(red, g, b);
|
|
||||||
|
|
||||||
red = r.nextInt(256);
|
|
||||||
b = r.nextInt(256);
|
|
||||||
g = r.nextInt(256);
|
|
||||||
Color c2 = Color.fromRGB(red, g, b);
|
|
||||||
|
|
||||||
FireworkEffect effect = FireworkEffect.builder().flicker(r.nextBoolean()).withColor(c1).withFade(c2).with(type)
|
|
||||||
.trail(r.nextBoolean()).build();
|
|
||||||
fwm.addEffect(effect);
|
|
||||||
int rp = r.nextInt(2) + 1;
|
|
||||||
fwm.setPower(rp);
|
|
||||||
fw.setFireworkMeta(fwm);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* removes list of entity and counts them
|
* removes list of entity and counts them
|
||||||
|
@ -167,20 +117,6 @@ public class Utils {
|
||||||
player.removePotionEffect(effect.getType());
|
player.removePotionEffect(effect.getType());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* plays effect at defined location for all players
|
|
||||||
* @param loc Location
|
|
||||||
* @param ep EnumParticle
|
|
||||||
* @param f random placement of particles
|
|
||||||
* @param count count of particles
|
|
||||||
*/
|
|
||||||
public static void playEffect(Location loc, EnumParticle ep, float f, int count) {
|
|
||||||
PacketPlayOutWorldParticles packet = new PacketPlayOutWorldParticles(ep, true, (float) loc.getX(),
|
|
||||||
(float) loc.getY(), (float) loc.getZ(), f, f, f, 0.0F, count, new int[] { 0, 0 });
|
|
||||||
for (Player p : Bukkit.getOnlinePlayers())
|
|
||||||
((CraftPlayer) p).getHandle().playerConnection.sendPacket(packet);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* calculates vector from one location to another
|
* calculates vector from one location to another
|
||||||
* @param from Location
|
* @param from Location
|
||||||
|
@ -214,4 +150,30 @@ public class Utils {
|
||||||
|
|
||||||
return vector;
|
return vector;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* restarts server
|
||||||
|
*/
|
||||||
|
public static void restart() {
|
||||||
|
Bukkit.getScheduler().scheduleSyncDelayedTask(Core.getInstance(), new Runnable() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
Bukkit.getServer().spigot().restart();
|
||||||
|
}
|
||||||
|
|
||||||
|
}, 10 * 20L);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* shots random firework at specified location
|
||||||
|
* @param loc Location
|
||||||
|
*/
|
||||||
|
public static void randomFirework(Location loc) {
|
||||||
|
FireworkEffect.Builder builder = FireworkEffect.builder();
|
||||||
|
FireworkEffect effect = builder.flicker(false).trail(false).with(FireworkEffect.Type.BALL_LARGE).withColor(Color.RED).withFade(Color.BLUE).build();
|
||||||
|
//TODO: make a random fireworks effect
|
||||||
|
//TODO: remove effect.toString(), its only to remove unused warnings
|
||||||
|
effect.toString();
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,10 +1,11 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api.database;
|
||||||
|
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.sql.Statement;
|
import java.sql.Statement;
|
||||||
import org.bukkit.plugin.Plugin;
|
|
||||||
|
|
||||||
public abstract class Database
|
public abstract class Database
|
||||||
{
|
{
|
|
@ -1,9 +1,10 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api.database;
|
||||||
|
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.DriverManager;
|
import java.sql.DriverManager;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import org.bukkit.plugin.Plugin;
|
|
||||||
|
|
||||||
public class MySQL extends Database
|
public class MySQL extends Database
|
||||||
{
|
{
|
||||||
|
@ -22,9 +23,7 @@ public class MySQL extends Database
|
||||||
this.password = password;
|
this.password = password;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Connection openConnection()
|
public Connection openConnection() throws SQLException, ClassNotFoundException {
|
||||||
throws SQLException, ClassNotFoundException
|
|
||||||
{
|
|
||||||
if (checkConnection()) {
|
if (checkConnection()) {
|
||||||
return this.connection;
|
return this.connection;
|
||||||
}
|
}
|
|
@ -1,4 +1,6 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api.database;
|
||||||
|
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -6,7 +8,6 @@ import java.sql.Connection;
|
||||||
import java.sql.DriverManager;
|
import java.sql.DriverManager;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import org.bukkit.plugin.Plugin;
|
|
||||||
|
|
||||||
public class SQLite extends Database
|
public class SQLite extends Database
|
||||||
{
|
{
|
|
@ -0,0 +1,129 @@
|
||||||
|
package eu.univento.core.api.effects;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.lang.reflect.Method;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author MrSheepSheep
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class WorldBoarder {
|
||||||
|
|
||||||
|
private static Method handle, sendPacket;
|
||||||
|
private static Method center, distance, time, movement;
|
||||||
|
private static Field player_connection;
|
||||||
|
private static Constructor<?> constructor, border_constructor;
|
||||||
|
private static Object constant;
|
||||||
|
|
||||||
|
static {
|
||||||
|
try {
|
||||||
|
handle = getClass("org.bukkit.craftbukkit", "entity.CraftPlayer").getMethod("getHandle");
|
||||||
|
player_connection = getClass("net.minecraft.server", "EntityPlayer").getField("playerConnection");
|
||||||
|
for (Method m : getClass("net.minecraft.server", "PlayerConnection").getMethods()) {
|
||||||
|
if (m.getName().equals("sendPacket")) {
|
||||||
|
sendPacket = m;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Class<?> enumclass;
|
||||||
|
try {
|
||||||
|
enumclass = getClass("net.minecraft.server", "EnumWorldBorderAction");
|
||||||
|
} catch(ClassNotFoundException x) {
|
||||||
|
enumclass = getClass("net.minecraft.server", "PacketPlayOutWorldBorder$EnumWorldBorderAction");
|
||||||
|
}
|
||||||
|
constructor = getClass("net.minecraft.server", "PacketPlayOutWorldBorder").getConstructor(getClass("net.minecraft.server", "WorldBorder"), enumclass);
|
||||||
|
border_constructor = getClass("net.minecraft.server", "WorldBorder").getConstructor();
|
||||||
|
|
||||||
|
Method[] methods = getClass("net.minecraft.server", "WorldBorder").getMethods();
|
||||||
|
|
||||||
|
String setCenter = "setCenter";
|
||||||
|
String setWarningDistance = "setWarningDistance";
|
||||||
|
String setWarningTime = "setWarningTime";
|
||||||
|
String transitionSizeBetween = "transitionSizeBetween";
|
||||||
|
|
||||||
|
if (!inClass(methods, setCenter))
|
||||||
|
setCenter = "c";
|
||||||
|
if (!inClass(methods, setWarningDistance))
|
||||||
|
setWarningDistance = "c";
|
||||||
|
if (!inClass(methods, setWarningTime))
|
||||||
|
setWarningTime = "b";
|
||||||
|
if (!inClass(methods, transitionSizeBetween))
|
||||||
|
transitionSizeBetween = "a";
|
||||||
|
|
||||||
|
center = getClass("net.minecraft.server", "WorldBorder").getMethod(setCenter, double.class, double.class);
|
||||||
|
distance = getClass("net.minecraft.server", "WorldBorder").getMethod(setWarningDistance, int.class);
|
||||||
|
time = getClass("net.minecraft.server", "WorldBorder").getMethod(setWarningTime, int.class);
|
||||||
|
movement = getClass("net.minecraft.server", "WorldBorder").getMethod(transitionSizeBetween, double.class, double.class, long.class);
|
||||||
|
|
||||||
|
for (Object o: enumclass.getEnumConstants()) {
|
||||||
|
if (o.toString().equals("INITIALIZE")) {
|
||||||
|
constant = o;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean inClass(Method[] methods, String methodName){
|
||||||
|
for (Method m : methods)
|
||||||
|
if (Objects.equals(m.getName(), methodName))
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Class<?> getClass(String prefix, String name) throws Exception {
|
||||||
|
return Class.forName((prefix + ".") + Bukkit.getServer().getClass().getPackage().getName().substring(Bukkit.getServer().getClass().getPackage().getName().lastIndexOf(".") + 1) + "." + name);
|
||||||
|
}
|
||||||
|
|
||||||
|
Core plugin;
|
||||||
|
protected List<String> togglelist = new ArrayList<>();
|
||||||
|
|
||||||
|
protected WorldBoarder(Core plugin) {
|
||||||
|
this.plugin = plugin;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void sendBorder(Player p, int percentage, int intensity){
|
||||||
|
percentage = Math.round(percentage / intensity);
|
||||||
|
setBorder(p, percentage);
|
||||||
|
fadeBorder(p, percentage, 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void fadeBorder(Player p, int percentage, long time){
|
||||||
|
int dist = -10000 * percentage + 1300000;
|
||||||
|
sendWorldBorderPacket(p, 0, 200000D, (double) dist, (long) 1000 * time + 4000); //Add 4000 to make sure the "security" zone does not count in the fade time
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void removeBorder(Player p) {
|
||||||
|
sendWorldBorderPacket(p, 0, 200000D, 200000D, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setBorder(Player p, int percentage){
|
||||||
|
int dist = -10000 * percentage + 1300000;
|
||||||
|
sendWorldBorderPacket(p, dist, 200000D, 200000D, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void sendWorldBorderPacket(Player p, int dist, double oldradius, double newradius, long delay) {
|
||||||
|
try {
|
||||||
|
Object worldborder = border_constructor.newInstance();
|
||||||
|
center.invoke(worldborder, p.getLocation().getX(), p.getLocation().getY());
|
||||||
|
distance.invoke(worldborder, dist);
|
||||||
|
time.invoke(worldborder, 15);
|
||||||
|
movement.invoke(worldborder, oldradius, newradius, delay);
|
||||||
|
|
||||||
|
Object packet = constructor.newInstance(worldborder, constant);
|
||||||
|
sendPacket.invoke(player_connection.get(handle.invoke(p)), packet);
|
||||||
|
} catch(Exception x) {
|
||||||
|
x.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,6 +1,5 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api.entity;
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import net.minecraft.server.v1_8_R3.EntityLiving;
|
import net.minecraft.server.v1_8_R3.EntityLiving;
|
||||||
import net.minecraft.server.v1_8_R3.NBTTagCompound;
|
import net.minecraft.server.v1_8_R3.NBTTagCompound;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
@ -11,6 +10,13 @@ import org.bukkit.craftbukkit.v1_8_R3.entity.CraftEntity;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.plugin.Plugin;
|
import org.bukkit.plugin.Plugin;
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author GerVorbis
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
public class EntityModifier
|
public class EntityModifier
|
||||||
{
|
{
|
||||||
static org.bukkit.entity.Entity entity;
|
static org.bukkit.entity.Entity entity;
|
|
@ -0,0 +1,89 @@
|
||||||
|
package eu.univento.core.api.events;
|
||||||
|
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.Server;
|
||||||
|
import org.bukkit.World;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.player.PlayerMoveEvent;
|
||||||
|
|
||||||
|
import java.util.WeakHashMap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Crislibaer
|
||||||
|
*/
|
||||||
|
public class MoveEventFilter implements Listener
|
||||||
|
{
|
||||||
|
public static class PlayerBlockMoveEvent extends PlayerMoveEvent
|
||||||
|
{
|
||||||
|
public PlayerBlockMoveEvent(PlayerMoveEvent pEvent)
|
||||||
|
{
|
||||||
|
super(pEvent.getPlayer(), pEvent.getFrom(), pEvent.getTo());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class BlockPosition
|
||||||
|
{
|
||||||
|
public int x;
|
||||||
|
public int y;
|
||||||
|
public int z;
|
||||||
|
public World world;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Server mServer;
|
||||||
|
private WeakHashMap<Player, BlockPosition> mLastPosition = new WeakHashMap<>();
|
||||||
|
|
||||||
|
public MoveEventFilter(Server pServer)
|
||||||
|
{
|
||||||
|
mServer = pServer;
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onPlayerMove(PlayerMoveEvent pEvent)
|
||||||
|
{
|
||||||
|
if(pEvent.isCancelled() || pEvent instanceof PlayerBlockMoveEvent)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
BlockPosition lastPos = mLastPosition.get(pEvent.getPlayer());
|
||||||
|
Location currentPos = pEvent.getTo();
|
||||||
|
boolean fireEvent = false;
|
||||||
|
|
||||||
|
if(lastPos == null)
|
||||||
|
{
|
||||||
|
lastPos = new BlockPosition();
|
||||||
|
mLastPosition.put(pEvent.getPlayer(), lastPos);
|
||||||
|
fireEvent = true;
|
||||||
|
}
|
||||||
|
else if(lastPos.x != currentPos.getBlockX() || lastPos.z != currentPos.getBlockZ() || lastPos.y != currentPos.getBlockY())
|
||||||
|
{
|
||||||
|
fireEvent = true;
|
||||||
|
}
|
||||||
|
else if(lastPos.world != currentPos.getWorld())
|
||||||
|
{
|
||||||
|
fireEvent = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(fireEvent)
|
||||||
|
{
|
||||||
|
// make sure that our event is synchronous
|
||||||
|
assert !pEvent.isAsynchronous();
|
||||||
|
|
||||||
|
// fire event
|
||||||
|
PlayerBlockMoveEvent event = new PlayerBlockMoveEvent(pEvent);
|
||||||
|
mServer.getPluginManager().callEvent(event);
|
||||||
|
|
||||||
|
// check event state and only update new position if event does not gets canceled
|
||||||
|
if(!event.isCancelled())
|
||||||
|
{
|
||||||
|
// update new position
|
||||||
|
lastPos.world = currentPos.getWorld();
|
||||||
|
lastPos.x = currentPos.getBlockX();
|
||||||
|
lastPos.y = currentPos.getBlockY();
|
||||||
|
lastPos.z = currentPos.getBlockZ();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,232 @@
|
||||||
|
package eu.univento.core.api.fakeplayer;
|
||||||
|
|
||||||
|
import com.mojang.authlib.GameProfile;
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import net.minecraft.server.v1_8_R3.*;
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
||||||
|
import org.bukkit.entity.ArmorStand;
|
||||||
|
import org.bukkit.entity.EntityType;
|
||||||
|
import org.bukkit.entity.LivingEntity;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.scheduler.BukkitRunnable;
|
||||||
|
import org.bukkit.scheduler.BukkitTask;
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.3
|
||||||
|
*/
|
||||||
|
public class FakePlayer {
|
||||||
|
|
||||||
|
private static final double MOVE_SPEED = 4.3D / 20;
|
||||||
|
|
||||||
|
private Player player;
|
||||||
|
private int entityId;
|
||||||
|
private GameProfile gameProfile;
|
||||||
|
private DataWatcher dataWatcher;
|
||||||
|
|
||||||
|
private Location location;
|
||||||
|
private ArmorStand armorStand;
|
||||||
|
private LivingEntity target;
|
||||||
|
private BukkitTask task;
|
||||||
|
|
||||||
|
private boolean moveable;
|
||||||
|
|
||||||
|
public FakePlayer(GameProfile gameProfile, boolean moveable, Player player) {
|
||||||
|
|
||||||
|
this.player = player;
|
||||||
|
|
||||||
|
this.moveable = moveable;
|
||||||
|
|
||||||
|
this.entityId = (int) get(Entity.class, null, "entityCount");
|
||||||
|
set(Entity.class, null, "entityCount", this.entityId + 1);
|
||||||
|
this.gameProfile = gameProfile;
|
||||||
|
|
||||||
|
this.dataWatcher = new DataWatcher(null);
|
||||||
|
byte status = 0;
|
||||||
|
this.dataWatcher.a(0, status);
|
||||||
|
this.dataWatcher.a(10, (byte) 127);
|
||||||
|
this.dataWatcher.a(6, 20F);
|
||||||
|
}
|
||||||
|
|
||||||
|
private final BukkitRunnable tickTask = new BukkitRunnable() {
|
||||||
|
|
||||||
|
private int ticksLiving = 0;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if(target != null) {
|
||||||
|
followEntity(target);
|
||||||
|
|
||||||
|
ticksLiving++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private byte changeMask(byte bitMask, int bit, boolean state) {
|
||||||
|
if(state)
|
||||||
|
return bitMask |= 1 << bit;
|
||||||
|
else
|
||||||
|
return bitMask &= ~(1 << bit);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTarget(LivingEntity target) {
|
||||||
|
this.target = target;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void clearTarget() {
|
||||||
|
this.target = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFire(boolean fire) {
|
||||||
|
setStatus(0, fire);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSneaking(boolean sneaking) {
|
||||||
|
setStatus(1, sneaking);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSprinting(boolean sprinting) {
|
||||||
|
setStatus(3, sprinting);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUseItem(boolean useItem) {
|
||||||
|
setStatus(4, useItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInvisible(boolean invisible) {
|
||||||
|
setStatus(5, invisible);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setStatus(int data, boolean bool) {
|
||||||
|
DataWatcher dataWatcher = this.dataWatcher;
|
||||||
|
byte status = 0;
|
||||||
|
status = changeMask(status, data, bool);
|
||||||
|
dataWatcher.a(0, status);
|
||||||
|
dataWatcher.a(10, (byte) 127);
|
||||||
|
dataWatcher.a(6, 20F);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void followEntity(LivingEntity entity) {
|
||||||
|
double diffX = entity.getLocation().getX() - location.getX();
|
||||||
|
double diffY = (entity.getLocation().getY() + entity.getEyeHeight() * 0.9D) - location.getY() + 1.6F;
|
||||||
|
double diffZ = entity.getLocation().getZ() - location.getZ();
|
||||||
|
double hypoXZ = Math.sqrt(diffX * diffX + diffZ * diffZ);
|
||||||
|
float yaw = (float) (Math.atan2(diffZ, diffX) * 180D / Math.PI) - 90F;
|
||||||
|
float pitch = (float) -(Math.atan2(diffY, hypoXZ) * 18D / Math.PI);
|
||||||
|
look(yaw, pitch);
|
||||||
|
|
||||||
|
if(moveable) {
|
||||||
|
if(Math.abs(diffX) > 3D || Math.abs(diffZ) > 3D) {
|
||||||
|
yaw = (float) Math.toRadians(yaw);
|
||||||
|
double x = Math.sin(yaw);
|
||||||
|
double z = Math.cos(yaw);
|
||||||
|
move(x * MOVE_SPEED, 0, z * MOVE_SPEED);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void move(double x, int y, double z) {
|
||||||
|
sendPackets(new PacketPlayOutEntity.PacketPlayOutRelEntityMoveLook(this.entityId, (byte) toFixedPointNumber(x), (byte) toFixedPointNumber(y), (byte) toFixedPointNumber(z), toAngle(location.getYaw()), toAngle(location.getPitch()), true));
|
||||||
|
this.location.add(toFixedPointNumber(x) / 32D, toFixedPointNumber(y) / 32D, toFixedPointNumber(z) / 32D);
|
||||||
|
this.armorStand.teleport(this.location);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void spawn(Location location) {
|
||||||
|
|
||||||
|
PacketPlayOutNamedEntitySpawn playerSpawn = new PacketPlayOutNamedEntitySpawn();
|
||||||
|
set(playerSpawn, "a", this.entityId);
|
||||||
|
set(playerSpawn, "b", this.gameProfile.getId());
|
||||||
|
set(playerSpawn, "c", toFixedPointNumber(location.getX()));
|
||||||
|
set(playerSpawn, "d", toFixedPointNumber(location.getY()));
|
||||||
|
set(playerSpawn, "e", toFixedPointNumber(location.getZ()));
|
||||||
|
set(playerSpawn, "f", toAngle(location.getYaw()));
|
||||||
|
set(playerSpawn, "g", toAngle(location.getPitch()));
|
||||||
|
set(playerSpawn, "h", 0);
|
||||||
|
set(playerSpawn, "i", this.dataWatcher);
|
||||||
|
|
||||||
|
PacketPlayOutPlayerInfo playerInfo = new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.ADD_PLAYER);
|
||||||
|
set(playerInfo, "b", Arrays.asList(playerInfo.new PlayerInfoData(this.gameProfile, 0, WorldSettings.EnumGamemode.NOT_SET, new ChatComponentText(this.gameProfile.getName()))));
|
||||||
|
sendPackets(playerInfo, playerSpawn);
|
||||||
|
|
||||||
|
this.location = location;
|
||||||
|
this.armorStand = (ArmorStand) location.getWorld().spawnEntity(location, EntityType.ARMOR_STAND);
|
||||||
|
this.armorStand.setGravity(true);
|
||||||
|
this.armorStand.setVisible(false);
|
||||||
|
|
||||||
|
this.task = tickTask.runTaskTimer(Core.getInstance(), 0L, 1L);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void despawn() {
|
||||||
|
PacketPlayOutPlayerInfo playerInfo = new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.REMOVE_PLAYER);
|
||||||
|
set(playerInfo, "b", Arrays.asList(playerInfo.new PlayerInfoData(this.gameProfile, 0, null, null)));
|
||||||
|
sendPackets(new PacketPlayOutEntityDestroy(this.entityId), playerInfo);
|
||||||
|
|
||||||
|
this.armorStand.remove();
|
||||||
|
this.armorStand = null;
|
||||||
|
this.task.cancel();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removeTablist() {
|
||||||
|
PacketPlayOutPlayerInfo playerInfo = new PacketPlayOutPlayerInfo(PacketPlayOutPlayerInfo.EnumPlayerInfoAction.REMOVE_PLAYER);
|
||||||
|
set(playerInfo, "b", Arrays.asList(playerInfo.new PlayerInfoData(this.gameProfile, 0, null, null)));
|
||||||
|
sendPackets(new PacketPlayOutEntityDestroy(this.entityId), playerInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void look(float yaw, float pitch) {
|
||||||
|
PacketPlayOutEntityHeadRotation headRotation = new PacketPlayOutEntityHeadRotation();
|
||||||
|
set(headRotation, "a", this.entityId);
|
||||||
|
set(headRotation, "b", toAngle(yaw));
|
||||||
|
sendPackets(headRotation, new PacketPlayOutEntity.PacketPlayOutEntityLook(this.entityId, toAngle(yaw), toAngle(pitch), false));
|
||||||
|
this.location.setYaw(yaw);
|
||||||
|
this.location.setPitch(pitch);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int toFixedPointNumber(double value) {
|
||||||
|
return (int) Math.floor(value * 32D);
|
||||||
|
}
|
||||||
|
|
||||||
|
private byte toAngle(float value) {
|
||||||
|
return (byte) ((int) (value * 256.0F / 360.F));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void sendPackets(Packet<?>... packets) {
|
||||||
|
for(Packet<?> packet : packets)
|
||||||
|
((CraftPlayer) player).getHandle().playerConnection.sendPacket(packet);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void set(Object instance, String name, Object value) {
|
||||||
|
set(instance.getClass(), instance, name, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void set(Class<?> clazz, Object instance, String name, Object value) {
|
||||||
|
try{
|
||||||
|
Field field = clazz.getDeclaredField(name);
|
||||||
|
field.setAccessible(true);
|
||||||
|
field.set(instance, value);
|
||||||
|
}catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private Object get(Object instance, String name) {
|
||||||
|
return get(instance.getClass(), instance, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Object get(Class<?> clazz, Object instance, String name) {
|
||||||
|
try{
|
||||||
|
Field field = clazz.getDeclaredField(name);
|
||||||
|
field.setAccessible(true);
|
||||||
|
return field.get(instance);
|
||||||
|
}catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
package eu.univento.core.api.fakeplayer;
|
||||||
|
|
||||||
|
import com.mojang.authlib.GameProfile;
|
||||||
|
import eu.univento.core.api.utils.GameProfileBuilder;
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.block.Action;
|
||||||
|
import org.bukkit.event.player.PlayerInteractEvent;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class PlayerKi implements Listener{
|
||||||
|
|
||||||
|
FakePlayer player;
|
||||||
|
|
||||||
|
public FakePlayer createPlayer(Player p, String uuid, String name, String skinUrl, String capeUrl) {
|
||||||
|
GameProfile gameProfile = GameProfileBuilder.getProfile(UUID.fromString(uuid), name, skinUrl, capeUrl);
|
||||||
|
return new FakePlayer(gameProfile, true, p);
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onInteract(PlayerInteractEvent e) {
|
||||||
|
if(e.getAction() == Action.RIGHT_CLICK_AIR) {
|
||||||
|
if(e.getItem().getType() == Material.DIAMOND) {
|
||||||
|
if(this.player != null) {
|
||||||
|
this.player.despawn();
|
||||||
|
}
|
||||||
|
FakePlayer player = createPlayer(e.getPlayer(), e.getPlayer().getUniqueId().toString(),
|
||||||
|
"TestUser", "http://textures.minecraft.net/texture/a116e69a845e227f7ca1fdde8c357c8c821ebd4ba619382ea4a1f87d4ae94",
|
||||||
|
"http://textures.minecraft.net/texture/3f688e0e699b3d9fe448b5bb50a3a288f9c589762b3dae8308842122dcb81");
|
||||||
|
this.player = player;
|
||||||
|
player.spawn(e.getPlayer().getLocation());
|
||||||
|
player.setTarget(e.getPlayer());
|
||||||
|
player.setSneaking(true);
|
||||||
|
player.removeTablist();
|
||||||
|
}
|
||||||
|
if(e.getItem().getType() == Material.DIAMOND_SWORD) {
|
||||||
|
player.despawn();
|
||||||
|
}
|
||||||
|
if(e.getItem().getType() == Material.NETHER_STAR) {
|
||||||
|
player.followEntity(e.getPlayer());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,224 @@
|
||||||
|
package eu.univento.core.api.gui;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import net.minecraft.server.v1_8_R3.*;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.HandlerList;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.inventory.InventoryClickEvent;
|
||||||
|
import org.bukkit.event.inventory.InventoryCloseEvent;
|
||||||
|
import org.bukkit.event.player.PlayerQuitEvent;
|
||||||
|
import org.bukkit.inventory.Inventory;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by chasechocolate.
|
||||||
|
*/
|
||||||
|
public class AnvilGUI {
|
||||||
|
private class AnvilContainer extends ContainerAnvil {
|
||||||
|
public AnvilContainer(EntityHuman entity){
|
||||||
|
super(entity.inventory, entity.world,new BlockPosition(0, 0, 0), entity);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean a(EntityHuman entityhuman){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum AnvilSlot {
|
||||||
|
INPUT_LEFT(0),
|
||||||
|
INPUT_RIGHT(1),
|
||||||
|
OUTPUT(2);
|
||||||
|
|
||||||
|
private int slot;
|
||||||
|
|
||||||
|
private AnvilSlot(int slot){
|
||||||
|
this.slot = slot;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getSlot(){
|
||||||
|
return slot;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static AnvilSlot bySlot(int slot){
|
||||||
|
for(AnvilSlot anvilSlot : values()){
|
||||||
|
if(anvilSlot.getSlot() == slot){
|
||||||
|
return anvilSlot;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class AnvilClickEvent {
|
||||||
|
private AnvilSlot slot;
|
||||||
|
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
private boolean close = true;
|
||||||
|
private boolean destroy = true;
|
||||||
|
|
||||||
|
public AnvilClickEvent(AnvilSlot slot, String name){
|
||||||
|
this.slot = slot;
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public AnvilSlot getSlot(){
|
||||||
|
return slot;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName(){
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getWillClose(){
|
||||||
|
return close;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWillClose(boolean close){
|
||||||
|
this.close = close;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getWillDestroy(){
|
||||||
|
return destroy;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWillDestroy(boolean destroy){
|
||||||
|
this.destroy = destroy;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface AnvilClickEventHandler {
|
||||||
|
public void onAnvilClick(AnvilClickEvent event);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Player player;
|
||||||
|
|
||||||
|
private AnvilClickEventHandler handler;
|
||||||
|
|
||||||
|
private HashMap<AnvilSlot, ItemStack> items = new HashMap<AnvilSlot, ItemStack>();
|
||||||
|
|
||||||
|
private Inventory inv;
|
||||||
|
|
||||||
|
private Listener listener;
|
||||||
|
|
||||||
|
public AnvilGUI(Player player, final AnvilClickEventHandler handler){
|
||||||
|
this.player = player;
|
||||||
|
this.handler = handler;
|
||||||
|
|
||||||
|
this.listener = new Listener(){
|
||||||
|
@EventHandler
|
||||||
|
public void onInventoryClick(InventoryClickEvent event){
|
||||||
|
if(event.getWhoClicked() instanceof Player){
|
||||||
|
Player clicker = (Player) event.getWhoClicked();
|
||||||
|
|
||||||
|
if(event.getInventory().equals(inv)){
|
||||||
|
event.setCancelled(true);
|
||||||
|
|
||||||
|
ItemStack item = event.getCurrentItem();
|
||||||
|
int slot = event.getRawSlot();
|
||||||
|
String name = "";
|
||||||
|
|
||||||
|
if(item != null){
|
||||||
|
if(item.hasItemMeta()){
|
||||||
|
ItemMeta meta = item.getItemMeta();
|
||||||
|
|
||||||
|
if(meta.hasDisplayName()){
|
||||||
|
name = meta.getDisplayName();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
AnvilClickEvent clickEvent = new AnvilClickEvent(AnvilSlot.bySlot(slot), name);
|
||||||
|
|
||||||
|
handler.onAnvilClick(clickEvent);
|
||||||
|
|
||||||
|
if(clickEvent.getWillClose()){
|
||||||
|
event.getWhoClicked().closeInventory();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(clickEvent.getWillDestroy()){
|
||||||
|
destroy();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onInventoryClose(InventoryCloseEvent event){
|
||||||
|
if(event.getPlayer() instanceof Player){
|
||||||
|
Player player = (Player) event.getPlayer();
|
||||||
|
Inventory inv = event.getInventory();
|
||||||
|
|
||||||
|
if(inv.equals(AnvilGUI.this.inv)){
|
||||||
|
inv.clear();
|
||||||
|
destroy();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onPlayerQuit(PlayerQuitEvent event){
|
||||||
|
if(event.getPlayer().equals(getPlayer())){
|
||||||
|
destroy();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Bukkit.getPluginManager().registerEvents(listener, Core.getInstance()); //Replace with instance of main class
|
||||||
|
}
|
||||||
|
|
||||||
|
public Player getPlayer(){
|
||||||
|
return player;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSlot(AnvilSlot slot, ItemStack item){
|
||||||
|
items.put(slot, item);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void open(){
|
||||||
|
EntityPlayer p = ((CraftPlayer) player).getHandle();
|
||||||
|
|
||||||
|
AnvilContainer container = new AnvilContainer(p);
|
||||||
|
|
||||||
|
//Set the items to the items from the inventory given
|
||||||
|
inv = container.getBukkitView().getTopInventory();
|
||||||
|
|
||||||
|
for(AnvilSlot slot : items.keySet()){
|
||||||
|
inv.setItem(slot.getSlot(), items.get(slot));
|
||||||
|
}
|
||||||
|
|
||||||
|
//Counter stuff that the game uses to keep track of inventories
|
||||||
|
int c = p.nextContainerCounter();
|
||||||
|
|
||||||
|
//Send the packet
|
||||||
|
p.playerConnection.sendPacket(new PacketPlayOutOpenWindow(c, "minecraft:anvil", new ChatMessage("Repairing", new Object[]{}), 0));
|
||||||
|
|
||||||
|
//Set their active container to the container
|
||||||
|
p.activeContainer = container;
|
||||||
|
|
||||||
|
//Set their active container window id to that counter stuff
|
||||||
|
p.activeContainer.windowId = c;
|
||||||
|
|
||||||
|
//Add the slot listener
|
||||||
|
p.activeContainer.addSlotListener(p);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void destroy(){
|
||||||
|
player = null;
|
||||||
|
handler = null;
|
||||||
|
items = null;
|
||||||
|
|
||||||
|
HandlerList.unregisterAll(listener);
|
||||||
|
|
||||||
|
listener = null;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,18 +1,19 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api.items;
|
||||||
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import com.mojang.authlib.properties.Property;
|
import com.mojang.authlib.properties.Property;
|
||||||
import java.lang.reflect.Constructor;
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import java.lang.reflect.Method;
|
|
||||||
import java.util.Base64;
|
|
||||||
import java.util.UUID;
|
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.Material;
|
import org.bukkit.Material;
|
||||||
import org.bukkit.block.Block;
|
import org.bukkit.block.Block;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
import org.bukkit.inventory.meta.SkullMeta;
|
import org.bukkit.inventory.meta.SkullMeta;
|
||||||
|
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.lang.reflect.Method;
|
||||||
|
import java.util.Base64;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
public class ItemSkulls
|
public class ItemSkulls
|
||||||
{
|
{
|
||||||
private static Class<?> skullMetaClass;
|
private static Class<?> skullMetaClass;
|
|
@ -1,4 +1,4 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api.items;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -7,6 +7,7 @@ import java.util.Optional;
|
||||||
/***************************
|
/***************************
|
||||||
* Pagifier by leNic *
|
* Pagifier by leNic *
|
||||||
***************************/
|
***************************/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author leNic
|
* @author leNic
|
||||||
* @version 1.0
|
* @version 1.0
|
|
@ -0,0 +1,557 @@
|
||||||
|
package eu.univento.core.api.languages;
|
||||||
|
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
public class Language_DE implements Languages{
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String UNKNOWN_ERROR() {
|
||||||
|
return "§cEs ist ein unbekannter Fehler aufgetreten";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String NO_PERMS() {
|
||||||
|
return "§cDu hast keine Berechtigung diesen Befehl auszuführen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String ERROR() {
|
||||||
|
return "§cFehler: ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String NOT_ONLINE(String name) {
|
||||||
|
return "§7" + name + " ist §cnicht §7online";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String KICK_RESTART() {
|
||||||
|
return "§cDer Server wurde neu gestartet";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String KICK_FULL() {
|
||||||
|
return "§cDieser Server ist bereits voll";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String COMMAND_NOT_FOUND() {
|
||||||
|
return "§cDieser Befehl konnte nicht gefunden werden";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_OWN() {
|
||||||
|
return "§7Du wurdest §egefixt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_OTHER(CustomPlayer p) {
|
||||||
|
return "§7Du hast " + p.getDisplayName() + " §egefixt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_BY_OTHER(CustomPlayer p) {
|
||||||
|
return "§7Du wurdest von " + p.getDisplayName() + " §egefixt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_NICK_ON() {
|
||||||
|
return "§7Du hast einen §eNicknamen §7zugewiesen bekommen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_NICK_OFF() {
|
||||||
|
return "§7Du hast nun §ckeinen §eNicknamen §7mehr";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BUILD_ON() {
|
||||||
|
return "§7Du hast den Baumodus §abetreten";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BUILD_OFF() {
|
||||||
|
return "§7Du hast den Baumodus §cverlassen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_NO_REASON() {
|
||||||
|
return "§cDieser Grund exsistiert nicht";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_USAGE() {
|
||||||
|
return "§cNutze <Spieler> <Grund>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_BANNED(CustomPlayer p) {
|
||||||
|
return "§7Du hast " + p.getColor() + p.getDisplayName() + " §cgebannt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GM_USAGE() {
|
||||||
|
return "§7Nutze §e/gm <0 | 1 | 2 | 3>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GM_CHANGED() {
|
||||||
|
return "§7Dein Spielmodus wurde §ageändert";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GLOBALMUTE_ON() {
|
||||||
|
return "§7Der Server wurde §cstumm gestellt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GLOBALMUTE_OFF() {
|
||||||
|
return "§7Der Server wurde §asozial §7gestellt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_RUNAS_USAGE() {
|
||||||
|
return "§cFühre /runas <Spieler> <Befehl>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_RUNAS_RUN(CustomPlayer p) {
|
||||||
|
return "§7Der Spieler " + p.getColor() + p.getDisplayName() + " §7hat deinen Befehl §eerfolgreich §7ausgeführt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_USAGE() {
|
||||||
|
return "§cNutze /setrank <Spieler> <Rang>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_KICK() {
|
||||||
|
return "\n§aDu hast nun einen neuen Rang.§e\nBitte joine neu§7.";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_NO_RANK() {
|
||||||
|
return "§cDieser Rang exsistiert nicht";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_SET(CustomPlayer p, Perms.Ranks rank) {
|
||||||
|
return "§7Du hast dem Spieler " + p.getDisplayName() + " auf §e" + rank.toString() + " §7gesetzt";
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public String Core_TS_ALLREADY_VERIFIED() {
|
||||||
|
return "§cDu hast bereits einen verifizierten Account";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_TS_VERIFIED() {
|
||||||
|
return "§7Du hast deinen Account §eerfolgreich §7verifiziert";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_VANISH_ON() {
|
||||||
|
return "§7Du bist nun §aunsichtbar";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_VANISH_OFF() {
|
||||||
|
return "§7Du bist nun wieder §csichtbar";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SERVER_MUTED() {
|
||||||
|
return "§7Der Chat ist bis auf weiteres §cgesperrt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_CHAT_CLEARED(CustomPlayer p) {
|
||||||
|
return "§7Der Chat wurde von " + p.getColor() + p.getDisplayName() + " §cgereinigt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_TAB_TITLE() {
|
||||||
|
return "§7Du spielst auf §e";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYERS_HIDE() {
|
||||||
|
return "§7Du kannst nun §ckeine §7Spieler mehr sehen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYERS_SHOW() {
|
||||||
|
return "§7Du kannst nun §aalle §7Spieler sehen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_AUTONICK_ON() {
|
||||||
|
return "§7Du §aerhälst §7nun einen automatischen §eNicknamen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_AUTONICK_OFF() {
|
||||||
|
return "§7Du hast nun §ckeinen §7automatischen §eNicknamen §7mehr";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FORCEFIELD_ON() {
|
||||||
|
return "§7Du hast das §eSchutzschild §aaktiviert";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FORCEFIELD_OFF() {
|
||||||
|
return "§7Du hast das §eSchutzschild §cdeaktiviert";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SILENT_LOBBY_ON() {
|
||||||
|
return "§7Du hast die §eSilent-Lobby §abetreten";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SILENT_LOBBY_OFF() {
|
||||||
|
return "§7Du hast die §eSilent-Lobby §cverlassen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYING_MUSIC_PREFIX() {
|
||||||
|
return "§6Jetzt spielt: ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FOUND_ITEM_PREFIX() {
|
||||||
|
return "§7Du hast etwas §egefunden";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_LOCATION() {
|
||||||
|
return "§aPosition wurde gesetzt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_LOCATION_USAGE() {
|
||||||
|
return "§cNutze /setloc <Name>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_DROP_ITEM_USAGE() {
|
||||||
|
return "§cNutze /dropitem <Item>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_DROP_ITEM() {
|
||||||
|
return "§aDu hast ein Item gelegt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_SIGN() {
|
||||||
|
return "§aNeues Status Schild erstellt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_JOIN_TITLE_1() {
|
||||||
|
return "§6univento§7.§eeu";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_JOIN_TITLE_2() {
|
||||||
|
return "§cIch putze hier nur";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PET_ADD() {
|
||||||
|
return "§7Du hast nun ein §eHaustier";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PET_REMOVE() {
|
||||||
|
return "§7Du hast nun §ckein §eHaustier §7mehr";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PARKOUR_ON() {
|
||||||
|
return "§7Du hast den §eParkourmodus §abetreten";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PARKOUR_OFF() {
|
||||||
|
return "§7Du hast den §eParkourmodus §cverlassen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_NAVIGATOR() {
|
||||||
|
return "§eNavigator";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_HIDER_ON() {
|
||||||
|
return "§cSpieler verstecken";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_HIDER_OFF() {
|
||||||
|
return "§aSpieler anzeigen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_AUTO_NICK() {
|
||||||
|
return "§5AutoNick";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SILENT_LOBBY() {
|
||||||
|
return "§cSilent-Lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FORCEFIELD() {
|
||||||
|
return "§aSchutzschild";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FUN_CHEST() {
|
||||||
|
return "§cF§aU§eN§3Chest";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PROFILE() {
|
||||||
|
return "§eDein Profil";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_YOUTUBER() {
|
||||||
|
return "§5Youtuber Funktionen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SUGGESTION() {
|
||||||
|
return "§6Vorschläge";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SPAWN() {
|
||||||
|
return "§6Spawn";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PREMIUMHUB() {
|
||||||
|
return "§6Premium Lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_MAYA() {
|
||||||
|
return "§6Maya";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_WOOLGET() {
|
||||||
|
return "§6WoolGet";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_BUILDSERVER() {
|
||||||
|
return "§aBau-Server";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYERS_ONLINE() {
|
||||||
|
return " §6Spieler online";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_GADGETS() {
|
||||||
|
return "§6Gadgets";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_MUSIC() {
|
||||||
|
return "§6Musik";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PARTICLE() {
|
||||||
|
return "§6Partikel";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS() {
|
||||||
|
return "§6Haustiere";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_YOUR_PET() {
|
||||||
|
return "§6Dein Haustier";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_NAME() {
|
||||||
|
return "§6Namen ändern";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_AGE() {
|
||||||
|
return "§6Alter ändern";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_RIDE() {
|
||||||
|
return "§6Reiten";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_REMOVE() {
|
||||||
|
return "§6Haustier entfernen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_PIG() {
|
||||||
|
return "§6Schwein";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_COW() {
|
||||||
|
return "§6Kuh";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_CHICKEN() {
|
||||||
|
return "§6Hühnchen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_RABBIT() {
|
||||||
|
return "§6Hase";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_MUSHROM_COW() {
|
||||||
|
return "§6Pilzkuh";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_MENU() {
|
||||||
|
return " Menü";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_FRIEND() {
|
||||||
|
return "§6Freundschaftsanfrage senden";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_PARTY() {
|
||||||
|
return "§6Party Anfrage senden";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_PROFILE() {
|
||||||
|
return "§6Profil";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_STATS() {
|
||||||
|
return "§6Statistiken";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_STATS() {
|
||||||
|
return "§6Deine Statistiken";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FRIENDS() {
|
||||||
|
return "§6Freunde";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS() {
|
||||||
|
return "§eEinstellungen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_FASTMENU() {
|
||||||
|
return "§6Inventar Animation";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_SERVER_TELEPORT() {
|
||||||
|
return "§6Server-Teleport";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_PARTY_REQUESTS() {
|
||||||
|
return "§6Party Anfragen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_FRIEND_REQUESTS() {
|
||||||
|
return "§6Freundschafts Anfragen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_CHATSOUNDS() {
|
||||||
|
return "§6Chat Geräusche";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_EFFECTS() {
|
||||||
|
return "§6Effekte";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_LANGUAGES() {
|
||||||
|
return "§6Sprachen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_ON() {
|
||||||
|
return "§aaktiviert";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_OFF() {
|
||||||
|
return "§cdeaktiviert";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_BACK() {
|
||||||
|
return "§cZurück";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_FOUND_SECRETS() {
|
||||||
|
return "§eVerstecke§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_COINS() {
|
||||||
|
return "§eDeine Coins§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_TS() {
|
||||||
|
return "§eTeamSpeak§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_FORUM() {
|
||||||
|
return "§eForum§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_NEW() {
|
||||||
|
return "§e§lJetzt neu:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_NEWS() {
|
||||||
|
return "Scheibenwischer";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,556 @@
|
||||||
|
package eu.univento.core.api.languages;
|
||||||
|
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class Language_EN implements Languages{
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String UNKNOWN_ERROR() {
|
||||||
|
return "§cEs ist ein unbekannter Fehler aufgetreten";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String NO_PERMS() {
|
||||||
|
return "§cYou're not allowed do use this command";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String ERROR() {
|
||||||
|
return "§cERROR: ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String NOT_ONLINE(String name) {
|
||||||
|
return "§7" + name + " is §cnot §7online";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String KICK_RESTART() {
|
||||||
|
return "§cThe server has been restarted";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String KICK_FULL() {
|
||||||
|
return "§cThe server is full";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String COMMAND_NOT_FOUND() {
|
||||||
|
return "§cThis command hasn't been found.";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_OWN() {
|
||||||
|
return "§7You were §efixed";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_OTHER(CustomPlayer p) {
|
||||||
|
return "§7You §efixed " + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_BY_OTHER(CustomPlayer p) {
|
||||||
|
return "§7You've been §efixed §7by " + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_NICK_ON() {
|
||||||
|
return "§7You got a §enickname";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_NICK_OFF() {
|
||||||
|
return "§7Now you have §cno more keinen §enickname";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BUILD_ON() {
|
||||||
|
return "§7You've §ajoined §7the building-mode";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BUILD_OFF() {
|
||||||
|
return "§7You've §cleft §7the building-mode";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_NO_REASON() {
|
||||||
|
return "§cThis reason doesn't exist";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_USAGE() {
|
||||||
|
return "§cUse <player> <reason>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_BANNED(CustomPlayer p) {
|
||||||
|
return "§7You've §cbanned " + p.getColor() + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GM_USAGE() {
|
||||||
|
return "§7Use §e/gm <0 | 1 | 2 | 3>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GM_CHANGED() {
|
||||||
|
return "§7You're gamemode has been §achanged";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GLOBALMUTE_ON() {
|
||||||
|
return "§7The server has been §cmuted";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GLOBALMUTE_OFF() {
|
||||||
|
return "§7The server has been §aunmuted";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_RUNAS_USAGE() {
|
||||||
|
return "§cUse /runas <player> <command>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_RUNAS_RUN(CustomPlayer p) {
|
||||||
|
return "§7The player " + p.getColor() + p.getDisplayName() + " §7has executed your command §esuccesfully";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_USAGE() {
|
||||||
|
return "§cUse /setrank <player> <rank>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_KICK() {
|
||||||
|
return "\n§aYou've got a new rank,§e\nplease rejoin§7.";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_NO_RANK() {
|
||||||
|
return "§cThis rank doesn't exist";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_SET(CustomPlayer p, Perms.Ranks rank) {
|
||||||
|
return "§7You gave " + p.getDisplayName() + " the rank §e" + rank.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_TS_ALLREADY_VERIFIED() {
|
||||||
|
return "§cYou've already had a verificated account";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_TS_VERIFIED() {
|
||||||
|
return "§7You verificated your account §esuccesfully";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_VANISH_ON() {
|
||||||
|
return "§7You are now §aunvisible";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_VANISH_OFF() {
|
||||||
|
return "§7You are now §cvisible §7again";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SERVER_MUTED() {
|
||||||
|
return "§7The chat has been §cblocked";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_CHAT_CLEARED(CustomPlayer p) {
|
||||||
|
return "§7The chat has been §ccleaned §7by " + p.getColor() + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_TAB_TITLE() {
|
||||||
|
return "§7You're playing on §e";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYERS_HIDE() {
|
||||||
|
return "§7You've §chidden §7all other players";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYERS_SHOW() {
|
||||||
|
return "§7Now you can §asee §7all other players ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_AUTONICK_ON() {
|
||||||
|
return "§7You'll §aget an automatical §enickname";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_AUTONICK_OFF() {
|
||||||
|
return "§7You're §cnot getting an automatical §enickname §eanymore";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FORCEFIELD_ON() {
|
||||||
|
return "§7You §aactivated §7your §eforcefield";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FORCEFIELD_OFF() {
|
||||||
|
return "§7You §cdeactivated §7your §eforcefield";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SILENT_LOBBY_ON() {
|
||||||
|
return "§7You §ajoined §7the §esilent-lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SILENT_LOBBY_OFF() {
|
||||||
|
return "§7You §eleft §7the §esilent-lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYING_MUSIC_PREFIX() {
|
||||||
|
return "§6Now playing: ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FOUND_ITEM_PREFIX() {
|
||||||
|
return "§7You've §efound §7something";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_LOCATION() {
|
||||||
|
return "§aPoisition has been set";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_LOCATION_USAGE() {
|
||||||
|
return "§cUse /setloc <name>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_DROP_ITEM_USAGE() {
|
||||||
|
return "§cUse /dropitem <item>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_DROP_ITEM() {
|
||||||
|
return "§aYou set an item";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_SIGN() {
|
||||||
|
return "§aNeues Status Schild erstellt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_JOIN_TITLE_1() {
|
||||||
|
return "§6univento§7.§eeu";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_JOIN_TITLE_2() {
|
||||||
|
return "§cI'm just cleaning hear";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PET_ADD() {
|
||||||
|
return "§7Now you have a §epet";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PET_REMOVE() {
|
||||||
|
return "§7Du hast nun §ckein §eHaustier §7mehr";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PARKOUR_ON() {
|
||||||
|
return "§7You §ajoined §7the §eparkour mode";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PARKOUR_OFF() {
|
||||||
|
return "§7You §cleft §7the §eparkour mode";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_NAVIGATOR() {
|
||||||
|
return "§eNavigator";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_HIDER_ON() {
|
||||||
|
return "§cHide players";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_HIDER_OFF() {
|
||||||
|
return "§aShow players";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_AUTO_NICK() {
|
||||||
|
return "§5AutoNick";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SILENT_LOBBY() {
|
||||||
|
return "§cSilent-Lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FORCEFIELD() {
|
||||||
|
return "§aForcefield";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FUN_CHEST() {
|
||||||
|
return "§cF§aU§eN§3Chest";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PROFILE() {
|
||||||
|
return "§eYour profile";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_YOUTUBER() {
|
||||||
|
return "§5Youtuber Funktionen";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SUGGESTION() {
|
||||||
|
return "§6Suggestions";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SPAWN() {
|
||||||
|
return "§6Spawn";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PREMIUMHUB() {
|
||||||
|
return "§6Premium Lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_MAYA() {
|
||||||
|
return "§6Maya";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_WOOLGET() {
|
||||||
|
return "§6WoolGet";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_BUILDSERVER() {
|
||||||
|
return "§aBuilding-Server";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYERS_ONLINE() {
|
||||||
|
return " §6players online";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_GADGETS() {
|
||||||
|
return "§6Gadgets";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_MUSIC() {
|
||||||
|
return "§6Music";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PARTICLE() {
|
||||||
|
return "§6Particles";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS() {
|
||||||
|
return "§6Pets";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_YOUR_PET() {
|
||||||
|
return "§6your pet";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_NAME() {
|
||||||
|
return "§6change name";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_AGE() {
|
||||||
|
return "§6change age";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_RIDE() {
|
||||||
|
return "§6ride";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_REMOVE() {
|
||||||
|
return "§6ride pet";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_PIG() {
|
||||||
|
return "§6pig";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_COW() {
|
||||||
|
return "§6cow";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_CHICKEN() {
|
||||||
|
return "§6chicken";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_RABBIT() {
|
||||||
|
return "§6rabbit";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_MUSHROM_COW() {
|
||||||
|
return "§6mushroom-cow";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_MENU() {
|
||||||
|
return " menu";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_FRIEND() {
|
||||||
|
return "§6send freind request";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_PARTY() {
|
||||||
|
return "§6send party request";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_PROFILE() {
|
||||||
|
return "§6Profil";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_STATS() {
|
||||||
|
return "§6stats";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_STATS() {
|
||||||
|
return "§6Deine Statistiken";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FRIENDS() {
|
||||||
|
return "§6friends";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS() {
|
||||||
|
return "§eSettings";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_FASTMENU() {
|
||||||
|
return "§6inventory animations";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_SERVER_TELEPORT() {
|
||||||
|
return "§6Server-Teleport";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_PARTY_REQUESTS() {
|
||||||
|
return "§6party requests";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_FRIEND_REQUESTS() {
|
||||||
|
return "§6friend requests";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_CHATSOUNDS() {
|
||||||
|
return "§6chat sounds";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_EFFECTS() {
|
||||||
|
return "§6effects";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_LANGUAGES() {
|
||||||
|
return "§6languages";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_ON() {
|
||||||
|
return "§aactivated";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_OFF() {
|
||||||
|
return "§cdeactivated";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_BACK() {
|
||||||
|
return "§cback";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_FOUND_SECRETS() {
|
||||||
|
return "§eSecrets§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_COINS() {
|
||||||
|
return "§eYour coins§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_TS() {
|
||||||
|
return "§eTeamSpeak§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_FORUM() {
|
||||||
|
return "§eForum§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_NEW() {
|
||||||
|
return "§e§lJetzt neu:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_NEWS() {
|
||||||
|
return "Scheibenwischer";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,555 @@
|
||||||
|
package eu.univento.core.api.languages;
|
||||||
|
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class Language_IT implements Languages{
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String UNKNOWN_ERROR() {
|
||||||
|
return "§cSi è presentato un errore sconosciuto";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String NO_PERMS() {
|
||||||
|
return "§cNon hai accesso a quel commando";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String ERROR() {
|
||||||
|
return "§cErrore: ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String NOT_ONLINE(String name) {
|
||||||
|
return "§7" + name + " §cnon §7è online";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String KICK_RESTART() {
|
||||||
|
return "§cIl server è stato riavviato";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String KICK_FULL() {
|
||||||
|
return "§cQuesto server è pieno";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String COMMAND_NOT_FOUND() {
|
||||||
|
return "§cNon è stato trovato questo commando";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_OWN() {
|
||||||
|
return "§7Tu sei stato §efissato";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_OTHER(CustomPlayer p) {
|
||||||
|
return "§7Tu hai §efissato " + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_FIX_BY_OTHER(CustomPlayer p) {
|
||||||
|
return "§7Tu sei stato §efissato §7da" + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_NICK_ON() {
|
||||||
|
return "§7Hai ricevuto un §eNickname";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_NICK_OFF() {
|
||||||
|
return "§7Adesso §cnon §7hai più un §eNickname";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BUILD_ON() {
|
||||||
|
return "§7Tu sei §aentrato nel §emodo di costruzione";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BUILD_OFF() {
|
||||||
|
return "§7Tu sei §auscito dal §emodo di costruzione";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_NO_REASON() {
|
||||||
|
return "§cQuesto motivo non esiste";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_USAGE() {
|
||||||
|
return "§cDevi usare /ban <giocatore> <motivo>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_BAN_BANNED(CustomPlayer p) {
|
||||||
|
return "§7Tu hai §ebannato " + p.getColor() + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GM_USAGE() {
|
||||||
|
return "§7Usi §e/gm <0 | 1 | 2 | 3>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GM_CHANGED() {
|
||||||
|
return "§7La tua modalitá del gioco è stata §aaggiornata";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GLOBALMUTE_ON() {
|
||||||
|
return "§7Il server è stato messo §csilenzioso";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_GLOBALMUTE_OFF() {
|
||||||
|
return "§7Il server è stato rimesso §cnormale";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_RUNAS_USAGE() {
|
||||||
|
return "§cUsi /runas <giocatore> <commando>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_RUNAS_RUN(CustomPlayer p) {
|
||||||
|
return p.getColor() + p.getDisplayName() + " §7ha eseguito il tuo commando";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_USAGE() {
|
||||||
|
return "§cUsi /setrank <giocatore> <gruppo>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_KICK() {
|
||||||
|
return "\n§aHai un nuovo gruppo§e\nti prego di rientrare il server§7.";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_NO_RANK() {
|
||||||
|
return "§cQuesto gruppo non esiste";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SETRANK_SET(CustomPlayer p, Perms.Ranks rank) {
|
||||||
|
return "§7Hai dato " + p.getDisplayName() + " il gruppo §e" + rank.toString();
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public String Core_TS_ALLREADY_VERIFIED() {
|
||||||
|
return "§cTu hai già un account verificato";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_TS_VERIFIED() {
|
||||||
|
return "§7Hai verificato il tuo account con §esuccesso";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_VANISH_ON() {
|
||||||
|
return "§7Adesso sei §ainvisibile §7per gli altri";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_VANISH_OFF() {
|
||||||
|
return "§7Adesso sei §crivisibile §7per gli altri";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_SERVER_MUTED() {
|
||||||
|
return "§7Il chat è stato §cmutato";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_CHAT_CLEARED(CustomPlayer p) {
|
||||||
|
return "§7La chat è stato §cpulito §7da " + p.getColor() + p.getDisplayName();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Core_TAB_TITLE() {
|
||||||
|
return "§7Stai giocando su §e";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYERS_HIDE() {
|
||||||
|
return "§7Adesso gli altri sono §cinvisibili §7per te";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYERS_SHOW() {
|
||||||
|
return "§7Adesso gli altri sono §avisibili §7per te";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_AUTONICK_ON() {
|
||||||
|
return "§7Adesso ti viene dato un §esoprannome §7automatico";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_AUTONICK_OFF() {
|
||||||
|
return "§7Adesso §cnon §7ti viene più dato un §esoprannome §7automatico";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FORCEFIELD_ON() {
|
||||||
|
return "§7Hai §7attivato §7il §eforcefield";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FORCEFIELD_OFF() {
|
||||||
|
return "§7Hai §cdisattivato §7il §eforcefield";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SILENT_LOBBY_ON() {
|
||||||
|
return "§7Sei §aentrato §7nella §esilent-lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SILENT_LOBBY_OFF() {
|
||||||
|
return "§7Sei §euscita §7della §esilent-lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PLAYING_MUSIC_PREFIX() {
|
||||||
|
return "§6In riproduzione: ";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_FOUND_ITEM_PREFIX() {
|
||||||
|
return "§7Hai §etrovato §7qualcosa";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_LOCATION() {
|
||||||
|
return "§aPosizione è stata fissata";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_LOCATION_USAGE() {
|
||||||
|
return "§cUsi /setloc <nome>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_DROP_ITEM_USAGE() {
|
||||||
|
return "§cUsi /dropitem <item>";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_DROP_ITEM() {
|
||||||
|
return "§aHai messo un nuovo item qui.";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_SET_SIGN() {
|
||||||
|
return "§aNeues Status Schild erstellt";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_JOIN_TITLE_1() {
|
||||||
|
return "§6univento§7.§eeu";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_JOIN_TITLE_2() {
|
||||||
|
return "§cIo solo pulisco qui";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PET_ADD() {
|
||||||
|
return "§7Adesso hai un §eanimale domestico";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PET_REMOVE() {
|
||||||
|
return "§cNon §7hai più un §eanimale domestico";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PARKOUR_ON() {
|
||||||
|
return "§7Sei §aentrato §7nel §emodo del parkour";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String Lobby_PARKOUR_OFF() {
|
||||||
|
return "§7Sei §cuscito §7del §emodo del parkour";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_NAVIGATOR() {
|
||||||
|
return "§eNavigatore";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_HIDER_ON() {
|
||||||
|
return "§cNascondere i giocatori";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_HIDER_OFF() {
|
||||||
|
return "§aMostrare i giocatori";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_AUTO_NICK() {
|
||||||
|
return "§5AutoNick";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SILENT_LOBBY() {
|
||||||
|
return "§cSilent-Lobby";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FORCEFIELD() {
|
||||||
|
return "§aForcefield";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FUN_CHEST() {
|
||||||
|
return "§cF§aU§eN§3Chest";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PROFILE() {
|
||||||
|
return "§eIl tuo profilo";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_YOUTUBER() {
|
||||||
|
return "§5Altri funzioni";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SUGGESTION() {
|
||||||
|
return "§6Suggestioni";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SPAWN() {
|
||||||
|
return "§6Spawn";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PREMIUMHUB() {
|
||||||
|
return "§6Lobby dei VIP";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_MAYA() {
|
||||||
|
return "§6Maya";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_WOOLGET() {
|
||||||
|
return "§6WoolGet";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_BUILDSERVER() {
|
||||||
|
return "§aServer per costruire";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYERS_ONLINE() {
|
||||||
|
return " §6giocatori sono online";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_GADGETS() {
|
||||||
|
return "§6Gadgets";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_MUSIC() {
|
||||||
|
return "§6Musica";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PARTICLE() {
|
||||||
|
return "§6Particelle";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS() {
|
||||||
|
return "§6Animali domestici";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_YOUR_PET() {
|
||||||
|
return "§6Il tuo animale domestico";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_NAME() {
|
||||||
|
return "§6Cambiare il nome";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_AGE() {
|
||||||
|
return "§6Cambiare l'età";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_RIDE() {
|
||||||
|
return "§6Cavalcarlo";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_REMOVE() {
|
||||||
|
return "§6Cancellarlo";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_PIG() {
|
||||||
|
return "§6Maiale";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_COW() {
|
||||||
|
return "§6Mucca";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_CHICKEN() {
|
||||||
|
return "§6Gallina";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_RABBIT() {
|
||||||
|
return "§6Coniglio";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PETS_MUSHROM_COW() {
|
||||||
|
return "§6Muucelio";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_MENU() {
|
||||||
|
return " menu";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_FRIEND() {
|
||||||
|
return "§6Inviare una richiesta di amicizia";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_PARTY() {
|
||||||
|
return "§6Inviare una richiesta per una party";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_PROFILE() {
|
||||||
|
return "§6Il suo profilo";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_PLAYER_STATS() {
|
||||||
|
return "§6Statistiche";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_STATS() {
|
||||||
|
return "§6Le tue statistiche";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_FRIENDS() {
|
||||||
|
return "§6Amici";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS() {
|
||||||
|
return "§eOpzioni";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_FASTMENU() {
|
||||||
|
return "§6Animazioni dell'inventario";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_SERVER_TELEPORT() {
|
||||||
|
return "§6Server-Teleport";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_PARTY_REQUESTS() {
|
||||||
|
return "§6Richieste per una party";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_FRIEND_REQUESTS() {
|
||||||
|
return "§6Richieste di amicizia";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_CHATSOUNDS() {
|
||||||
|
return "§6Suoni del chat";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_EFFECTS() {
|
||||||
|
return "§6Effetti";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_LANGUAGES() {
|
||||||
|
return "§6Lingue";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_ON() {
|
||||||
|
return "§aattivato";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_SETTINGS_OFF() {
|
||||||
|
return "§cdisattivato";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyItems_BACK() {
|
||||||
|
return "§cindietro";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_FOUND_SECRETS() {
|
||||||
|
return "§eSegreti§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_COINS() {
|
||||||
|
return "§eI tuoi Coins§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_TS() {
|
||||||
|
return "§eTeamSpeak§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_FORUM() {
|
||||||
|
return "§eForum§7:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_NEW() {
|
||||||
|
return "§e§lNovità:";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String LobbyBoard_NEWS() {
|
||||||
|
return "Scheibenwischer";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,125 @@
|
||||||
|
package eu.univento.core.api.languages;
|
||||||
|
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.3
|
||||||
|
*/
|
||||||
|
public interface Languages{
|
||||||
|
|
||||||
|
String UNKNOWN_ERROR();
|
||||||
|
String NO_PERMS();
|
||||||
|
String ERROR();
|
||||||
|
String NOT_ONLINE(String name);
|
||||||
|
String KICK_RESTART();
|
||||||
|
String KICK_FULL();
|
||||||
|
String COMMAND_NOT_FOUND();
|
||||||
|
|
||||||
|
String Core_FIX_OWN();
|
||||||
|
String Core_FIX_OTHER(CustomPlayer p);
|
||||||
|
String Core_FIX_BY_OTHER(CustomPlayer p);
|
||||||
|
String Core_NICK_ON();
|
||||||
|
String Core_NICK_OFF();
|
||||||
|
String Core_BUILD_ON();
|
||||||
|
String Core_BUILD_OFF();
|
||||||
|
String Core_BAN_NO_REASON();
|
||||||
|
String Core_BAN_USAGE();
|
||||||
|
String Core_BAN_BANNED(CustomPlayer p);
|
||||||
|
String Core_GM_USAGE();
|
||||||
|
String Core_GM_CHANGED();
|
||||||
|
String Core_GLOBALMUTE_ON();
|
||||||
|
String Core_GLOBALMUTE_OFF();
|
||||||
|
String Core_RUNAS_USAGE();
|
||||||
|
String Core_RUNAS_RUN(CustomPlayer p);
|
||||||
|
String Core_SETRANK_USAGE();
|
||||||
|
String Core_SETRANK_KICK();
|
||||||
|
String Core_SETRANK_NO_RANK();
|
||||||
|
String Core_SETRANK_SET(CustomPlayer p, Perms.Ranks rank);
|
||||||
|
String Core_TS_ALLREADY_VERIFIED();
|
||||||
|
String Core_TS_VERIFIED();
|
||||||
|
String Core_VANISH_ON();
|
||||||
|
String Core_VANISH_OFF();
|
||||||
|
String Core_SERVER_MUTED();
|
||||||
|
String Core_CHAT_CLEARED(CustomPlayer p);
|
||||||
|
String Core_TAB_TITLE();
|
||||||
|
|
||||||
|
String Lobby_PLAYERS_HIDE();
|
||||||
|
String Lobby_PLAYERS_SHOW();
|
||||||
|
String Lobby_AUTONICK_ON();
|
||||||
|
String Lobby_AUTONICK_OFF();
|
||||||
|
String Lobby_FORCEFIELD_ON();
|
||||||
|
String Lobby_FORCEFIELD_OFF();
|
||||||
|
String Lobby_SILENT_LOBBY_ON();
|
||||||
|
String Lobby_SILENT_LOBBY_OFF();
|
||||||
|
String Lobby_PLAYING_MUSIC_PREFIX();
|
||||||
|
String Lobby_FOUND_ITEM_PREFIX();
|
||||||
|
String Lobby_SET_LOCATION();
|
||||||
|
String Lobby_SET_LOCATION_USAGE();
|
||||||
|
String Lobby_DROP_ITEM_USAGE();
|
||||||
|
String Lobby_DROP_ITEM();
|
||||||
|
String Lobby_SET_SIGN();
|
||||||
|
String Lobby_JOIN_TITLE_1();
|
||||||
|
String Lobby_JOIN_TITLE_2();
|
||||||
|
String Lobby_PET_ADD();
|
||||||
|
String Lobby_PET_REMOVE();
|
||||||
|
String Lobby_PARKOUR_ON();
|
||||||
|
String Lobby_PARKOUR_OFF();
|
||||||
|
|
||||||
|
String LobbyItems_NAVIGATOR();
|
||||||
|
String LobbyItems_PLAYER_HIDER_ON();
|
||||||
|
String LobbyItems_PLAYER_HIDER_OFF();
|
||||||
|
String LobbyItems_AUTO_NICK();
|
||||||
|
String LobbyItems_SILENT_LOBBY();
|
||||||
|
String LobbyItems_FORCEFIELD();
|
||||||
|
String LobbyItems_FUN_CHEST();
|
||||||
|
String LobbyItems_PROFILE();
|
||||||
|
String LobbyItems_YOUTUBER();
|
||||||
|
String LobbyItems_SUGGESTION();
|
||||||
|
String LobbyItems_SPAWN();
|
||||||
|
String LobbyItems_PREMIUMHUB();
|
||||||
|
String LobbyItems_MAYA();
|
||||||
|
String LobbyItems_WOOLGET();
|
||||||
|
String LobbyItems_BUILDSERVER();
|
||||||
|
String LobbyItems_PLAYERS_ONLINE();
|
||||||
|
String LobbyItems_GADGETS();
|
||||||
|
String LobbyItems_MUSIC();
|
||||||
|
String LobbyItems_PARTICLE();
|
||||||
|
String LobbyItems_PETS();
|
||||||
|
String LobbyItems_YOUR_PET();
|
||||||
|
String LobbyItems_PETS_NAME();
|
||||||
|
String LobbyItems_PETS_AGE();
|
||||||
|
String LobbyItems_PETS_RIDE();
|
||||||
|
String LobbyItems_PETS_REMOVE();
|
||||||
|
String LobbyItems_PETS_PIG();
|
||||||
|
String LobbyItems_PETS_COW();
|
||||||
|
String LobbyItems_PETS_CHICKEN();
|
||||||
|
String LobbyItems_PETS_RABBIT();
|
||||||
|
String LobbyItems_PETS_MUSHROM_COW();
|
||||||
|
String LobbyItems_PLAYER_MENU();
|
||||||
|
String LobbyItems_PLAYER_FRIEND();
|
||||||
|
String LobbyItems_PLAYER_PARTY();
|
||||||
|
String LobbyItems_PLAYER_PROFILE();
|
||||||
|
String LobbyItems_PLAYER_STATS();
|
||||||
|
String LobbyItems_STATS();
|
||||||
|
String LobbyItems_FRIENDS();
|
||||||
|
String LobbyItems_SETTINGS();
|
||||||
|
String LobbyItems_SETTINGS_FASTMENU();
|
||||||
|
String LobbyItems_SETTINGS_SERVER_TELEPORT();
|
||||||
|
String LobbyItems_SETTINGS_PARTY_REQUESTS();
|
||||||
|
String LobbyItems_SETTINGS_FRIEND_REQUESTS();
|
||||||
|
String LobbyItems_SETTINGS_CHATSOUNDS();
|
||||||
|
String LobbyItems_SETTINGS_EFFECTS();
|
||||||
|
String LobbyItems_SETTINGS_LANGUAGES();
|
||||||
|
String LobbyItems_SETTINGS_ON();
|
||||||
|
String LobbyItems_SETTINGS_OFF();
|
||||||
|
String LobbyItems_BACK();
|
||||||
|
|
||||||
|
String LobbyBoard_FOUND_SECRETS();
|
||||||
|
String LobbyBoard_COINS();
|
||||||
|
String LobbyBoard_NEW();
|
||||||
|
String LobbyBoard_NEWS();
|
||||||
|
String LobbyBoard_TS();
|
||||||
|
String LobbyBoard_FORUM();
|
||||||
|
}
|
|
@ -0,0 +1,312 @@
|
||||||
|
package eu.univento.core.api.languages;
|
||||||
|
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 2.0
|
||||||
|
*/
|
||||||
|
public class Messages {
|
||||||
|
|
||||||
|
CustomPlayer player;
|
||||||
|
|
||||||
|
Language_DE de = new Language_DE();
|
||||||
|
Language_EN en = new Language_EN();
|
||||||
|
Language_IT it = new Language_IT();
|
||||||
|
|
||||||
|
Languages lang;
|
||||||
|
|
||||||
|
public Messages(CustomPlayer player) {
|
||||||
|
this.player = player;
|
||||||
|
if(player.getLang().equals("DE")) this.lang = de;
|
||||||
|
if(player.getLang().equals("IT")) this.lang = it;
|
||||||
|
if(player.getLang().equals("EN")) this.lang = en;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String PREFIX() {
|
||||||
|
return " §7• §6univento§7.§eeu §7• ";
|
||||||
|
}
|
||||||
|
|
||||||
|
public String UNKNOWN_ERROR() {
|
||||||
|
return lang.UNKNOWN_ERROR();
|
||||||
|
}
|
||||||
|
public String NO_PERMS() {
|
||||||
|
return lang.NO_PERMS();
|
||||||
|
}
|
||||||
|
public String ERROR() {
|
||||||
|
return lang.ERROR();
|
||||||
|
}
|
||||||
|
public String NOT_ONLINE(String name) {
|
||||||
|
return lang.NOT_ONLINE(name);
|
||||||
|
}
|
||||||
|
public String KICK_RESTART() {
|
||||||
|
return lang.KICK_RESTART();
|
||||||
|
}
|
||||||
|
public String KICK_FULL() {
|
||||||
|
return lang.KICK_FULL();
|
||||||
|
}
|
||||||
|
public String COMMAND_NOT_FOUND() {
|
||||||
|
return lang.COMMAND_NOT_FOUND();
|
||||||
|
}
|
||||||
|
|
||||||
|
public String Core_FIX_OWN() {
|
||||||
|
return lang.Core_FIX_OWN();
|
||||||
|
}
|
||||||
|
public String Core_FIX_OTHER(CustomPlayer p) {
|
||||||
|
return lang.Core_FIX_OTHER(p);
|
||||||
|
}
|
||||||
|
public String Core_FIX_BY_OTHER(CustomPlayer p) {
|
||||||
|
return lang.Core_FIX_BY_OTHER(p);
|
||||||
|
}
|
||||||
|
public String Core_NICK_ON() {
|
||||||
|
return lang.Core_NICK_ON();
|
||||||
|
}
|
||||||
|
public String Core_NICK_OFF() {
|
||||||
|
return lang.Core_NICK_OFF();
|
||||||
|
}
|
||||||
|
public String Core_BUILD_ON() {
|
||||||
|
return lang.Core_BUILD_ON();
|
||||||
|
}
|
||||||
|
public String Core_BUILD_OFF() {
|
||||||
|
return lang.Core_BUILD_OFF();
|
||||||
|
}
|
||||||
|
public String Core_BAN_NO_REASON() {
|
||||||
|
return lang.Core_BAN_NO_REASON();
|
||||||
|
}
|
||||||
|
public String Core_BAN_USAGE() {
|
||||||
|
return lang.Core_BAN_USAGE();
|
||||||
|
}
|
||||||
|
public String Core_BAN_BANNED(CustomPlayer p) {
|
||||||
|
return lang.Core_BAN_BANNED(p);
|
||||||
|
}
|
||||||
|
public String Core_GM_USAGE() {
|
||||||
|
return lang.Core_GM_USAGE();
|
||||||
|
}
|
||||||
|
public String Core_GM_CHANGED() {
|
||||||
|
return lang.Core_GM_CHANGED();
|
||||||
|
}
|
||||||
|
public String Core_GLOBALMUTE_ON() {
|
||||||
|
return lang.Core_GLOBALMUTE_ON();
|
||||||
|
}
|
||||||
|
public String Core_GLOBALMUTE_OFF() {
|
||||||
|
return lang.Core_GLOBALMUTE_OFF();
|
||||||
|
}
|
||||||
|
public String Core_RUNAS_USAGE() {
|
||||||
|
return lang.Core_RUNAS_USAGE();
|
||||||
|
}
|
||||||
|
public String Core_RUNAS_RUN(CustomPlayer p) {
|
||||||
|
return lang.Core_RUNAS_RUN(p);
|
||||||
|
}
|
||||||
|
public String Core_SETRANK_USAGE() {
|
||||||
|
return lang.Core_SETRANK_USAGE();
|
||||||
|
}
|
||||||
|
public String Core_SETRANK_KICK() {
|
||||||
|
return lang.Core_SETRANK_KICK();
|
||||||
|
}
|
||||||
|
public String Core_SETRANK_NO_RANK() {
|
||||||
|
return lang.Core_SETRANK_NO_RANK();
|
||||||
|
}
|
||||||
|
public String Core_SETRANK_SET(CustomPlayer p, Perms.Ranks rank) {
|
||||||
|
return lang.Core_SETRANK_SET(p, rank);
|
||||||
|
}
|
||||||
|
public String Core_TS_ALLREADY_VERIFIED() {
|
||||||
|
return lang.Core_TS_ALLREADY_VERIFIED();
|
||||||
|
}
|
||||||
|
public String Core_TS_VERIFIED() {
|
||||||
|
return lang.Core_TS_VERIFIED();
|
||||||
|
}
|
||||||
|
public String Core_VANISH_ON() {
|
||||||
|
return lang.Core_VANISH_ON();
|
||||||
|
}
|
||||||
|
public String Core_VANISH_OFF() {
|
||||||
|
return lang.Core_VANISH_OFF();
|
||||||
|
}
|
||||||
|
public String Core_SERVER_MUTED() {
|
||||||
|
return lang.Core_SERVER_MUTED();
|
||||||
|
}
|
||||||
|
public String Core_CHAT_CLEARED(CustomPlayer p) { return lang.Core_CHAT_CLEARED(p);}
|
||||||
|
public String Core_TAB_TITLE() { return lang.Core_TAB_TITLE(); }
|
||||||
|
|
||||||
|
public String Lobby_PLAYERS_HIDE() {
|
||||||
|
return lang.Lobby_PLAYERS_HIDE();
|
||||||
|
}
|
||||||
|
public String Lobby_PLAYERS_SHOW() {
|
||||||
|
return lang.Lobby_PLAYERS_SHOW();
|
||||||
|
}
|
||||||
|
public String Lobby_AUTONICK_ON() {
|
||||||
|
return lang.Lobby_AUTONICK_ON();
|
||||||
|
}
|
||||||
|
public String Lobby_AUTONICK_OFF() {
|
||||||
|
return lang.Lobby_AUTONICK_OFF();
|
||||||
|
}
|
||||||
|
public String Lobby_FORCEFIELD_ON() {
|
||||||
|
return lang.Lobby_FORCEFIELD_ON();
|
||||||
|
}
|
||||||
|
public String Lobby_FORCEFIELD_OFF() {
|
||||||
|
return lang.Lobby_FORCEFIELD_OFF();
|
||||||
|
}
|
||||||
|
public String Lobby_SILENT_LOBBY_ON() {
|
||||||
|
return lang.Lobby_SILENT_LOBBY_ON();
|
||||||
|
}
|
||||||
|
public String Lobby_SILENT_LOBBY_OFF() {
|
||||||
|
return lang.Lobby_SILENT_LOBBY_OFF();
|
||||||
|
}
|
||||||
|
public String Lobby_PLAYING_MUSIC_PREFIX() {
|
||||||
|
return lang.Lobby_PLAYING_MUSIC_PREFIX();
|
||||||
|
}
|
||||||
|
public String Lobby_FOUND_ITEM_PREFIX() {
|
||||||
|
return lang.Lobby_FOUND_ITEM_PREFIX();
|
||||||
|
}
|
||||||
|
public String Lobby_SET_LOCATION() {
|
||||||
|
return lang.Lobby_SET_LOCATION();
|
||||||
|
}
|
||||||
|
public String Lobby_SET_LOCATION_USAGE() {
|
||||||
|
return lang.Lobby_SET_LOCATION_USAGE();
|
||||||
|
}
|
||||||
|
public String Lobby_DROP_ITEM_USAGE() {
|
||||||
|
return lang.Lobby_DROP_ITEM_USAGE();
|
||||||
|
}
|
||||||
|
public String Lobby_DROP_ITEM() {
|
||||||
|
return lang.Lobby_DROP_ITEM();
|
||||||
|
}
|
||||||
|
public String Lobby_SET_SIGN() {
|
||||||
|
return lang.Lobby_SET_SIGN();
|
||||||
|
}
|
||||||
|
public String Lobby_JOIN_TITLE_1() {
|
||||||
|
return lang.Lobby_JOIN_TITLE_1();
|
||||||
|
}
|
||||||
|
public String Lobby_JOIN_TITLE_2() {
|
||||||
|
return lang.Lobby_JOIN_TITLE_2();
|
||||||
|
}
|
||||||
|
public String Lobby_PET_ADD() {
|
||||||
|
return lang.Lobby_PET_ADD();
|
||||||
|
}
|
||||||
|
public String Lobby_PET_REMOVE() {
|
||||||
|
return lang.Lobby_PET_REMOVE();
|
||||||
|
}
|
||||||
|
public String Lobby_PARKOUR_ON() {
|
||||||
|
return lang.Lobby_PARKOUR_ON();
|
||||||
|
}
|
||||||
|
public String Lobby_PARKOUR_OFF() {
|
||||||
|
return lang.Lobby_PARKOUR_OFF();
|
||||||
|
}
|
||||||
|
|
||||||
|
public String LobbyItems_NAVIGATOR() {
|
||||||
|
return lang.LobbyItems_NAVIGATOR();
|
||||||
|
}
|
||||||
|
public String LobbyItems_PLAYER_HIDER_ON() {
|
||||||
|
return lang.LobbyItems_PLAYER_HIDER_ON();
|
||||||
|
}
|
||||||
|
public String LobbyItems_PLAYER_HIDER_OFF() {
|
||||||
|
return lang.LobbyItems_PLAYER_HIDER_OFF();
|
||||||
|
}
|
||||||
|
public String LobbyItems_AUTO_NICK() {
|
||||||
|
return lang.LobbyItems_AUTO_NICK();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SILENT_LOBBY() {
|
||||||
|
return lang.LobbyItems_SILENT_LOBBY();
|
||||||
|
}
|
||||||
|
public String LobbyItems_FORCEFIELD() {
|
||||||
|
return lang.LobbyItems_FORCEFIELD();
|
||||||
|
}
|
||||||
|
public String LobbyItems_FUN_CHEST() {
|
||||||
|
return lang.LobbyItems_FUN_CHEST();
|
||||||
|
}
|
||||||
|
public String LobbyItems_PROFILE() {
|
||||||
|
return lang.LobbyItems_PROFILE();
|
||||||
|
}
|
||||||
|
public String LobbyItems_YOUTUBER() { return lang.LobbyItems_YOUTUBER(); }
|
||||||
|
public String LobbyItems_SUGGESTION() { return lang.LobbyItems_SUGGESTION(); }
|
||||||
|
public String LobbyItems_SPAWN() {
|
||||||
|
return lang.LobbyItems_SPAWN();
|
||||||
|
}
|
||||||
|
public String LobbyItems_PREMIUMHUB() {
|
||||||
|
return lang.LobbyItems_PREMIUMHUB();
|
||||||
|
}
|
||||||
|
public String LobbyItems_MAYA() {
|
||||||
|
return lang.LobbyItems_MAYA();
|
||||||
|
}
|
||||||
|
public String LobbyItems_WOOLGET() { return lang.LobbyItems_WOOLGET(); }
|
||||||
|
public String LobbyItems_BUILDSERVER() {
|
||||||
|
return lang.LobbyItems_BUILDSERVER();
|
||||||
|
}
|
||||||
|
public String LobbyItems_PLAYERS_ONLINE() {
|
||||||
|
return lang.LobbyItems_PLAYERS_ONLINE();
|
||||||
|
}
|
||||||
|
public String LobbyItems_GADGETS() {
|
||||||
|
return lang.LobbyItems_GADGETS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_MUSIC() {
|
||||||
|
return lang.LobbyItems_MUSIC();
|
||||||
|
}
|
||||||
|
public String LobbyItems_PARTICLE() {
|
||||||
|
return lang.LobbyItems_PARTICLE();
|
||||||
|
}
|
||||||
|
public String LobbyItems_PETS() {
|
||||||
|
return lang.LobbyItems_PETS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_YOUR_PET() { return lang.LobbyItems_YOUR_PET(); }
|
||||||
|
public String LobbyItems_PETS_NAME() { return lang.LobbyItems_PETS_NAME(); }
|
||||||
|
public String LobbyItems_PETS_AGE() { return lang.LobbyItems_PETS_AGE(); }
|
||||||
|
public String LobbyItems_PETS_RIDE() { return lang.LobbyItems_PETS_RIDE(); }
|
||||||
|
public String LobbyItems_PETS_REMOVE() { return lang.LobbyItems_PETS_REMOVE(); }
|
||||||
|
public String LobbyItems_PETS_PIG() { return lang.LobbyItems_PETS_PIG(); }
|
||||||
|
public String LobbyItems_PETS_COW() { return lang.LobbyItems_PETS_COW(); }
|
||||||
|
public String LobbyItems_PETS_CHICKEN() { return lang.LobbyItems_PETS_CHICKEN(); }
|
||||||
|
public String LobbyItems_PETS_RABBIT() { return lang.LobbyItems_PETS_RABBIT(); }
|
||||||
|
public String LobbyItems_PETS_MUSHROM_COW () { return lang.LobbyItems_PETS_MUSHROM_COW(); }
|
||||||
|
public String LobbyItems_PLAYER_MENU() { return lang.LobbyItems_PLAYER_MENU(); }
|
||||||
|
public String LobbyItems_PLAYER_FRIEND() { return lang.LobbyItems_PLAYER_FRIEND(); }
|
||||||
|
public String LobbyItems_PLAYER_PARTY() { return lang.LobbyItems_PLAYER_PARTY(); }
|
||||||
|
public String LobbyItems_PLAYER_PROFILE() { return lang.LobbyItems_PLAYER_PROFILE(); }
|
||||||
|
public String LobbyItems_PLAYER_STATS() { return lang.LobbyItems_PLAYER_STATS();}
|
||||||
|
public String LobbyItems_STATS() {
|
||||||
|
return lang.LobbyItems_STATS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_FRIENDS() {
|
||||||
|
return lang.LobbyItems_FRIENDS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS() {
|
||||||
|
return lang.LobbyItems_SETTINGS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS_FASTMENU() { return lang.LobbyItems_SETTINGS_FASTMENU();}
|
||||||
|
public String LobbyItems_SETTINGS_SERVER_TELEPORT() { return lang.LobbyItems_SETTINGS_SERVER_TELEPORT(); }
|
||||||
|
public String LobbyItems_SETTINGS_PARTY_REQUESTS() {
|
||||||
|
return lang.LobbyItems_SETTINGS_PARTY_REQUESTS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS_FRIEND_REQUESTS() {
|
||||||
|
return lang.LobbyItems_SETTINGS_FRIEND_REQUESTS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS_CHATSOUNDS() {
|
||||||
|
return lang.LobbyItems_SETTINGS_CHATSOUNDS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS_EFFECTS() {
|
||||||
|
return lang.LobbyItems_SETTINGS_EFFECTS();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS_LANGUAGES() {
|
||||||
|
return lang.LobbyItems_SETTINGS_LANGUAGES();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS_ON() {
|
||||||
|
return lang.LobbyItems_SETTINGS_ON();
|
||||||
|
}
|
||||||
|
public String LobbyItems_SETTINGS_OFF() {
|
||||||
|
return lang.LobbyItems_SETTINGS_OFF();
|
||||||
|
}
|
||||||
|
public String LobbyItems_BACK() { return lang.LobbyItems_BACK(); }
|
||||||
|
|
||||||
|
public String LobbyBoard_COINS() { return lang.LobbyBoard_COINS(); }
|
||||||
|
public String LobbyBoard_NEW() { return lang.LobbyBoard_NEW(); }
|
||||||
|
public String LobbyBoard_NEWS() { return lang.LobbyBoard_NEWS(); }
|
||||||
|
public String LobbyBoard_TS() { return lang.LobbyBoard_TS(); }
|
||||||
|
public String LobbyBoard_FORUM() { return lang.LobbyBoard_FORUM(); }
|
||||||
|
public String LobbyBoard_FOUND_SECRETS() { return lang.LobbyBoard_FOUND_SECRETS(); }
|
||||||
|
|
||||||
|
public class Build {
|
||||||
|
public String PREFIX = "• §bTeam§3Vento • ";
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class Console{
|
||||||
|
public static String NOT_A_PLAYER = "You are not a valid player";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,88 @@
|
||||||
|
package eu.univento.core.api.map;
|
||||||
|
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.World;
|
||||||
|
import org.bukkit.configuration.file.FileConfiguration;
|
||||||
|
import org.bukkit.configuration.file.YamlConfiguration;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author RainyCrafter
|
||||||
|
*/
|
||||||
|
public class Region {
|
||||||
|
|
||||||
|
World w;
|
||||||
|
|
||||||
|
int minx;
|
||||||
|
int miny;
|
||||||
|
int minz;
|
||||||
|
|
||||||
|
int maxx;
|
||||||
|
int maxy;
|
||||||
|
int maxz;
|
||||||
|
|
||||||
|
String name;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public Region(Location loc1, Location loc2, String name) {
|
||||||
|
|
||||||
|
w = loc1.getWorld();
|
||||||
|
|
||||||
|
this.name = name;
|
||||||
|
|
||||||
|
minx = Math.min(loc1.getBlockX(), loc2.getBlockX());
|
||||||
|
miny = Math.min(loc1.getBlockY(), loc2.getBlockY());
|
||||||
|
minz = Math.min(loc1.getBlockZ(), loc2.getBlockZ());
|
||||||
|
|
||||||
|
maxx = Math.max(loc1.getBlockX(), loc2.getBlockX());
|
||||||
|
maxy = Math.max(loc1.getBlockY(), loc2.getBlockY());
|
||||||
|
maxz = Math.max(loc1.getBlockZ(), loc2.getBlockZ());
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
public void save(){
|
||||||
|
File file = new File("plugins/Core/regions.yml");
|
||||||
|
FileConfiguration cfg = YamlConfiguration.loadConfiguration(file);
|
||||||
|
|
||||||
|
cfg.set(name+".W", w.getName());
|
||||||
|
|
||||||
|
cfg.set(name+".Min.X", minx);
|
||||||
|
cfg.set(name+".Min.Y", miny);
|
||||||
|
cfg.set(name+".Min.Z", minz);
|
||||||
|
|
||||||
|
cfg.set(name+".Max.X", maxx);
|
||||||
|
cfg.set(name+".Max.Y", maxy);
|
||||||
|
cfg.set(name+".Max.Z", maxz);
|
||||||
|
|
||||||
|
try {
|
||||||
|
cfg.save(file);
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
public boolean between(int w1, int zw, int w2){
|
||||||
|
if(zw >= w1 && zw <= w2){
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isInside(Location loc) {
|
||||||
|
if (loc.getWorld() != w) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (between(minx, loc.getBlockX(), maxx) && between(miny, loc.getBlockY(), maxy) && between(minz, loc.getBlockZ(), maxz)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,98 @@
|
||||||
|
/*
|
||||||
|
* To change this template, choose Tools | Templates
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
package eu.univento.core.api.map;
|
||||||
|
|
||||||
|
import ch.spacebase.opennbt.stream.NBTInputStream;
|
||||||
|
import ch.spacebase.opennbt.tag.*;
|
||||||
|
import eu.univento.core.api.map.Constants.MinecraftSchematicTagNames;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author James
|
||||||
|
*/
|
||||||
|
public class Schematic {
|
||||||
|
|
||||||
|
private CompoundTag _baseTag;
|
||||||
|
private ShortTag _width;
|
||||||
|
private ShortTag _length;
|
||||||
|
private ShortTag _height;
|
||||||
|
private StringTag _materials;
|
||||||
|
private ByteArrayTag _blocks;
|
||||||
|
private ByteArrayTag _blockData;
|
||||||
|
private List<CompoundTag> _entities;
|
||||||
|
private List<CompoundTag> _tileEntities;
|
||||||
|
|
||||||
|
public Schematic(File schematicFile) {
|
||||||
|
_baseTag = getSchematicTagFromNBTFile(schematicFile);
|
||||||
|
|
||||||
|
_width = (ShortTag) _baseTag.get(MinecraftSchematicTagNames.WIDTH);
|
||||||
|
_length = (ShortTag) _baseTag.get(MinecraftSchematicTagNames.LENGTH);
|
||||||
|
_height = (ShortTag) _baseTag.get(MinecraftSchematicTagNames.HEIGHT);
|
||||||
|
_blocks = (ByteArrayTag) _baseTag.get(MinecraftSchematicTagNames.BLOCKS);
|
||||||
|
_blockData = (ByteArrayTag) _baseTag.get(MinecraftSchematicTagNames.DATA);
|
||||||
|
|
||||||
|
_entities = ((ListTag) _baseTag.get(MinecraftSchematicTagNames.ENTITIES)).getValue();
|
||||||
|
_tileEntities = ((ListTag) _baseTag.get(MinecraftSchematicTagNames.TILE_ENTITIES)).getValue();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private static CompoundTag getSchematicTagFromNBTFile(File schematicFile) {
|
||||||
|
CompoundTag schematicTag = null;
|
||||||
|
|
||||||
|
try {
|
||||||
|
FileInputStream stream = new FileInputStream(schematicFile);
|
||||||
|
NBTInputStream nbtStream = new NBTInputStream(stream);
|
||||||
|
|
||||||
|
schematicTag = (CompoundTag) nbtStream.readTag();
|
||||||
|
nbtStream.close();
|
||||||
|
stream.close();
|
||||||
|
} catch (Exception e) {
|
||||||
|
//TODO: LOG ERROR
|
||||||
|
}
|
||||||
|
return schematicTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CompoundTag getBaseTag() {
|
||||||
|
return _baseTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShortTag getWidth() {
|
||||||
|
return _width;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShortTag getLength() {
|
||||||
|
return _length;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ShortTag getHeight() {
|
||||||
|
return _height;
|
||||||
|
}
|
||||||
|
|
||||||
|
public StringTag getMaterials() {
|
||||||
|
return _materials;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ByteArrayTag getBlocks() {
|
||||||
|
return _blocks;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ByteArrayTag getBlockData() {
|
||||||
|
return _blockData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<CompoundTag> getEntities() {
|
||||||
|
return _entities;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<CompoundTag> getTileEntities() {
|
||||||
|
return _tileEntities;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,17 +1,17 @@
|
||||||
package eu.univento.core.api.player;
|
package eu.univento.core.api.player;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.MySQL;
|
import eu.univento.core.api.database.MySQL;
|
||||||
import eu.univento.core.api.utils.NameFetcher;
|
import eu.univento.core.api.utils.NameFetcher;
|
||||||
|
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
|
import java.sql.Timestamp;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import org.bukkit.OfflinePlayer;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* bans and unbans players
|
* bans and unbans players
|
||||||
|
@ -29,18 +29,19 @@ public class BanSystem{
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
* @throws ClassNotFoundException class couldn't be found
|
||||||
*/
|
*/
|
||||||
public static void setBanned(Player p, String reason, Player who, int time)throws SQLException, ClassNotFoundException {
|
static void setBanned(CustomPlayer p, String reason, CustomPlayer who, int time)throws SQLException, ClassNotFoundException {
|
||||||
|
int id = p.getID();
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
String uuid = p.getUniqueId().toString();
|
|
||||||
String whouuid = who.getUniqueId().toString();
|
|
||||||
|
|
||||||
Date date = new Date();
|
Date date = new Date();
|
||||||
date.setTime(date.getTime() + (time + 24));
|
date.setTime(date.getTime() + (time * 24));
|
||||||
|
Timestamp timestamp = new Timestamp(date.getTime());
|
||||||
|
|
||||||
Core.returnSQL().getConnection().createStatement().execute("INSERT INTO bans (player_uuid, Reason, who, time) VALUES ('" + uuid + "', '" + reason + "', '" + whouuid + "', '" + date.getTime() + "');");
|
PreparedStatement st = sql.getConnection().prepareStatement("INSERT INTO bans (BID, Reason, until, BannerID) VALUES ('" + id + "', '" + reason + "', '" + who.getID() + "', '" + timestamp + "');");
|
||||||
p.kickPlayer("§cDu wurdest gebannt. §6Grund: " + reason + "\nDauer: " + time);
|
st.execute();
|
||||||
who.sendMessage("§cDu hast den Spieler " + p.getName() + " für " + time + " Tage gebannt");
|
p.kickPlayer("§cYou have been banned. §6Reason: " + reason + "\nUntil: " + timestamp);
|
||||||
|
who.sendMessage("§cDu hast den Spieler " + p.getColor() + p.getName() + "§c für " + time + " Tage gebannt wegen " + reason);
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,11 +51,12 @@ public static void setBanned(Player p, String reason, Player who, int time)throw
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
* @throws ClassNotFoundException class couldn't be found
|
||||||
*/
|
*/
|
||||||
public static void unban(OfflinePlayer p)throws SQLException, ClassNotFoundException{
|
static void removeAllBans(CustomPlayer p) throws SQLException, ClassNotFoundException{
|
||||||
|
int id = p.getID();
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
String uuid = p.getUniqueId().toString();
|
PreparedStatement st = sql.getConnection().prepareStatement("DELETE FROM bans WHERE ID ='" + id + "';");
|
||||||
Core.returnSQL().getConnection().createStatement().executeUpdate("DELETE FROM bans WHERE player_uuid ='" + uuid + "';");
|
st.execute();
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,16 +67,37 @@ public static void unban(OfflinePlayer p)throws SQLException, ClassNotFoundExcep
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
* @throws ClassNotFoundException class couldn't be found
|
||||||
*/
|
*/
|
||||||
public static boolean isBanned(OfflinePlayer p)throws SQLException, ClassNotFoundException {
|
static boolean isBanned(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
|
int id = p.getID();
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT * FROM bans WHERE ID='" + id + "';");
|
||||||
String uuid = p.getUniqueId().toString();
|
ResultSet rs = st.executeQuery();
|
||||||
ResultSet rs = Core.returnSQL().getConnection().createStatement().executeQuery("SELECT * FROM bans WHERE player_uuid='" + uuid + "';");
|
if(rs.next()) {
|
||||||
|
Date date = new Date();
|
||||||
|
Timestamp time = new Timestamp(date.getTime());
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
return rs.next();
|
return time.before(getBanTime(p));
|
||||||
|
}else {
|
||||||
|
sql.closeConnection();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Timestamp getBanTime(CustomPlayer p) throws SQLException {
|
||||||
|
int id = p.getID();
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT * FROM bans WHERE ID='" + id + "';");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
if(rs.next()) {
|
||||||
|
Timestamp time = rs.getTimestamp("until");
|
||||||
|
sql.closeConnection();
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
sql.closeConnection();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* return reason for ban
|
* return reason for ban
|
||||||
* @param p player
|
* @param p player
|
||||||
|
@ -82,17 +105,20 @@ public static boolean isBanned(OfflinePlayer p)throws SQLException, ClassNotFoun
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
* @throws ClassNotFoundException class couldn't be found
|
||||||
*/
|
*/
|
||||||
public static String getBanReason(OfflinePlayer p)throws SQLException, ClassNotFoundException {
|
static String getBanReason(CustomPlayer p)throws SQLException, ClassNotFoundException {
|
||||||
|
int id = p.getID();
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
String uuid = p.getUniqueId().toString();
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT * FROM bans WHERE ID='" + id + "';");
|
||||||
ResultSet rs = Core.returnSQL().getConnection().createStatement().executeQuery("SELECT * FROM bans WHERE player_uuid='" + uuid + "';");
|
ResultSet rs = st.executeQuery();
|
||||||
if (!rs.next()) {
|
if(rs.next()) {
|
||||||
|
String reason = rs.getString("Reason");
|
||||||
|
sql.closeConnection();
|
||||||
|
return reason;
|
||||||
|
}else {
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
sql.closeConnection();
|
|
||||||
return rs.getString("Reason");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -102,18 +128,18 @@ public static String getBanReason(OfflinePlayer p)throws SQLException, ClassNotF
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
* @throws ClassNotFoundException class couldn't be found
|
||||||
*/
|
*/
|
||||||
public static String getWhoBanned(OfflinePlayer p)throws SQLException, ClassNotFoundException {
|
static String getWhoBanned(CustomPlayer p)throws SQLException, ClassNotFoundException {
|
||||||
|
int id = p.getID();
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
String uuid = p.getUniqueId().toString();
|
ResultSet rs = Core.returnSQL().getConnection().createStatement().executeQuery("SELECT * FROM bans WHERE ID='" + id + "';");
|
||||||
ResultSet rs = Core.returnSQL().getConnection().createStatement().executeQuery("SELECT * FROM bans WHERE player_uuid='" + uuid + "';");
|
|
||||||
if (!rs.next()) {
|
if (!rs.next()) {
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
String whouuid = rs.getString("who");
|
String whouuid = rs.getString("who");
|
||||||
UUID who = UUID.fromString(whouuid);
|
UUID who = UUID.fromString(whouuid);
|
||||||
List<UUID> list = new ArrayList<UUID>();
|
List<UUID> list = new ArrayList<>();
|
||||||
list.add(who);
|
list.add(who);
|
||||||
NameFetcher name = new NameFetcher(list);
|
NameFetcher name = new NameFetcher(list);
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
|
|
|
@ -1,22 +1,29 @@
|
||||||
package eu.univento.core.api.player;
|
package eu.univento.core.api.player;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import com.github.theholywaffle.teamspeak3.api.wrapper.ClientInfo;
|
||||||
import java.sql.SQLException;
|
import eu.univento.core.Core;
|
||||||
import java.util.HashMap;
|
import eu.univento.core.api.Actionbar;
|
||||||
|
import eu.univento.core.api.Utils;
|
||||||
|
import eu.univento.core.api.database.MySQL;
|
||||||
|
import eu.univento.core.api.server.ServerSettings;
|
||||||
|
import eu.univento.core.api.server.Servers;
|
||||||
|
import eu.univento.core.api.utils.NameFetcher;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.Color;
|
||||||
|
import org.bukkit.Sound;
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.CraftServer;
|
import org.bukkit.craftbukkit.v1_8_R3.CraftServer;
|
||||||
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
import org.bukkit.craftbukkit.v1_8_R3.entity.CraftPlayer;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.scoreboard.Team;
|
import org.bukkit.scoreboard.Team;
|
||||||
|
|
||||||
import com.github.theholywaffle.teamspeak3.api.wrapper.ClientInfo;
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
import eu.univento.core.Core;
|
import java.sql.SQLException;
|
||||||
import eu.univento.core.api.MySQL;
|
import java.sql.Timestamp;
|
||||||
import eu.univento.core.api.Servers;
|
import java.util.Arrays;
|
||||||
import eu.univento.core.api.Utils;
|
import java.util.HashMap;
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
import java.util.Map;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* custom player implementation
|
* custom player implementation
|
||||||
|
@ -48,6 +55,16 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
*/
|
*/
|
||||||
private String customColor;
|
private String customColor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* player id from database
|
||||||
|
*/
|
||||||
|
private int id = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* if player has open inventory
|
||||||
|
*/
|
||||||
|
private boolean openInventory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* inits player
|
* inits player
|
||||||
* @param player Player
|
* @param player Player
|
||||||
|
@ -56,6 +73,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
super((CraftServer) Bukkit.getServer(), ((CraftPlayer) player).getHandle());
|
super((CraftServer) Bukkit.getServer(), ((CraftPlayer) player).getHandle());
|
||||||
PLAYERS.put(player.getName().toLowerCase(), this);
|
PLAYERS.put(player.getName().toLowerCase(), this);
|
||||||
PLAYER = player;
|
PLAYER = player;
|
||||||
|
id = getID();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -81,6 +99,47 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets custom player from player
|
||||||
|
* @param player Player
|
||||||
|
* @return CustomPlayer
|
||||||
|
*/
|
||||||
|
public static CustomPlayer getPlayer(Player player) {
|
||||||
|
return getPlayer(player.getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets custom player from database id
|
||||||
|
* @param id database id of player
|
||||||
|
* @return CustomPlayer
|
||||||
|
*/
|
||||||
|
public static CustomPlayer getPlayer(int id) {
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
try {
|
||||||
|
sql.openConnection();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT ID, UUID FROM users WHERE ID='" + id + "');");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
String uuidString = rs.getString("UUID");
|
||||||
|
sql.closeConnection();
|
||||||
|
UUID uuid = UUID.fromString(uuidString);
|
||||||
|
NameFetcher names = new NameFetcher(Arrays.asList(uuid));
|
||||||
|
Map<UUID, String> map = null;
|
||||||
|
try {
|
||||||
|
map = names.call();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
String name = map.toString();
|
||||||
|
String Name = name.substring(name.indexOf('=') + 1, name.indexOf('}'));
|
||||||
|
|
||||||
|
return CustomPlayer.getPlayer(Name);
|
||||||
|
|
||||||
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* get normal player
|
* get normal player
|
||||||
* @return Player
|
* @return Player
|
||||||
|
@ -91,7 +150,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* connects player to server in bungeecord
|
* connects player to server in bungeecord
|
||||||
* @param server Server to connect to
|
* @param server ServerPinger to connect to
|
||||||
*/
|
*/
|
||||||
public void connectToServer(String server) {
|
public void connectToServer(String server) {
|
||||||
Servers.connectServer(PLAYER, server);
|
Servers.connectServer(PLAYER, server);
|
||||||
|
@ -102,7 +161,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* @param rank Ranks
|
* @param rank Ranks
|
||||||
* @return true/false
|
* @return true/false
|
||||||
*/
|
*/
|
||||||
public boolean isAllowed(Ranks rank) {
|
public boolean isAllowed(Perms.Ranks rank) {
|
||||||
try {
|
try {
|
||||||
return Perms.isAllowed(this, rank);
|
return Perms.isAllowed(this, rank);
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
@ -112,24 +171,39 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gets fresh rank of player
|
* rank of player
|
||||||
* @return Ranks
|
* @return Ranks
|
||||||
*/
|
*/
|
||||||
public Ranks getRankFresh() {
|
public Perms.Ranks getRank() {
|
||||||
|
try {
|
||||||
|
return Perms.getRank(this);
|
||||||
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return Perms.Ranks.Player;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Perms.Ranks getFreshRank() {
|
||||||
try{
|
try{
|
||||||
return Perms.getRankFresh(this);
|
return Perms.getRankFresh(this);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
}catch (ClassNotFoundException | SQLException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return null;
|
return Perms.Ranks.Player;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* rank of player
|
* sets rank of this custom player
|
||||||
* @return Ranks
|
* @param r Ranks
|
||||||
*/
|
*/
|
||||||
public Ranks getRank() {
|
public void setRank(Perms.Ranks r) {
|
||||||
return Perms.getRank(this);
|
try {
|
||||||
|
Perms.setRank(this, r);
|
||||||
|
} catch (ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -137,21 +211,18 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public String getPrefix() {
|
public String getPrefix() {
|
||||||
if(customPrefix != null) {
|
if(customPrefix != null) return customPrefix;
|
||||||
return customPrefix;
|
if(isNicked()) return Perms.getPrefix(Perms.Ranks.Premium);
|
||||||
}else {
|
|
||||||
return Perms.getPrefix(getRank());
|
return Perms.getPrefix(getRank());
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* suffix of player
|
* suffix of player
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public String getSuffix() {
|
public String getSuffix() {
|
||||||
if(customSuffix != null) {
|
if(customSuffix != null) return customSuffix;
|
||||||
return customSuffix;
|
if(isNicked()) return Perms.getSuffix(Perms.Ranks.Premium);
|
||||||
}
|
|
||||||
return Perms.getSuffix(getRank());
|
return Perms.getSuffix(getRank());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,12 +231,15 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public String getColor() {
|
public String getColor() {
|
||||||
if(customColor != null) {
|
if(customColor != null) return customColor;
|
||||||
return customColor;
|
if(isNicked()) return Perms.getColor(Perms.Ranks.Premium);
|
||||||
}
|
|
||||||
return Perms.getColor(getRank());
|
return Perms.getColor(getRank());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Color getArmorColor() {
|
||||||
|
return Perms.getArmorColor(getRank());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sets a custom prefix
|
* sets a custom prefix
|
||||||
* @param prefix String
|
* @param prefix String
|
||||||
|
@ -195,19 +269,11 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* @return Team
|
* @return Team
|
||||||
*/
|
*/
|
||||||
public Team getTeam() {
|
public Team getTeam() {
|
||||||
return Perms.getTeam(getRank());
|
Perms.Teams teams = new Perms.Teams(this);
|
||||||
}
|
if(isNicked()) {
|
||||||
|
return teams.Premium;
|
||||||
/**
|
}else {
|
||||||
* if player is muted
|
return Perms.Teams.getTeam(this);
|
||||||
* @return true/false
|
|
||||||
*/
|
|
||||||
public boolean isMuted() {
|
|
||||||
try {
|
|
||||||
return MuteSystem.isMuted(PLAYER);
|
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -219,7 +285,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
*/
|
*/
|
||||||
public void ban(String reason, CustomPlayer who, Integer time) {
|
public void ban(String reason, CustomPlayer who, Integer time) {
|
||||||
try {
|
try {
|
||||||
BanSystem.setBanned(PLAYER, reason, who.getPLAYER(), time);
|
BanSystem.setBanned(this, reason, who, time);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
@ -230,7 +296,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
*/
|
*/
|
||||||
public boolean isBanned() {
|
public boolean isBanned() {
|
||||||
try {
|
try {
|
||||||
return BanSystem.isBanned(PLAYER);
|
return BanSystem.isBanned(this);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
|
@ -243,7 +309,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
*/
|
*/
|
||||||
public String getBanReason() {
|
public String getBanReason() {
|
||||||
try {
|
try {
|
||||||
return BanSystem.getBanReason(PLAYER);
|
return BanSystem.getBanReason(this);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return null;
|
return null;
|
||||||
|
@ -257,19 +323,28 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
*/
|
*/
|
||||||
public String getWhoBanned() {
|
public String getWhoBanned() {
|
||||||
try {
|
try {
|
||||||
return BanSystem.getWhoBanned(PLAYER);
|
return BanSystem.getWhoBanned(this);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Timestamp getBanTime() {
|
||||||
|
try {
|
||||||
|
return BanSystem.getBanTime(this);
|
||||||
|
} catch (SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* unbans the player
|
* unbans the player
|
||||||
*/
|
*/
|
||||||
public void unban() {
|
public void removeAllBans() {
|
||||||
try {
|
try {
|
||||||
BanSystem.unban(PLAYER);
|
BanSystem.removeAllBans(this);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
@ -280,7 +355,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public String getNick() {
|
public String getNick() {
|
||||||
return NickName.getNick(PLAYER);
|
return NickName.getNick(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -288,21 +363,37 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* @return true/false
|
* @return true/false
|
||||||
*/
|
*/
|
||||||
public boolean isNicked() {
|
public boolean isNicked() {
|
||||||
|
if(ServerSettings.isGame()) {
|
||||||
try {
|
try {
|
||||||
return NickName.isNicked(PLAYER);
|
return NickName.isNicked(this);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* checks if player is nicked
|
||||||
|
* @return true/false
|
||||||
|
*/
|
||||||
|
public boolean isNickedReal() {
|
||||||
|
try {
|
||||||
|
return NickName.isNicked(this);
|
||||||
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sets nickname
|
* sets nickname
|
||||||
* @param is boolean
|
* @param is boolean
|
||||||
*/
|
*/
|
||||||
public void setNick(boolean is) {
|
public void setNicked(boolean is) {
|
||||||
try {
|
try {
|
||||||
NickName.setNick(PLAYER, is);
|
NickName.setNick(this, is);
|
||||||
} catch (SQLException | ClassNotFoundException e) {
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
@ -313,7 +404,7 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* @return ClientInfo
|
* @return ClientInfo
|
||||||
*/
|
*/
|
||||||
public ClientInfo getTSClientInfo() {
|
public ClientInfo getTSClientInfo() {
|
||||||
TeamSpeak ts = new TeamSpeak();
|
TeamSpeak ts = Core.getTs();
|
||||||
try {
|
try {
|
||||||
return ts.getClientInfo(ts.getTsId(this));
|
return ts.getClientInfo(ts.getTsId(this));
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
@ -326,14 +417,30 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
* verifys player account on teamspeak
|
* verifys player account on teamspeak
|
||||||
*/
|
*/
|
||||||
public void verifyTs() {
|
public void verifyTs() {
|
||||||
TeamSpeak ts = new TeamSpeak();
|
|
||||||
try {
|
try {
|
||||||
ts.setRank(this);
|
Core.getTs().verify(this);
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void checkVerifiedTs() {
|
||||||
|
try {
|
||||||
|
Core.getTs().checkVerifiyed(this);
|
||||||
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean hasVerifiedTs() {
|
||||||
|
try {
|
||||||
|
return Core.getTs().hasVerified(this);
|
||||||
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* checks if player has played on the network before
|
* checks if player has played on the network before
|
||||||
* @return true/false
|
* @return true/false
|
||||||
|
@ -341,17 +448,18 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
@Override
|
@Override
|
||||||
public boolean hasPlayedBefore() {
|
public boolean hasPlayedBefore() {
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
boolean bool;
|
|
||||||
try {
|
try {
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
String uuid = this.getUniqueId().toString();
|
String uuid = this.getUniqueId().toString();
|
||||||
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT * FROM PlayerData WHERE player_uuid='" + uuid + "';");
|
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT * FROM users WHERE UUID= '" + uuid + "';");
|
||||||
if (rs.next())
|
if (rs.next()) {
|
||||||
bool = true;
|
|
||||||
bool = false;
|
|
||||||
|
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
return bool;
|
return true;
|
||||||
|
}else {
|
||||||
|
sql.closeConnection();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
|
@ -373,4 +481,161 @@ public class CustomPlayer extends CraftPlayer {
|
||||||
Utils.clearPotionEffects(PLAYER);
|
Utils.clearPotionEffects(PLAYER);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets database id of player
|
||||||
|
* @return Integer
|
||||||
|
*/
|
||||||
|
public int getID() {
|
||||||
|
if(id == 0) {
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
try {
|
||||||
|
sql.openConnection();
|
||||||
|
String uuid = this.getUniqueId().toString();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT * FROM users WHERE UUID ='" + uuid + "';");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
if(rs.next()) {
|
||||||
|
int id = rs.getInt("ID");
|
||||||
|
this.id = id;
|
||||||
|
sql.closeConnection();
|
||||||
|
return id;
|
||||||
|
}else {
|
||||||
|
sql.closeConnection();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* checks if players has a open inventory
|
||||||
|
* @return true/false
|
||||||
|
*/
|
||||||
|
public boolean hasOpenInventory() {
|
||||||
|
return openInventory;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets opened inventory
|
||||||
|
* @param openInventory true/false
|
||||||
|
*/
|
||||||
|
public void setOpenInventory(boolean openInventory) {
|
||||||
|
this.openInventory = openInventory;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets coins from player
|
||||||
|
* @return coins as integer
|
||||||
|
*/
|
||||||
|
public int getCoins() {
|
||||||
|
return Coins.getCoins(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets coins if player
|
||||||
|
* @param coins coins as integer
|
||||||
|
*/
|
||||||
|
public void setCoins(int coins) {
|
||||||
|
Coins.setCoins(this, coins);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* adds coins to player coins
|
||||||
|
* @param coins coins as integer
|
||||||
|
*/
|
||||||
|
public void addCoins(int coins) {
|
||||||
|
int temp = Coins.getCoins(this);
|
||||||
|
Coins.setCoins(this, temp + coins);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* substracts coins from player coins
|
||||||
|
* @param coins coins as integer
|
||||||
|
*/
|
||||||
|
public void substractCoins(int coins) {
|
||||||
|
int temp = Coins.getCoins(this);
|
||||||
|
Coins.setCoins(this, temp - coins);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends message with actionbar to player
|
||||||
|
* @param text String
|
||||||
|
*/
|
||||||
|
public void sendActionBar(String text) {
|
||||||
|
Actionbar.send(PLAYER, text);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets experience from player
|
||||||
|
* @return experience experience as integer
|
||||||
|
*/
|
||||||
|
public int getExperience() {
|
||||||
|
return Experience.getExperience(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets experience of player
|
||||||
|
* @param experience experience to set
|
||||||
|
*/
|
||||||
|
public void setExperience(int experience) {
|
||||||
|
Experience.setExperience(this, experience);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* adds experience to player
|
||||||
|
* @param experience experience to add
|
||||||
|
*/
|
||||||
|
public void addExperience(int experience) {
|
||||||
|
int temp = Experience.getExperience(this);
|
||||||
|
Experience.setExperience(this, temp + experience);
|
||||||
|
setExp(0F);
|
||||||
|
giveExp(getExperience());
|
||||||
|
playSound(getLocation(), Sound.LEVEL_UP, 1.0F, 1.0F);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* removes experience from player
|
||||||
|
* @param experience experience to remove
|
||||||
|
*/
|
||||||
|
public void substractExperience(int experience) {
|
||||||
|
int temp = Experience.getExperience(this);
|
||||||
|
Experience.setExperience(this, temp - experience);
|
||||||
|
setExp(0F);
|
||||||
|
giveExp(getExperience());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void refreshExperience() {
|
||||||
|
setLevel(0);
|
||||||
|
setExp(0F);
|
||||||
|
giveExp(getExperience());
|
||||||
|
}
|
||||||
|
//TODO: add other functions for secrets
|
||||||
|
|
||||||
|
public int getFoundSecrets() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getLang() {
|
||||||
|
return PlayerSettings.get("lang", this);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLang(String lang) {
|
||||||
|
PlayerSettings.set(lang, "lang", this);
|
||||||
|
};
|
||||||
|
|
||||||
|
public boolean isSetting(String setting) {
|
||||||
|
return PlayerSettings.isSet(setting, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSetting(String setting) { return PlayerSettings.get(setting, this); }
|
||||||
|
|
||||||
|
public void changeSetting(String setting) {
|
||||||
|
PlayerSettings.change(setting, this);
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,52 +0,0 @@
|
||||||
package eu.univento.core.api.player;
|
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
|
||||||
import java.sql.SQLException;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
|
||||||
import eu.univento.core.api.MySQL;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* querys database for muted players
|
|
||||||
* @author joethei
|
|
||||||
* @version 1.0
|
|
||||||
*/
|
|
||||||
public class MuteSystem {
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* checks if player is muted
|
|
||||||
* @param p player
|
|
||||||
* @return true /false
|
|
||||||
* @throws SQLException SQL server not available or throwing error
|
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
|
||||||
*/
|
|
||||||
public static boolean isMuted(Player p) throws SQLException, ClassNotFoundException {
|
|
||||||
MySQL sql = Core.returnSQL();
|
|
||||||
sql.openConnection();
|
|
||||||
String uuid = p.getUniqueId().toString();
|
|
||||||
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT mute FROM PlayerData WHERE player_uuid='" + uuid + "';");
|
|
||||||
if (rs.next()) {
|
|
||||||
return rs.getInt("mute") == 1;
|
|
||||||
}
|
|
||||||
sql.closeConnection();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* sets / unsets mute
|
|
||||||
* @param p player
|
|
||||||
* @param mute boolean
|
|
||||||
* @throws SQLException SQL server not available or throwing error
|
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
|
||||||
*/
|
|
||||||
public static void setUser(Player p, boolean mute) throws SQLException, ClassNotFoundException {
|
|
||||||
MySQL sql = Core.returnSQL();
|
|
||||||
sql.openConnection();
|
|
||||||
String uuid = p.getUniqueId().toString();
|
|
||||||
sql.getConnection().createStatement().executeUpdate("UPDATE PlayerData SET mute = " + mute + " WHERE player_uuid='" + uuid + "';");
|
|
||||||
sql.closeConnection();
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +1,13 @@
|
||||||
package eu.univento.core.api.player;
|
package eu.univento.core.api.player;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import eu.univento.core.api.database.MySQL;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
|
||||||
import eu.univento.core.api.MySQL;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gets nick settings for players
|
* gets nick settings for players
|
||||||
|
@ -16,13 +16,19 @@ import eu.univento.core.api.MySQL;
|
||||||
*/
|
*/
|
||||||
public class NickName {
|
public class NickName {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* nick names of players
|
||||||
|
*/
|
||||||
|
static HashMap<CustomPlayer, String> nicks = new HashMap<>();
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param p remove nickname from player
|
* @param p remove nickname from player
|
||||||
*/
|
*/
|
||||||
public static void remove(Player p) {
|
public static void remove(CustomPlayer p) {
|
||||||
if (Core.nicks.containsKey(p))
|
if (nicks.containsKey(p))
|
||||||
Core.nicks.remove(p);
|
nicks.remove(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -32,14 +38,13 @@ public class NickName {
|
||||||
* @throws ClassNotFoundException Class couldn't be found
|
* @throws ClassNotFoundException Class couldn't be found
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
*/
|
*/
|
||||||
public static void setNick(Player p, boolean nick) throws SQLException, ClassNotFoundException {
|
static void setNick(CustomPlayer p, boolean nick) throws SQLException, ClassNotFoundException {
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
String uuid = p.getUniqueId().toString();
|
|
||||||
if (nick)
|
if (nick)
|
||||||
sql.getConnection().createStatement().executeUpdate("UPDATE PlayerData SET nick = '1' WHERE player_uuid = '" + uuid + "';");
|
sql.getConnection().createStatement().executeUpdate("UPDATE PlayerSettings SET nick = '1' WHERE ID = '" + p.getID() + "';");
|
||||||
else
|
else
|
||||||
sql.getConnection().createStatement().executeUpdate("UPDATE PlayerData SET nick = '0' WHERE player_uuid = '" + uuid + "';");
|
sql.getConnection().createStatement().executeUpdate("UPDATE PlayerSettings SET nick = '0' WHERE ID = '" + p.getID() + "';");
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -50,11 +55,10 @@ public class NickName {
|
||||||
* @throws ClassNotFoundException Class couldn't be found
|
* @throws ClassNotFoundException Class couldn't be found
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
*/
|
*/
|
||||||
public static boolean isNicked(Player p) throws SQLException, ClassNotFoundException {
|
static boolean isNicked(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
String uuid = p.getUniqueId().toString();
|
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT nick FROM PlayerSettings WHERE ID = '" + p.getID() + "';");
|
||||||
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT nick FROM PlayerData WHERE player_uuid = '" + uuid + "';");
|
|
||||||
if (rs.next()) {
|
if (rs.next()) {
|
||||||
return rs.getInt("nick") == 1;
|
return rs.getInt("nick") == 1;
|
||||||
}
|
}
|
||||||
|
@ -67,10 +71,12 @@ public class NickName {
|
||||||
* @param p player
|
* @param p player
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public static String getNick(Player p) {
|
static String getNick(CustomPlayer p) {
|
||||||
if (Core.nicks.containsKey(p)) {
|
if (nicks.containsKey(p)) {
|
||||||
String nick = (String) Core.nicks.get(p);
|
return nicks.get(p);
|
||||||
return nick;
|
}else if(p.isNicked()){
|
||||||
|
nicks.put(p, getRandomNick());
|
||||||
|
return nicks.get(p);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -78,17 +84,19 @@ public class NickName {
|
||||||
/**
|
/**
|
||||||
* gets random Nickname
|
* gets random Nickname
|
||||||
* @return String
|
* @return String
|
||||||
* @throws SQLException SQL server not available or throwing error
|
|
||||||
*/
|
*/
|
||||||
public static String getNicks() throws SQLException {
|
static String getRandomNick() {
|
||||||
ArrayList<String> names = new ArrayList<String>();
|
ArrayList<String> names = new ArrayList<>();
|
||||||
names.add("XXKevinXX");
|
names.add("XXKevinXX");
|
||||||
names.add("xxGamelcrafterxx");
|
names.add("xxGamelcrafterxx");
|
||||||
names.add("LiaaamDesigns");
|
names.add("LiaaamDesigns");
|
||||||
|
names.add("Firestarter88");
|
||||||
|
names.add("MatelLucario99");
|
||||||
|
names.add("Ghostcraft_No");
|
||||||
|
|
||||||
Random r = new Random();
|
Random r = new Random();
|
||||||
int i = r.nextInt(names.size());
|
int i = r.nextInt(names.size());
|
||||||
|
|
||||||
return (String) names.get(i);
|
return names.get(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,16 +1,16 @@
|
||||||
package eu.univento.core.api.player;
|
package eu.univento.core.api.player;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import eu.univento.core.Core;
|
||||||
import java.sql.SQLException;
|
import eu.univento.core.api.database.MySQL;
|
||||||
import java.util.HashMap;
|
import org.bukkit.Color;
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.scoreboard.NameTagVisibility;
|
import org.bukkit.scoreboard.NameTagVisibility;
|
||||||
import org.bukkit.scoreboard.Scoreboard;
|
import org.bukkit.scoreboard.Scoreboard;
|
||||||
import org.bukkit.scoreboard.Team;
|
import org.bukkit.scoreboard.Team;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.sql.PreparedStatement;
|
||||||
import eu.univento.core.api.MySQL;
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* some permission management
|
* some permission management
|
||||||
|
@ -19,7 +19,14 @@ import eu.univento.core.api.MySQL;
|
||||||
*/
|
*/
|
||||||
public class Perms{
|
public class Perms{
|
||||||
|
|
||||||
private static HashMap<CustomPlayer, Ranks> ranks = new HashMap<CustomPlayer, Ranks>();
|
/**
|
||||||
|
* contains all joined players and there ranks
|
||||||
|
*/
|
||||||
|
private static HashMap<CustomPlayer, Ranks> ranks = new HashMap<>();
|
||||||
|
/**
|
||||||
|
* gets ranks
|
||||||
|
* @return HashMap<CustomPlayer, Ranks>
|
||||||
|
*/
|
||||||
public static HashMap<CustomPlayer, Ranks> getRanks() {
|
public static HashMap<CustomPlayer, Ranks> getRanks() {
|
||||||
return ranks;
|
return ranks;
|
||||||
}
|
}
|
||||||
|
@ -29,18 +36,20 @@ public class Perms{
|
||||||
* @param r Ranks
|
* @param r Ranks
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public static String getPrefix(Ranks r) {
|
static String getPrefix(Ranks r) {
|
||||||
switch(r) {
|
switch(r) {
|
||||||
case Admin: return "§7[§4Admin§7]§4 ";
|
case Admin: return "§8[§4Admin§8]§4 ";
|
||||||
case Developer: return "§7[§3Developer§7]§3 ";
|
case SrDeveloper: return "§8[§3Dev+§8]§3 ";
|
||||||
case Moderator: return "§7[§cModerator§7]§c ";
|
case Developer: return "§8[§3Dev§8]§3 ";
|
||||||
case HeadBuilder: return "§7[§aHead-Builder§7]§a ";
|
case SrModerator: return "§8[§cSrMod§8]§c ";
|
||||||
case Builder: return "§7[§2Builder§7]§2 ";
|
case HeadBuilder: return "§8[§aHead-Builder§8]§a ";
|
||||||
case Supporter: return "§7[§bSupporter§7]§b ";
|
case Moderator: return "§8[§cMod§8]§c ";
|
||||||
case Youtuber: return "§5";
|
case Builder: return "§8[§2Builder§8]§2 ";
|
||||||
case Premium: return "§6";
|
case Supporter: return "§8[§9Supporter§8]§9 ";
|
||||||
case Spieler: return "§7";
|
case Youtuber: return "§5";
|
||||||
default: return "§cFehler ";
|
case Premium: return "§6";
|
||||||
|
case Player: return "§e";
|
||||||
|
default: return "§cFehler ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,18 +58,20 @@ public static String getPrefix(Ranks r) {
|
||||||
* @param r Ranks
|
* @param r Ranks
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public static String getSuffix(Ranks r) {
|
static String getSuffix(Ranks r) {
|
||||||
switch(r) {
|
switch(r) {
|
||||||
case Admin: return " §8» §f§l";
|
case Admin: return "§8 »§7 ";
|
||||||
case Developer: return " §8» §f";
|
case SrDeveloper: return "§8 »§7";
|
||||||
case Moderator: return " §8» §f";
|
case Developer: return "§8 »§7 ";
|
||||||
case HeadBuilder: return " §8» §f";
|
case SrModerator: return "§8 »§7 ";
|
||||||
case Builder: return " §8» §f";
|
case HeadBuilder: return "§8 »§7 ";
|
||||||
case Supporter: return " §8» §f";
|
case Moderator: return "§8 »§7 ";
|
||||||
case Youtuber: return " §8» §f";
|
case Builder: return "§8 »§7 ";
|
||||||
case Premium: return " §8» §f";
|
case Supporter: return "§8 »§7 ";
|
||||||
case Spieler: return " §8» §f";
|
case Youtuber: return "§8 »§7 ";
|
||||||
default: return "§cFehler";
|
case Premium: return "§8 »§7 ";
|
||||||
|
case Player: return "§8 »§7 ";
|
||||||
|
default: return "§cFehler";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -69,100 +80,156 @@ public static String getSuffix(Ranks r) {
|
||||||
* @param r Ranks
|
* @param r Ranks
|
||||||
* @return String
|
* @return String
|
||||||
*/
|
*/
|
||||||
public static String getColor(Ranks r) {
|
static String getColor(Ranks r) {
|
||||||
switch(r) {
|
switch(r) {
|
||||||
case Admin: return "§4";
|
case Admin: return "§4";
|
||||||
case Developer: return "§3";
|
case SrDeveloper: return "§3";
|
||||||
case Moderator: return "§c";
|
case Developer: return "§3";
|
||||||
case HeadBuilder: return "§a";
|
case SrModerator: return "§c";
|
||||||
case Builder: return "§2";
|
case HeadBuilder: return "§a";
|
||||||
case Supporter: return "§b";
|
case Moderator: return "§c";
|
||||||
case Youtuber: return "§5";
|
case Builder: return "§2";
|
||||||
case Premium: return "§6";
|
case Supporter: return "§9";
|
||||||
case Spieler: return "§7";
|
case Youtuber: return "§5";
|
||||||
default: return "§cFehler";
|
case Premium: return "§6";
|
||||||
|
case Player: return "§e";
|
||||||
|
default: return "§cFehler";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
static Color getArmorColor(Ranks r) {
|
||||||
* returns scoreboard team for rank
|
|
||||||
* @param r Ranks
|
|
||||||
* @return Team
|
|
||||||
*/
|
|
||||||
public static Team getTeam(Ranks r) {
|
|
||||||
switch (r) {
|
switch (r) {
|
||||||
case Admin: return Teams.Admin;
|
case Admin: return Color.MAROON;
|
||||||
case Developer: return Teams.Developer;
|
case SrDeveloper: return Color.TEAL;
|
||||||
case Moderator: return Teams.Moderator;
|
case Developer: return Color.TEAL;
|
||||||
case HeadBuilder: return Teams.HeadBuilder;
|
case SrModerator: return Color.RED;
|
||||||
case Builder: return Teams.Builder;
|
case HeadBuilder: return Color.LIME;
|
||||||
case Supporter: return Teams.Supporter;
|
case Moderator: return Color.RED;
|
||||||
case Youtuber: return Teams.Youtuber;
|
case Builder: return Color.GREEN;
|
||||||
case Premium: return Teams.Premium;
|
case Supporter: return Color.PURPLE;
|
||||||
case Spieler: return Teams.Spieler;
|
|
||||||
default: return null;
|
default: return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* contains all scoreboard ranks
|
||||||
* @author joethei
|
* @author joethei
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
public static class Teams {
|
public static class Teams {
|
||||||
private static Scoreboard board = Bukkit.getScoreboardManager().getMainScoreboard();
|
|
||||||
public static Team Admin = board.getTeam("a");
|
CustomPlayer player;
|
||||||
public static Team Developer = board.getTeam("b");
|
public Scoreboard board;
|
||||||
public static Team Moderator = board.getTeam("c");
|
|
||||||
public static Team HeadBuilder = board.getTeam("d");
|
public Team Admin;
|
||||||
public static Team Builder = board.getTeam("e");
|
public Team SrDeveloper;
|
||||||
public static Team Supporter = board.getTeam("f");
|
public Team Developer;
|
||||||
public static Team Youtuber = board.getTeam("g");
|
public Team SrModerator;
|
||||||
public static Team Premium = board.getTeam("h");
|
public Team Moderator;
|
||||||
public static Team Spieler = board.getTeam("i");
|
public Team HeadBuilder;
|
||||||
|
public Team Builder;
|
||||||
|
public Team Supporter;
|
||||||
|
public Team Youtuber;
|
||||||
|
public Team Premium;
|
||||||
|
public Team Player;
|
||||||
|
|
||||||
|
public Teams(CustomPlayer player) {
|
||||||
|
this.player = player;
|
||||||
|
board = player.getScoreboard();
|
||||||
|
Admin = board.getTeam("a");
|
||||||
|
SrDeveloper = board.getTeam("b");
|
||||||
|
Developer = board.getTeam("c");
|
||||||
|
SrModerator = board.getTeam("d");
|
||||||
|
HeadBuilder = board.getTeam("e");
|
||||||
|
Moderator = board.getTeam("f");
|
||||||
|
Builder = board.getTeam("g");
|
||||||
|
Supporter = board.getTeam("h");
|
||||||
|
Youtuber = board.getTeam("i");
|
||||||
|
Premium = board.getTeam("j");
|
||||||
|
Player = board.getTeam("k");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* setsup scoreboards
|
* returns scoreboard team for rank
|
||||||
|
* @param p CustomPlayer
|
||||||
|
* @return Team
|
||||||
*/
|
*/
|
||||||
public static void initScoreboard() {
|
public static Team getTeam(CustomPlayer p) {
|
||||||
Scoreboard board = Bukkit.getScoreboardManager().getMainScoreboard();
|
Teams teams = new Teams(p);
|
||||||
Teams.Admin.unregister();
|
switch(p.getRank()) {
|
||||||
Teams.Developer.unregister();
|
case Admin: return teams.Admin;
|
||||||
Teams.Moderator.unregister();
|
case SrDeveloper: return teams.SrDeveloper;
|
||||||
Teams.HeadBuilder.unregister();
|
case Developer: return teams.Developer;
|
||||||
Teams.Builder.unregister();
|
case SrModerator: return teams.SrModerator;
|
||||||
Teams.Supporter.unregister();
|
case HeadBuilder: return teams.HeadBuilder;
|
||||||
Teams.Youtuber.unregister();
|
case Moderator: return teams.Moderator;
|
||||||
Teams.Premium.unregister();
|
case Builder: return teams.Builder;
|
||||||
Teams.Spieler.unregister();
|
case Supporter: return teams.Supporter;
|
||||||
|
case Youtuber: return teams.Youtuber;
|
||||||
|
case Premium: return teams.Premium;
|
||||||
|
case Player: return teams.Player;
|
||||||
|
default: return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* setup scoreboards
|
||||||
|
*/
|
||||||
|
public static void initScoreboard(CustomPlayer p) {
|
||||||
|
Scoreboard board = p.getScoreboard();
|
||||||
|
board.getTeams().forEach(Team::unregister);
|
||||||
|
|
||||||
Team Admin = board.registerNewTeam("a");
|
Team Admin = board.registerNewTeam("a");
|
||||||
Team Developer = board.registerNewTeam("b");
|
Team SrDeveloper = board.registerNewTeam("b");
|
||||||
Team Moderator = board.registerNewTeam("c");
|
Team Developer = board.registerNewTeam("c");
|
||||||
Team HeadBuilder = board.registerNewTeam("d");
|
Team SrModerator = board.registerNewTeam("d");
|
||||||
Team Builder = board.registerNewTeam("e");
|
Team HeadBuilder = board.registerNewTeam("e");
|
||||||
Team Supporter = board.registerNewTeam("f");
|
Team Moderator = board.registerNewTeam("f");
|
||||||
Team Youtuber = board.registerNewTeam("g");
|
Team Builder = board.registerNewTeam("g");
|
||||||
Team Premium = board.registerNewTeam("h");
|
Team Supporter = board.registerNewTeam("h");
|
||||||
Team Spieler = board.registerNewTeam("i");
|
Team Youtuber = board.registerNewTeam("i");
|
||||||
|
Team Premium = board.registerNewTeam("j");
|
||||||
|
Team Player = board.registerNewTeam("k");
|
||||||
|
|
||||||
Teams.Admin.setPrefix(getColor(Ranks.Admin));
|
Admin.setPrefix(getColor(Ranks.Admin));
|
||||||
Teams.Developer.setPrefix(getColor(Ranks.Developer));
|
SrDeveloper.setPrefix(getColor(Ranks.SrDeveloper));
|
||||||
Teams.Moderator.setPrefix(getColor(Ranks.Moderator));
|
Developer.setPrefix(getColor(Ranks.Developer));
|
||||||
Teams.HeadBuilder.setPrefix(getColor(Ranks.HeadBuilder));
|
SrModerator.setPrefix(getColor(Ranks.SrModerator));
|
||||||
Teams.Builder.setPrefix(getColor(Ranks.Builder));
|
HeadBuilder.setPrefix(getColor(Ranks.HeadBuilder));
|
||||||
Teams.Supporter.setPrefix(getColor(Ranks.Supporter));
|
Moderator.setPrefix(getColor(Ranks.Moderator));
|
||||||
Teams.Youtuber.setPrefix(getColor(Ranks.Youtuber));
|
Builder.setPrefix(getColor(Ranks.Builder));
|
||||||
Teams.Premium.setPrefix(getColor(Ranks.Premium));
|
Supporter.setPrefix(getColor(Ranks.Supporter));
|
||||||
Teams.Spieler.setPrefix(getColor(Ranks.Spieler));
|
Youtuber.setPrefix(getColor(Ranks.Youtuber));
|
||||||
|
Premium.setPrefix(getColor(Ranks.Premium));
|
||||||
|
Player.setPrefix(getColor(Ranks.Player));
|
||||||
|
|
||||||
|
Admin.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
SrDeveloper.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
Developer.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
SrModerator.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
HeadBuilder.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
Moderator.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
Builder.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
Supporter.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
Youtuber.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
Premium.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
|
Player.setNameTagVisibility(NameTagVisibility.ALWAYS);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* gets Rank of player
|
* gets Rank of player
|
||||||
* @param p Player
|
* @param p Player
|
||||||
* @return Ranks
|
* @return Ranks
|
||||||
|
* @throws ClassNotFoundException Class couldn't be found
|
||||||
|
* @throws SQLException SQL server not available or throwing error
|
||||||
*/
|
*/
|
||||||
public static Ranks getRank(CustomPlayer p) {
|
static Ranks getRank(CustomPlayer p) throws ClassNotFoundException, SQLException {
|
||||||
|
if(getRanks().get(p) != null) {
|
||||||
return getRanks().get(p);
|
return getRanks().get(p);
|
||||||
|
}else {
|
||||||
|
return getRankFresh(p);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -172,20 +239,21 @@ public static Ranks getRank(CustomPlayer p) {
|
||||||
* @throws ClassNotFoundException Class couldn't be found
|
* @throws ClassNotFoundException Class couldn't be found
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
*/
|
*/
|
||||||
public static Ranks getRankFresh(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
static Ranks getRankFresh(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT * FROM PlayerData WHERE player_uuid='" + p.getUniqueId() + "'");
|
String uuid = p.getUniqueId().toString();
|
||||||
rs.next();
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT * FROM users WHERE UUID= '" + uuid + "';");
|
||||||
if (rs.getString("player_uuid") != null) {
|
ResultSet rs = st.executeQuery();
|
||||||
|
if(rs.next()) {
|
||||||
String rank = rs.getString("Rank");
|
String rank = rs.getString("Rank");
|
||||||
Ranks Rank = Ranks.valueOf(rank);
|
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
return Rank;
|
return Ranks.valueOf(rank);
|
||||||
}
|
}else {
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sets rank for player
|
* sets rank for player
|
||||||
|
@ -194,10 +262,11 @@ public static Ranks getRankFresh(CustomPlayer p) throws SQLException, ClassNotFo
|
||||||
* @throws ClassNotFoundException Class couldn't be found
|
* @throws ClassNotFoundException Class couldn't be found
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
*/
|
*/
|
||||||
public static void setRank(CustomPlayer p, Ranks r) throws ClassNotFoundException, SQLException {
|
static void setRank(CustomPlayer p, Ranks r) throws ClassNotFoundException, SQLException {
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
sql.getConnection().createStatement().execute("UPDATE PlayerData SET Rank='" + r.toString() + "' WHERE player_uuid='" + p.getUniqueId() + "';");
|
PreparedStatement st = sql.getConnection().prepareStatement("UPDATE users SET Rank='" + r.toString() + "' WHERE ID='" + p.getID() + "';");
|
||||||
|
st.execute();
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,7 +278,7 @@ public static void setRank(CustomPlayer p, Ranks r) throws ClassNotFoundExceptio
|
||||||
* @throws ClassNotFoundException Class couldn't be found
|
* @throws ClassNotFoundException Class couldn't be found
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
*/
|
*/
|
||||||
public static boolean isAllowed(CustomPlayer p, Ranks r) throws ClassNotFoundException, SQLException{
|
static boolean isAllowed(CustomPlayer p, Ranks r) throws ClassNotFoundException, SQLException{
|
||||||
Ranks rank;
|
Ranks rank;
|
||||||
if(getRank(p) == null) {
|
if(getRank(p) == null) {
|
||||||
rank = getRankFresh(p);
|
rank = getRankFresh(p);
|
||||||
|
@ -219,16 +288,23 @@ public static boolean isAllowed(CustomPlayer p, Ranks r) throws ClassNotFoundExc
|
||||||
return rank.value >= r.value;
|
return rank.value >= r.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* contains all ranks
|
||||||
|
* @author joethei
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
public static enum Ranks{
|
public static enum Ranks{
|
||||||
Admin(9),
|
Admin(11),
|
||||||
Developer(8),
|
SrDeveloper(10),
|
||||||
Moderator(7),
|
Developer(9),
|
||||||
HeadBuilder(6),
|
SrModerator(8),
|
||||||
|
HeadBuilder(7),
|
||||||
|
Moderator(6),
|
||||||
Builder(5),
|
Builder(5),
|
||||||
Supporter(4),
|
Supporter(4),
|
||||||
Youtuber(3),
|
Youtuber(3),
|
||||||
Premium(2),
|
Premium(2),
|
||||||
Spieler(1);
|
Player(1);
|
||||||
|
|
||||||
public final int value;
|
public final int value;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,144 @@
|
||||||
|
package eu.univento.core.api.player;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import eu.univento.core.api.database.MySQL;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* server-wide settings
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
|
||||||
|
public class PlayerSettings {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns if setting is set
|
||||||
|
* @param what what setting is set
|
||||||
|
* @param p CustomPlayer
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
static boolean isSet(String what, CustomPlayer p) {
|
||||||
|
int id = p.getID();
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
try {
|
||||||
|
sql.openConnection();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT * FROM PlayerSettings WHERE ID = '" + id + "';");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
if (rs.next()) {
|
||||||
|
boolean is = rs.getInt(what) == 1;
|
||||||
|
sql.closeConnection();
|
||||||
|
return is;
|
||||||
|
}
|
||||||
|
sql.closeConnection();
|
||||||
|
return false;
|
||||||
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets setting
|
||||||
|
* @param p CustomPlayer
|
||||||
|
* @param bool boolean to set to
|
||||||
|
* @param what what to set
|
||||||
|
* @throws ClassNotFoundException class could not be found
|
||||||
|
* @throws SQLException SQL ServerPinger not available or throwing error
|
||||||
|
*/
|
||||||
|
static void set(boolean bool, String what, CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
|
int id = p.getID();
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
sql.openConnection();
|
||||||
|
if (bool) {
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("UPDATE PlayerSettings SET " + what + " = '1' WHERE ID = '" + id + "';");
|
||||||
|
st.execute();
|
||||||
|
}else {
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("UPDATE PlayerSettings SET " + what + " = '0' WHERE ID = '" + id + "';");
|
||||||
|
st.execute();
|
||||||
|
}
|
||||||
|
sql.closeConnection();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets setting from player
|
||||||
|
* @param what what to get
|
||||||
|
* @param p CustomPlayer
|
||||||
|
* @return String
|
||||||
|
*/
|
||||||
|
static String get(String what, CustomPlayer p) {
|
||||||
|
int id = p.getID();
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
try {
|
||||||
|
sql.openConnection();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT " + what + " FROM PlayerSettings WHERE ID='" + id + "';");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
if(rs.next()) {
|
||||||
|
String rt = rs.getString(what);
|
||||||
|
sql.closeConnection();
|
||||||
|
return rt;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets settings for player
|
||||||
|
* @param set value to set
|
||||||
|
* @param what what to set
|
||||||
|
* @param p CustomPlayer
|
||||||
|
*/
|
||||||
|
static void set(String set, String what, CustomPlayer p) {
|
||||||
|
int id = p.getID();
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
try {
|
||||||
|
sql.openConnection();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("UPDATE PlayerSettings SET " + what + " = '" + set + "' WHERE ID = '" + id + "';");
|
||||||
|
st.execute();
|
||||||
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* changes settings
|
||||||
|
* @param what what to set
|
||||||
|
* @param p CustomPlayer
|
||||||
|
*/
|
||||||
|
static void change(String what, CustomPlayer p) {
|
||||||
|
if(isSet(what, p)) {
|
||||||
|
try {
|
||||||
|
set(false, what, p);
|
||||||
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
try {
|
||||||
|
set(true, what, p);
|
||||||
|
} catch (ClassNotFoundException | SQLException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ArrayList<CustomPlayer> getAllPlayersWithEffectsEnabled() {
|
||||||
|
ArrayList<CustomPlayer> list = new ArrayList<>();
|
||||||
|
for(Player players : Bukkit.getOnlinePlayers()) {
|
||||||
|
CustomPlayer p = CustomPlayer.getPlayer(players);
|
||||||
|
if(isSet("effects", p)) {
|
||||||
|
list.add(p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,44 +1,67 @@
|
||||||
package eu.univento.core.api.player;
|
package eu.univento.core.api.player;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import eu.univento.core.api.server.ServerSettings;
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author joethei
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
public class Spectator {
|
public class Spectator {
|
||||||
|
|
||||||
private static ArrayList<CustomPlayer> spectators = new ArrayList<CustomPlayer>();
|
/**
|
||||||
|
* contains all spectators
|
||||||
|
*/
|
||||||
|
private static ArrayList<CustomPlayer> spectators = new ArrayList<>();
|
||||||
|
|
||||||
public Spectator() {
|
/**
|
||||||
}
|
* adds player to spectators
|
||||||
|
* @param p CustomPlayer
|
||||||
public static void add(Player p) {
|
*/
|
||||||
|
public static void add(CustomPlayer p) {
|
||||||
for (Player on : Bukkit.getOnlinePlayers()) {
|
for (Player on : Bukkit.getOnlinePlayers()) {
|
||||||
on.hidePlayer(p);
|
on.hidePlayer(p);
|
||||||
}
|
}
|
||||||
spectators.add(CustomPlayer.getPlayer(p.getName()));
|
spectators.add(p);
|
||||||
p.setGameMode(GameMode.CREATIVE);
|
p.setGameMode(GameMode.ADVENTURE);
|
||||||
p.setAllowFlight(true);
|
p.setAllowFlight(true);
|
||||||
p.setFlying(true);
|
p.setFlying(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void remove(Player p) {
|
/**
|
||||||
|
* removes player from spectator
|
||||||
|
* @param p CustomPlayer
|
||||||
|
*/
|
||||||
|
public static void remove(CustomPlayer p) {
|
||||||
for (Player on : Bukkit.getOnlinePlayers()) {
|
for (Player on : Bukkit.getOnlinePlayers()) {
|
||||||
on.showPlayer(p);
|
on.showPlayer(p);
|
||||||
}
|
}
|
||||||
spectators.remove(CustomPlayer.getPlayer(p.getName()));
|
spectators.remove(p);
|
||||||
p.setGameMode(GameMode.SURVIVAL);
|
p.setGameMode(ServerSettings.getGameMode());
|
||||||
p.setAllowFlight(false);
|
p.setAllowFlight(false);
|
||||||
p.setFlying(false);
|
p.setFlying(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets all spectators
|
||||||
|
* @return ArrayList<CustomPlayer>
|
||||||
|
*/
|
||||||
public static ArrayList<CustomPlayer> getSpectators() {
|
public static ArrayList<CustomPlayer> getSpectators() {
|
||||||
return spectators;
|
return spectators;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* checks if players is spectator
|
||||||
|
* @param p CustomPlayer
|
||||||
|
* @return true/false
|
||||||
|
*/
|
||||||
public static boolean is(CustomPlayer p) {
|
public static boolean is(CustomPlayer p) {
|
||||||
return spectators.contains(p.getName());
|
return spectators.contains(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,19 +1,22 @@
|
||||||
package eu.univento.core.api.player;
|
package eu.univento.core.api.player;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
|
||||||
import java.sql.SQLException;
|
|
||||||
import java.util.logging.Level;
|
|
||||||
|
|
||||||
import com.github.theholywaffle.teamspeak3.TS3Api;
|
import com.github.theholywaffle.teamspeak3.TS3Api;
|
||||||
import com.github.theholywaffle.teamspeak3.TS3Config;
|
import com.github.theholywaffle.teamspeak3.TS3Config;
|
||||||
import com.github.theholywaffle.teamspeak3.TS3Query;
|
import com.github.theholywaffle.teamspeak3.TS3Query;
|
||||||
import com.github.theholywaffle.teamspeak3.api.wrapper.Client;
|
import com.github.theholywaffle.teamspeak3.api.wrapper.Client;
|
||||||
import com.github.theholywaffle.teamspeak3.api.wrapper.ClientInfo;
|
import com.github.theholywaffle.teamspeak3.api.wrapper.ClientInfo;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.Config;
|
import eu.univento.core.api.Config;
|
||||||
import eu.univento.core.api.MySQL;
|
import eu.univento.core.api.database.MySQL;
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.UUID;
|
||||||
|
import java.util.logging.Level;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* basic functions for teamspeak communication
|
* basic functions for teamspeak communication
|
||||||
|
@ -22,12 +25,10 @@ import eu.univento.core.api.player.Perms.Ranks;
|
||||||
*/
|
*/
|
||||||
public class TeamSpeak {
|
public class TeamSpeak {
|
||||||
|
|
||||||
|
private TS3Query query;
|
||||||
private TS3Api api;
|
private TS3Api api;
|
||||||
|
|
||||||
private static int verified = 11;
|
int verified = 11;
|
||||||
public static int getVerifiedId() {
|
|
||||||
return verified;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* inits class
|
* inits class
|
||||||
|
@ -36,22 +37,26 @@ public class TeamSpeak {
|
||||||
final TS3Config config = new TS3Config();
|
final TS3Config config = new TS3Config();
|
||||||
config.setHost(Config.readString("TS.IP"));
|
config.setHost(Config.readString("TS.IP"));
|
||||||
config.setQueryPort(Config.readInt("TS.QueryPort"));
|
config.setQueryPort(Config.readInt("TS.QueryPort"));
|
||||||
config.setDebugLevel(Level.ALL);
|
config.setDebugLevel(Level.OFF);
|
||||||
config.setLoginCredentials(Config.readString("TS.QueryUser"), Config.readString("TS.Query.Pass"));
|
config.setLoginCredentials(Config.readString("TS.QueryUser"), Config.readString("TS.Query.Pass"));
|
||||||
final TS3Query query = new TS3Query(config);
|
final TS3Query query = new TS3Query(config);
|
||||||
query.connect();
|
query.connect();
|
||||||
|
|
||||||
final TS3Api api = query.getApi();
|
final TS3Api api = query.getApi();
|
||||||
api.selectVirtualServerById(1);
|
api.selectVirtualServerById(1);
|
||||||
api.setNickname("Rechteverteiler");
|
api.setNickname("Rechteverteiler von " + Bukkit.getServerName());
|
||||||
this.api = api;
|
this.api = api;
|
||||||
|
this.query = query;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void disconnect() {
|
||||||
|
query.exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gets teamspeak api
|
* gets teamspeak api
|
||||||
* @return TS3Api
|
* @return TS3Api
|
||||||
*/
|
*/
|
||||||
public TS3Api getAPI() {
|
TS3Api getAPI() {
|
||||||
return api;
|
return api;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,7 +65,7 @@ public class TeamSpeak {
|
||||||
* @param id database id
|
* @param id database id
|
||||||
* @return ClientInfo
|
* @return ClientInfo
|
||||||
*/
|
*/
|
||||||
public ClientInfo getClientInfo(int id) {
|
ClientInfo getClientInfo(int id) {
|
||||||
return api.getClientInfo(id);
|
return api.getClientInfo(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,7 +79,8 @@ public class TeamSpeak {
|
||||||
public int getTsId(CustomPlayer p) throws ClassNotFoundException, SQLException {
|
public int getTsId(CustomPlayer p) throws ClassNotFoundException, SQLException {
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
ResultSet rs = sql.getConnection().createStatement().executeQuery("SELECT * FROM PlayerData WHERE player_uuid='" + p.getUniqueId() + "'");
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT TS_ID FROM users WHERE ID='" + p.getID() + "'");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
rs.next();
|
rs.next();
|
||||||
if (rs.getInt("TS_ID") != 0) {
|
if (rs.getInt("TS_ID") != 0) {
|
||||||
int id = rs.getInt("TS_ID");
|
int id = rs.getInt("TS_ID");
|
||||||
|
@ -85,6 +91,20 @@ public class TeamSpeak {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getUUID(int id) throws SQLException, ClassNotFoundException {
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
sql.openConnection();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT UUID FROM users WHERE TS_ID='" + id + "';");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
if(rs.next()) {
|
||||||
|
String uuid = rs.getString("UUID");
|
||||||
|
sql.closeConnection();
|
||||||
|
return uuid;
|
||||||
|
}
|
||||||
|
sql.closeConnection();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* writes id of player to database
|
* writes id of player to database
|
||||||
* @param p CustomPlayer
|
* @param p CustomPlayer
|
||||||
|
@ -92,10 +112,11 @@ public class TeamSpeak {
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
* @throws ClassNotFoundException class couldn't be found
|
||||||
*/
|
*/
|
||||||
private void setTsId(CustomPlayer p, int id) throws ClassNotFoundException, SQLException {
|
void setTsId(CustomPlayer p, int id) throws ClassNotFoundException, SQLException {
|
||||||
MySQL sql = Core.returnSQL();
|
MySQL sql = Core.returnSQL();
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
sql.getConnection().createStatement().execute("UPDATE PlayerData SET TS_ID='" + id + "' WHERE player_uuid='" + p.getUniqueId() + "';");
|
PreparedStatement st = sql.getConnection().prepareStatement("UPDATE users SET TS_ID='" + id + "' WHERE UUID='" + p.getUniqueId().toString() + "';");
|
||||||
|
st.execute();
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,24 +126,64 @@ public class TeamSpeak {
|
||||||
* @throws SQLException SQL server not available or throwing error
|
* @throws SQLException SQL server not available or throwing error
|
||||||
* @throws ClassNotFoundException class couldn't be found
|
* @throws ClassNotFoundException class couldn't be found
|
||||||
*/
|
*/
|
||||||
public void setRank(CustomPlayer p) throws ClassNotFoundException, SQLException {
|
private void setRank(CustomPlayer p, Client client) throws ClassNotFoundException, SQLException {
|
||||||
TS3Api api = getAPI();
|
//for(ServerGroup groups : api.getServerGroupsByClient(client)) {
|
||||||
for(int i = 0; i >= api.getClients().size(); i++) {
|
// api.removeClientFromServerGroup(groups, client);
|
||||||
String player_ip = p.getAddress().getHostName();
|
//}
|
||||||
Client client = api.getClients().get(i);
|
|
||||||
ClientInfo info = api.getClientInfo(client.getId());
|
|
||||||
String ts_ip = info.getIp();
|
|
||||||
if(player_ip == ts_ip) {
|
|
||||||
int db_id = getTsId(p);
|
|
||||||
if(db_id == 0) {
|
|
||||||
api.removeClientFromServerGroup(getIdForRank(p.getRank()), db_id);
|
|
||||||
api.removeClientFromServerGroup(getVerifiedId(), db_id);
|
|
||||||
}
|
|
||||||
api.addClientToServerGroup(getIdForRank(p.getRank()), client.getDatabaseId());
|
api.addClientToServerGroup(getIdForRank(p.getRank()), client.getDatabaseId());
|
||||||
api.addClientToServerGroup(getVerifiedId(), client.getDatabaseId());
|
api.addClientToServerGroup(verified, client.getDatabaseId());
|
||||||
setTsId(p, client.getDatabaseId());
|
api.pokeClient(client.getId(), "Du wurdest von unserem freundlichem Bot verifiziert");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void verify(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
|
TS3Api api = getAPI();
|
||||||
|
if(hasVerified(p)) {
|
||||||
|
p.sendMessage("§cDu hast bereits einen verknüpften Account");
|
||||||
|
}else {
|
||||||
|
Client client = api.getClientByNameExact(p.getName(), false);
|
||||||
|
if(client != null) {
|
||||||
|
setRank(p, client);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
p.sendMessage("§cDu bist gerade nicht im TS online oder dein Nickname entspricht nicht dem IGN");
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Client getClient(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
|
if(hasVerified(p)) {
|
||||||
|
int id = getTsId(p);
|
||||||
|
for (Client client : api.getClients()) {
|
||||||
|
if (client.getDatabaseId() == id) {
|
||||||
|
return client;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private CustomPlayer getPlayer(Client client) throws SQLException, ClassNotFoundException {
|
||||||
|
Player player = Bukkit.getPlayer(UUID.fromString(getUUID(client.getDatabaseId())));
|
||||||
|
return CustomPlayer.getPlayer(player);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void checkVerifiyed(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
|
if(hasVerified(p)) {
|
||||||
|
Client client = getClient(p);
|
||||||
|
if(client != null) {
|
||||||
|
//for(ServerGroup group : api.getServerGroupsByClient(client)) {
|
||||||
|
// if(group.getId() == getIdForRank(p.getRank())) {
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
// setRank(p, client);
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean hasVerified(CustomPlayer p) throws SQLException, ClassNotFoundException {
|
||||||
|
return getTsId(p) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -134,13 +195,14 @@ public class TeamSpeak {
|
||||||
switch(r) {
|
switch(r) {
|
||||||
case Admin: return 10;
|
case Admin: return 10;
|
||||||
case Developer: return 13;
|
case Developer: return 13;
|
||||||
|
case SrModerator: return 60;
|
||||||
case Moderator: return 12;
|
case Moderator: return 12;
|
||||||
case HeadBuilder: return 19;
|
case HeadBuilder: return 19;
|
||||||
case Builder: return 20;
|
case Builder: return 20;
|
||||||
case Supporter: return 14;
|
case Supporter: return 14;
|
||||||
case Youtuber: return 21;
|
case Youtuber: return 21;
|
||||||
case Premium: return 22;
|
case Premium: return 22;
|
||||||
case Spieler: return 42;
|
case Player: return 8;
|
||||||
default: return 0;
|
default: return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
package eu.univento.core.api.server;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class GameInfo {
|
||||||
|
|
||||||
|
Game game;
|
||||||
|
|
||||||
|
public GameInfo(Game game) {
|
||||||
|
this.game = game;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPlayerCount() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getServerCount() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ServerInfo[] getServers() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,24 +1,24 @@
|
||||||
package eu.univento.core.api;
|
package eu.univento.core.api.server;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStreamReader;
|
|
||||||
import java.net.URL;
|
|
||||||
|
|
||||||
import org.bukkit.ChatColor;
|
import org.bukkit.ChatColor;
|
||||||
import org.json.simple.JSONObject;
|
import org.json.simple.JSONObject;
|
||||||
import org.json.simple.parser.JSONParser;
|
import org.json.simple.parser.JSONParser;
|
||||||
import org.json.simple.parser.ParseException;
|
import org.json.simple.parser.ParseException;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.net.URL;
|
||||||
|
|
||||||
public enum MojangService {
|
public enum MojangService {
|
||||||
|
|
||||||
ACCOUNTS("Accounts Service", "account.mojang.com"),
|
ACCOUNTS("Accounts Service", "account.mojang.com"),
|
||||||
AUTHENTICATION("Authentication Service", "auth.mojang.com"),
|
AUTHENTICATION("Authentication Service", "auth.mojang.com"),
|
||||||
AUTHENTICATION_SERVER("Authentication Server", "authserver.mojang.com"),
|
AUTHENTICATION_SERVER("Authentication ServerPinger", "authserver.mojang.com"),
|
||||||
LOGIN("Login Service", "login.minecraft.net"),
|
LOGIN("Login Service", "login.minecraft.net"),
|
||||||
SESSION_MINECRAFT("Minecraft Session Server", "session.minecraft.net"),
|
SESSION_MINECRAFT("Minecraft Session ServerPinger", "session.minecraft.net"),
|
||||||
SESSION_MOJANG("Mojang Session Server", "sessionserver.mojang.com"),
|
SESSION_MOJANG("Mojang Session ServerPinger", "sessionserver.mojang.com"),
|
||||||
SKINS("Skin Server", "skins.minecraft.net"),
|
SKINS("Skin ServerPinger", "skins.minecraft.net"),
|
||||||
MAIN_WEBSITE("Main Site", "minecraft.net");
|
MAIN_WEBSITE("Main Site", "minecraft.net");
|
||||||
|
|
||||||
/*
|
/*
|
|
@ -0,0 +1,51 @@
|
||||||
|
package eu.univento.core.api.server;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import eu.univento.core.api.database.MySQL;
|
||||||
|
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class ServerDatabase {
|
||||||
|
|
||||||
|
public static String getIP(String name) {
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
try {
|
||||||
|
sql.openConnection();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT ip FROM Servers WHERE name='" + name + "'");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
if(rs.next()) {
|
||||||
|
String ip = rs.getString("ip");
|
||||||
|
sql.closeConnection();
|
||||||
|
return ip;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int getPort(String name) {
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
|
try {
|
||||||
|
sql.openConnection();
|
||||||
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT port FROM Servers WHERE name='" + name + "'");
|
||||||
|
ResultSet rs = st.executeQuery();
|
||||||
|
if(rs.next()) {
|
||||||
|
int port = rs.getInt("port");
|
||||||
|
sql.closeConnection();
|
||||||
|
return port;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
} catch (SQLException | ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,46 @@
|
||||||
|
package eu.univento.core.api.server;
|
||||||
|
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class ServerInfo {
|
||||||
|
|
||||||
|
String name;
|
||||||
|
ServerPinger pinger;
|
||||||
|
|
||||||
|
public ServerInfo(String name) {
|
||||||
|
this.name = name;
|
||||||
|
pinger = new ServerPinger(name, 200);
|
||||||
|
pinger.ping();
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Game getGame() {
|
||||||
|
String[] parts = getMotd().split(Pattern.quote(";"));
|
||||||
|
return Game.valueOf(parts[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getGameState() {
|
||||||
|
String[] parts = getMotd().split(Pattern.quote(";"));
|
||||||
|
return parts[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getOnlinePlayers() {
|
||||||
|
return pinger.getPlayerCount();
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getMaxPlayers() {
|
||||||
|
return pinger.getMaxPlayers();
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMotd() {
|
||||||
|
return pinger.getMotd();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,164 @@
|
||||||
|
package eu.univento.core.api.server;
|
||||||
|
|
||||||
|
import java.io.*;
|
||||||
|
import java.net.InetSocketAddress;
|
||||||
|
import java.net.Socket;
|
||||||
|
import java.net.SocketException;
|
||||||
|
import java.nio.charset.Charset;
|
||||||
|
|
||||||
|
public class ServerPinger {
|
||||||
|
|
||||||
|
private String address;
|
||||||
|
private int port;
|
||||||
|
private int timeout;
|
||||||
|
|
||||||
|
private boolean online;
|
||||||
|
private int playercount;
|
||||||
|
private int maxplayers;
|
||||||
|
private String motd;
|
||||||
|
|
||||||
|
public ServerPinger(String name, int timeout){
|
||||||
|
this.address = ServerDatabase.getIP(name);
|
||||||
|
this.port = ServerDatabase.getPort(name);
|
||||||
|
this.timeout = timeout;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAddress(){
|
||||||
|
return this.address;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAddress(String address){
|
||||||
|
this.address = address;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPort(){
|
||||||
|
return this.port;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPort(int port){
|
||||||
|
this.port = port;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getTimeout(){
|
||||||
|
return this.timeout;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTimeout(int timeout){
|
||||||
|
this.timeout = timeout;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isOnline(){
|
||||||
|
return this.online;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setOnline(boolean online){
|
||||||
|
this.online = online;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPlayerCount(){
|
||||||
|
return this.playercount;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setPlayerCount(int playercount){
|
||||||
|
this.playercount = playercount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getMaxPlayers(){
|
||||||
|
return this.maxplayers;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setMaxPlayers(int maxplayers){
|
||||||
|
this.maxplayers = maxplayers;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMotd(){
|
||||||
|
return this.motd;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setMotd(String motd){
|
||||||
|
this.motd = motd;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ping(){
|
||||||
|
try{
|
||||||
|
Socket socket = new Socket();
|
||||||
|
OutputStream outputStream;
|
||||||
|
DataOutputStream dataOutputStream;
|
||||||
|
InputStream inputStream;
|
||||||
|
InputStreamReader inputStreamReader;
|
||||||
|
socket.setSoTimeout(this.timeout);
|
||||||
|
socket.connect(new InetSocketAddress(this.getAddress(), this.getPort()), this.getTimeout());
|
||||||
|
outputStream = socket.getOutputStream();
|
||||||
|
dataOutputStream = new DataOutputStream(outputStream);
|
||||||
|
inputStream = socket.getInputStream();
|
||||||
|
inputStreamReader = new InputStreamReader(inputStream, Charset.forName("UTF-16BE"));
|
||||||
|
dataOutputStream.write(new byte[]{(byte) 0xFE,(byte) 0x01});
|
||||||
|
int packetId = inputStream.read();
|
||||||
|
if(packetId == -1){
|
||||||
|
dataOutputStream.close();
|
||||||
|
outputStream.close();
|
||||||
|
inputStreamReader.close();
|
||||||
|
inputStream.close();
|
||||||
|
socket.close();
|
||||||
|
throw new IOException("Premature end of stream.");
|
||||||
|
}
|
||||||
|
if(packetId != 0xFF){
|
||||||
|
dataOutputStream.close();
|
||||||
|
outputStream.close();
|
||||||
|
inputStreamReader.close();
|
||||||
|
inputStream.close();
|
||||||
|
socket.close();
|
||||||
|
throw new IOException("Invalid packet ID (" + packetId + ").");
|
||||||
|
}
|
||||||
|
int length = inputStreamReader.read();
|
||||||
|
if(length == -1){
|
||||||
|
dataOutputStream.close();
|
||||||
|
outputStream.close();
|
||||||
|
inputStreamReader.close();
|
||||||
|
inputStream.close();
|
||||||
|
socket.close();
|
||||||
|
throw new IOException("Premature end of stream.");
|
||||||
|
}
|
||||||
|
if(length == 0){
|
||||||
|
dataOutputStream.close();
|
||||||
|
outputStream.close();
|
||||||
|
inputStreamReader.close();
|
||||||
|
inputStream.close();
|
||||||
|
socket.close();
|
||||||
|
throw new IOException("Invalid string length.");
|
||||||
|
}
|
||||||
|
char[] chars = new char[length];
|
||||||
|
if(inputStreamReader.read(chars,0,length) != length){
|
||||||
|
dataOutputStream.close();
|
||||||
|
outputStream.close();
|
||||||
|
inputStreamReader.close();
|
||||||
|
inputStream.close();
|
||||||
|
socket.close();
|
||||||
|
throw new IOException("Premature end of stream.");
|
||||||
|
}
|
||||||
|
String string = new String(chars);
|
||||||
|
if(string.startsWith("§")){
|
||||||
|
String[] data = string.split("\0");
|
||||||
|
this.setMotd(data[3]);
|
||||||
|
this.setPlayerCount(Integer.parseInt(data[4]));
|
||||||
|
this.setMaxPlayers(Integer.parseInt(data[5]));
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
String[] data = string.split("§");
|
||||||
|
this.setMotd(data[0]);
|
||||||
|
this.setPlayerCount(Integer.parseInt(data[1]));
|
||||||
|
this.setMaxPlayers(Integer.parseInt(data[2]));
|
||||||
|
}
|
||||||
|
dataOutputStream.close();
|
||||||
|
outputStream.close();
|
||||||
|
inputStreamReader.close();
|
||||||
|
inputStream.close();
|
||||||
|
socket.close();
|
||||||
|
} catch (SocketException exception) {
|
||||||
|
this.setOnline(false);
|
||||||
|
} catch (IOException exception) {
|
||||||
|
this.setOnline(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,74 @@
|
||||||
|
package eu.univento.core.api.server;
|
||||||
|
|
||||||
|
import org.bukkit.GameMode;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 0.1
|
||||||
|
*/
|
||||||
|
public class ServerSettings {
|
||||||
|
|
||||||
|
private static boolean build;
|
||||||
|
private static boolean lobby;
|
||||||
|
private static boolean debug;
|
||||||
|
private static boolean mute;
|
||||||
|
private static boolean game;
|
||||||
|
private static Game playedGame;
|
||||||
|
private static GameMode gameMode;
|
||||||
|
|
||||||
|
public static Game getPlayedGameGame() {
|
||||||
|
return playedGame;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setPlayedGame(Game game) {
|
||||||
|
ServerSettings.playedGame = game;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GameMode getGameMode() {
|
||||||
|
return gameMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setGameMode(GameMode gameMode) {
|
||||||
|
ServerSettings.gameMode = gameMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isGame() {
|
||||||
|
return game;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setGame(boolean game) {
|
||||||
|
ServerSettings.game = game;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isBuild() {
|
||||||
|
return build;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setBuild(boolean build) {
|
||||||
|
ServerSettings.build = build;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isLobby() {
|
||||||
|
return lobby;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setLobby(boolean lobby) {
|
||||||
|
ServerSettings.lobby = lobby;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isDebug() {
|
||||||
|
return debug;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setDebug(boolean debug) {
|
||||||
|
ServerSettings.debug = debug;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isMute() {
|
||||||
|
return mute;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setMute(boolean mute) {
|
||||||
|
ServerSettings.mute = mute;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,44 @@
|
||||||
|
package eu.univento.core.api.server;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.DataOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends player to other bungeecord servers
|
||||||
|
* @author joethei
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
|
public class Servers {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends player to server
|
||||||
|
* @param p player
|
||||||
|
* @param server name of server
|
||||||
|
*/
|
||||||
|
public static void connectServer(Player p, String server) {
|
||||||
|
ByteArrayOutputStream b = new ByteArrayOutputStream();
|
||||||
|
DataOutputStream out = new DataOutputStream(b);
|
||||||
|
try {
|
||||||
|
out.writeUTF("Connect");
|
||||||
|
out.writeUTF(server);
|
||||||
|
} catch (IOException el) {
|
||||||
|
el.printStackTrace();
|
||||||
|
}
|
||||||
|
p.sendPluginMessage(Core.getInstance(), "BungeeCord", b.toByteArray());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* connects all player to server
|
||||||
|
* @param server name of server
|
||||||
|
*/
|
||||||
|
public static void connectAllToServer(String server) {
|
||||||
|
for (Player all : Bukkit.getOnlinePlayers())
|
||||||
|
connectServer(all, server);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,11 +1,9 @@
|
||||||
package eu.univento.core.api.twitch;
|
package eu.univento.core.api.twitch;
|
||||||
|
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
|
||||||
|
|
||||||
public class API {
|
public class API {
|
||||||
public static String readJsonFromUrl(String urlString) throws Exception {
|
public static String readJsonFromUrl(String urlString) throws Exception {
|
||||||
BufferedReader reader = null;
|
BufferedReader reader = null;
|
||||||
|
@ -18,7 +16,6 @@ char[] chars = new char[1024];
|
||||||
while ((read = reader.read(chars)) != -1)
|
while ((read = reader.read(chars)) != -1)
|
||||||
buffer.append(chars, 0, read);
|
buffer.append(chars, 0, read);
|
||||||
|
|
||||||
|
|
||||||
return buffer.toString();
|
return buffer.toString();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null)
|
if (reader != null)
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package eu.univento.core.api.twitch;
|
package eu.univento.core.api.twitch;
|
||||||
|
|
||||||
import com.google.gson.JsonElement;
|
|
||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
|
|
||||||
public class Twitch_Stream {
|
public class Twitch_Stream {
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
package eu.univento.core.api.utils;
|
package eu.univento.core.api.utils;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
|
@ -7,10 +11,6 @@ import java.lang.reflect.Method;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author mgone2010
|
* @author mgone2010
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
package eu.univento.core.api.utils;
|
package eu.univento.core.api.utils;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
|
@ -8,10 +12,6 @@ import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.ThreadLocalRandom;
|
import java.util.concurrent.ThreadLocalRandom;
|
||||||
|
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.Location;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author mgone2010
|
* @author mgone2010
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,21 +1,14 @@
|
||||||
package eu.univento.core.api.utils;
|
package eu.univento.core.api.utils;
|
||||||
|
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.*;
|
||||||
import com.google.gson.GsonBuilder;
|
|
||||||
import com.google.gson.JsonDeserializationContext;
|
|
||||||
import com.google.gson.JsonDeserializer;
|
|
||||||
import com.google.gson.JsonElement;
|
|
||||||
import com.google.gson.JsonObject;
|
|
||||||
import com.google.gson.JsonParseException;
|
|
||||||
import com.google.gson.JsonParser;
|
|
||||||
import com.google.gson.JsonSerializationContext;
|
|
||||||
import com.google.gson.JsonSerializer;
|
|
||||||
import com.mojang.authlib.GameProfile;
|
import com.mojang.authlib.GameProfile;
|
||||||
import com.mojang.authlib.properties.Property;
|
import com.mojang.authlib.properties.Property;
|
||||||
import com.mojang.authlib.properties.PropertyMap;
|
import com.mojang.authlib.properties.PropertyMap;
|
||||||
import com.mojang.util.UUIDTypeAdapter;
|
import com.mojang.util.UUIDTypeAdapter;
|
||||||
|
import org.yaml.snakeyaml.external.biz.base64Coder.Base64Coder;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
|
import java.io.IOException;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.lang.reflect.Type;
|
import java.lang.reflect.Type;
|
||||||
import java.net.HttpURLConnection;
|
import java.net.HttpURLConnection;
|
||||||
|
@ -23,109 +16,128 @@ import java.net.URL;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map.Entry;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import org.yaml.snakeyaml.external.biz.base64Coder.Base64Coder;
|
|
||||||
|
|
||||||
public class GameProfileBuilder
|
/**
|
||||||
{
|
* @author Jofkos
|
||||||
private HashMap<UUID, CachedProfile> cache = new HashMap<UUID, CachedProfile>();
|
*/
|
||||||
private Gson gson;
|
public class GameProfileBuilder {
|
||||||
|
|
||||||
public GameProfileBuilder()
|
private static final String SERVICE_URL = "https://sessionserver.mojang.com/session/minecraft/profile/%s?unsigned=false";
|
||||||
{
|
private static final String JSON_SKIN = "{\"timestamp\":%d,\"profileId\":\"%s\",\"profileName\":\"%s\",\"isPublic\":true,\"textures\":{\"SKIN\":{\"url\":\"%s\"}}}";
|
||||||
GsonBuilder builder = new GsonBuilder().disableHtmlEscaping();
|
private static final String JSON_CAPE = "{\"timestamp\":%d,\"profileId\":\"%s\",\"profileName\":\"%s\",\"isPublic\":true,\"textures\":{\"SKIN\":{\"url\":\"%s\"},\"CAPE\":{\"url\":\"%s\"}}}";
|
||||||
|
|
||||||
builder.registerTypeAdapter(UUID.class, new UUIDTypeAdapter());
|
private static Gson gson = new GsonBuilder().disableHtmlEscaping().registerTypeAdapter(UUID.class, new UUIDTypeAdapter()).registerTypeAdapter(GameProfile.class, new GameProfileSerializer()).registerTypeAdapter(PropertyMap.class, new PropertyMap.Serializer()).create();
|
||||||
builder.registerTypeAdapter(GameProfile.class, new GameProfileSerializer());
|
|
||||||
builder.registerTypeAdapter(PropertyMap.class, new PropertyMap.Serializer());
|
|
||||||
|
|
||||||
this.gson = builder.create();
|
private static HashMap<UUID, CachedProfile> cache = new HashMap<>();
|
||||||
}
|
|
||||||
|
|
||||||
public GameProfile fetch(UUID uuid) throws Exception {
|
private static long cacheTime = -1;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Don't run in main thread!
|
||||||
|
*
|
||||||
|
* Fetches the GameProfile from the Mojang servers
|
||||||
|
*
|
||||||
|
* @param uuid The player uuid
|
||||||
|
* @return The GameProfile
|
||||||
|
* @throws IOException If something wents wrong while fetching
|
||||||
|
* @see GameProfile
|
||||||
|
*/
|
||||||
|
public static GameProfile fetch(UUID uuid) throws IOException {
|
||||||
return fetch(uuid, false);
|
return fetch(uuid, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public GameProfile fetch(UUID uuid, boolean forceNew) throws Exception {
|
/**
|
||||||
if ((!forceNew) && (this.cache.containsKey(uuid)) && (this.cache.get(uuid).isValid())) {
|
* Don't run in main thread!
|
||||||
return this.cache.get(uuid).profile;
|
*
|
||||||
}
|
* Fetches the GameProfile from the Mojang servers
|
||||||
HttpURLConnection connection = (HttpURLConnection)new URL(String.format("https://sessionserver.mojang.com/session/minecraft/profile/%s?unsigned=false", new Object[] { UUIDTypeAdapter.fromUUID(uuid) })).openConnection();
|
* @param uuid The player uuid
|
||||||
|
* @param forceNew If true the cache is ignored
|
||||||
|
* @return The GameProfile
|
||||||
|
* @throws IOException If something wents wrong while fetching
|
||||||
|
* @see GameProfile
|
||||||
|
*/
|
||||||
|
public static GameProfile fetch(UUID uuid, boolean forceNew) throws IOException {
|
||||||
|
if (!forceNew && cache.containsKey(uuid) && cache.get(uuid).isValid()) {
|
||||||
|
return cache.get(uuid).profile;
|
||||||
|
} else {
|
||||||
|
HttpURLConnection connection = (HttpURLConnection) new URL(String.format(SERVICE_URL, UUIDTypeAdapter.fromUUID(uuid))).openConnection();
|
||||||
connection.setReadTimeout(5000);
|
connection.setReadTimeout(5000);
|
||||||
|
|
||||||
if (connection.getResponseCode() == 200) {
|
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
|
||||||
String json = new BufferedReader(new InputStreamReader(connection.getInputStream())).readLine();
|
String json = new BufferedReader(new InputStreamReader(connection.getInputStream())).readLine();
|
||||||
|
|
||||||
GameProfile result = this.gson.fromJson(json, GameProfile.class);
|
GameProfile result = gson.fromJson(json, GameProfile.class);
|
||||||
this.cache.put(uuid, new CachedProfile(result));
|
cache.put(uuid, new CachedProfile(result));
|
||||||
return result;
|
return result;
|
||||||
}
|
} else {
|
||||||
if ((!forceNew) && (this.cache.containsKey(uuid))) {
|
if (!forceNew && cache.containsKey(uuid)) {
|
||||||
return this.cache.get(uuid).profile;
|
return cache.get(uuid).profile;
|
||||||
}
|
}
|
||||||
JsonObject error = (JsonObject) new JsonParser().parse(new BufferedReader(new InputStreamReader(connection.getErrorStream())).readLine());
|
JsonObject error = (JsonObject) new JsonParser().parse(new BufferedReader(new InputStreamReader(connection.getErrorStream())).readLine());
|
||||||
throw new Exception(error.get("error").getAsString() + ": " + error.get("errorMessage").getAsString());
|
throw new IOException(error.get("error").getAsString() + ": " + error.get("errorMessage").getAsString());
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public GameProfile getProfile(UUID uuid, String name, String skinUrl)
|
/**
|
||||||
{
|
* Builds a GameProfile for the specified args
|
||||||
return getProfile(uuid, name, skinUrl, null);
|
*
|
||||||
|
* @param uuid The uuid
|
||||||
|
* @param name The name
|
||||||
|
* @param skin The url from the skin image
|
||||||
|
* @return A GameProfile built from the arguments
|
||||||
|
* @see GameProfile
|
||||||
|
*/
|
||||||
|
public static GameProfile getProfile(UUID uuid, String name, String skin) {
|
||||||
|
return getProfile(uuid, name, skin, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings({ "rawtypes" })
|
/**
|
||||||
public GameProfile getProfile(UUID uuid, String name, String skinUrl, String capeUrl) {
|
* Builds a GameProfile for the specified args
|
||||||
|
*
|
||||||
|
* @param uuid The uuid
|
||||||
|
* @param name The name
|
||||||
|
* @param skinUrl Url from the skin image
|
||||||
|
* @param capeUrl Url from the cape image
|
||||||
|
* @return A GameProfile built from the arguments
|
||||||
|
* @see GameProfile
|
||||||
|
*/
|
||||||
|
public static GameProfile getProfile(UUID uuid, String name, String skinUrl, String capeUrl) {
|
||||||
GameProfile profile = new GameProfile(uuid, name);
|
GameProfile profile = new GameProfile(uuid, name);
|
||||||
boolean cape = (capeUrl != null) && (!capeUrl.isEmpty());
|
boolean cape = capeUrl != null && !capeUrl.isEmpty();
|
||||||
|
|
||||||
List<Comparable> args = new ArrayList<Comparable>();
|
List<Object> args = new ArrayList<Object>();
|
||||||
args.add(Long.valueOf(System.currentTimeMillis()));
|
args.add(System.currentTimeMillis());
|
||||||
args.add(UUIDTypeAdapter.fromUUID(uuid));
|
args.add(UUIDTypeAdapter.fromUUID(uuid));
|
||||||
args.add(name);
|
args.add(name);
|
||||||
args.add(skinUrl);
|
args.add(skinUrl);
|
||||||
if (cape) args.add(capeUrl);
|
if (cape) args.add(capeUrl);
|
||||||
|
|
||||||
profile.getProperties().put("textures", new Property("textures", Base64Coder.encodeString(String.format(cape ? "{\"timestamp\":%d,\"profileId\":\"%s\",\"profileName\":\"%s\",\"isPublic\":true,\"textures\":{\"SKIN\":{\"url\":\"%s\"},\"CAPE\":{\"url\":\"%s\"}}}" : "{\"timestamp\":%d,\"profileId\":\"%s\",\"profileName\":\"%s\",\"isPublic\":true,\"textures\":{\"SKIN\":{\"url\":\"%s\"}}}", args.toArray(new Object[args.size()])))));
|
profile.getProperties().put("textures", new Property("textures", Base64Coder.encodeString(String.format(cape ? JSON_CAPE : JSON_SKIN, args.toArray(new Object[args.size()])))));
|
||||||
return profile;
|
return profile;
|
||||||
}
|
}
|
||||||
|
|
||||||
private class CachedProfile
|
/**
|
||||||
{
|
* Sets the time as long as you want to keep the gameprofiles in cache (-1 = never remove it)
|
||||||
private GameProfile profile;
|
* @param time cache time (default = -1)
|
||||||
private long timestamp;
|
*/
|
||||||
|
public static void setCacheTime(long time) {
|
||||||
public CachedProfile(GameProfile profile)
|
cacheTime = time;
|
||||||
{
|
|
||||||
this.profile = profile;
|
|
||||||
this.timestamp = System.currentTimeMillis();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isValid() {
|
private static class GameProfileSerializer implements JsonSerializer<GameProfile>, JsonDeserializer<GameProfile> {
|
||||||
return System.currentTimeMillis() - this.timestamp < 150000L;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private class GameProfileSerializer
|
public GameProfile deserialize(JsonElement json, Type type, JsonDeserializationContext context) throws JsonParseException {
|
||||||
implements JsonSerializer<GameProfile>, JsonDeserializer<GameProfile>
|
|
||||||
{
|
|
||||||
private GameProfileSerializer()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
public GameProfile deserialize(JsonElement json, Type type, JsonDeserializationContext context)
|
|
||||||
throws JsonParseException
|
|
||||||
{
|
|
||||||
JsonObject object = (JsonObject) json;
|
JsonObject object = (JsonObject) json;
|
||||||
UUID id = object.has("id") ? (UUID) context.deserialize(object.get("id"), UUID.class) : null;
|
UUID id = object.has("id") ? (UUID) context.deserialize(object.get("id"), UUID.class) : null;
|
||||||
String name = object.has("name") ? object.getAsJsonPrimitive("name").getAsString() : null;
|
String name = object.has("name") ? object.getAsJsonPrimitive("name").getAsString() : null;
|
||||||
GameProfile profile = new GameProfile(id, name);
|
GameProfile profile = new GameProfile(id, name);
|
||||||
|
|
||||||
PropertyMap properties = object.has("properties") ? (PropertyMap)context.deserialize(object.get("properties"), PropertyMap.class) : null;
|
if (object.has("properties")) {
|
||||||
|
for (Entry<String, Property> prop : ((PropertyMap) context.deserialize(object.get("properties"), PropertyMap.class)).entries()) {
|
||||||
if (properties != null) {
|
profile.getProperties().put(prop.getKey(), prop.getValue());
|
||||||
for (Map.Entry prop : properties.entries()) {
|
|
||||||
profile.getProperties().put((String)prop.getKey(), (Property)prop.getValue());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return profile;
|
return profile;
|
||||||
|
@ -142,4 +154,18 @@ public GameProfile getProfile(UUID uuid, String name, String skinUrl, String cap
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static class CachedProfile {
|
||||||
|
|
||||||
|
private long timestamp = System.currentTimeMillis();
|
||||||
|
private GameProfile profile;
|
||||||
|
|
||||||
|
public CachedProfile(GameProfile profile) {
|
||||||
|
this.profile = profile;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isValid() {
|
||||||
|
return cacheTime < 0 ? true : (System.currentTimeMillis() - timestamp) < cacheTime;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,6 +1,9 @@
|
||||||
package eu.univento.core.api.utils;
|
package eu.univento.core.api.utils;
|
||||||
|
|
||||||
import com.google.common.collect.ImmutableList;
|
import com.google.common.collect.ImmutableList;
|
||||||
|
import org.json.simple.JSONObject;
|
||||||
|
import org.json.simple.parser.JSONParser;
|
||||||
|
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.net.HttpURLConnection;
|
import java.net.HttpURLConnection;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
@ -9,12 +12,8 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
import org.json.simple.JSONObject;
|
|
||||||
import org.json.simple.parser.JSONParser;
|
|
||||||
|
|
||||||
public class NameFetcher
|
public class NameFetcher implements Callable<Map<UUID, String>>{
|
||||||
implements Callable<Map<UUID, String>>
|
|
||||||
{
|
|
||||||
private static final String PROFILE_URL = "https://sessionserver.mojang.com/session/minecraft/profile/";
|
private static final String PROFILE_URL = "https://sessionserver.mojang.com/session/minecraft/profile/";
|
||||||
private final JSONParser jsonParser = new JSONParser();
|
private final JSONParser jsonParser = new JSONParser();
|
||||||
private final List<UUID> uuids;
|
private final List<UUID> uuids;
|
||||||
|
|
|
@ -0,0 +1,256 @@
|
||||||
|
package eu.univento.core.api.utils.reflection;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.lang.reflect.InvocationTargetException;
|
||||||
|
import java.lang.reflect.Method;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* -== IReflection ==-
|
||||||
|
*
|
||||||
|
* This library was created by @Ingrim4 and allows you to use the reflection-api implemented in java easily for spigot plugins
|
||||||
|
* You are welcome to use it and redistribute it under the following conditions:
|
||||||
|
* * Don't claim this class as your own
|
||||||
|
* * Don't remove this disclaimer
|
||||||
|
*
|
||||||
|
* @author Ingrim4
|
||||||
|
* @version 1.2.8
|
||||||
|
*/
|
||||||
|
public class IReflection {
|
||||||
|
|
||||||
|
public interface ConstructorAccessor {
|
||||||
|
|
||||||
|
public Object newInstance(Object... args);
|
||||||
|
|
||||||
|
public Constructor<?> getConstructor();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface MethodAccessor {
|
||||||
|
|
||||||
|
public Object invoke(Object target, Object... args);
|
||||||
|
|
||||||
|
public Method getMehtod();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public interface FieldAccessor<T> {
|
||||||
|
|
||||||
|
public T get(Object target);
|
||||||
|
|
||||||
|
public void set(Object target, Object value);
|
||||||
|
|
||||||
|
public Field getField();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Class<?> getClass(ServerPacket packet, String name) {
|
||||||
|
try {
|
||||||
|
return Class.forName(packet + name);
|
||||||
|
} catch (ClassNotFoundException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static ConstructorAccessor getConstructor(Class<?> clazz, Class<?>... parameterTypes) {
|
||||||
|
Class<?>[] p = DataType.convertToPrimitive(parameterTypes);
|
||||||
|
for (Constructor<?> c : clazz.getDeclaredConstructors())
|
||||||
|
if (DataType.equalsArray(DataType.convertToPrimitive(c.getParameterTypes()), p)) {
|
||||||
|
c.setAccessible(true);
|
||||||
|
return new ConstructorAccessor() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object newInstance(Object... args) {
|
||||||
|
try {
|
||||||
|
return c.newInstance(args);
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
throw new IllegalStateException("Cannot use reflection.", e);
|
||||||
|
} catch (InvocationTargetException e) {
|
||||||
|
throw new RuntimeException("An internal error occured.", e.getCause());
|
||||||
|
} catch (InstantiationException e) {
|
||||||
|
throw new RuntimeException("Cannot instantiate object.", e);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Constructor<?> getConstructor() {
|
||||||
|
return c;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (clazz.getSuperclass() != null)
|
||||||
|
return IReflection.getConstructor(clazz.getSuperclass(), parameterTypes);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static MethodAccessor getMethod(Class<?> target, String methodName, Class<?>... parameterTypes) {
|
||||||
|
return IReflection.getMethod(target, methodName, null, parameterTypes);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static MethodAccessor getMethod(Class<?> target, String methodName, Class<?> returnType, Class<?>... parameterTypes) {
|
||||||
|
Class<?>[] primitiveParameter = DataType.convertToPrimitive(parameterTypes);
|
||||||
|
for (Method method : target.getDeclaredMethods())
|
||||||
|
if ((methodName == null || method.getName().equals(methodName)) && (returnType == null || method.getReturnType().equals(returnType)) && (primitiveParameter.length == 0 || DataType.equalsArray(DataType.convertToPrimitive(method.getParameterTypes()), primitiveParameter))) {
|
||||||
|
method.setAccessible(true);
|
||||||
|
return new MethodAccessor() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object invoke(Object target, Object... args) {
|
||||||
|
try {
|
||||||
|
return method.invoke(target, args);
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
throw new IllegalStateException("Cannot use reflection.", e);
|
||||||
|
} catch (InvocationTargetException e) {
|
||||||
|
throw new RuntimeException("An internal error occured.", e.getCause());
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Method getMehtod() {
|
||||||
|
return method;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (target.getSuperclass() != null)
|
||||||
|
return IReflection.getMethod(target.getSuperclass(), methodName, returnType, parameterTypes);
|
||||||
|
|
||||||
|
throw new IllegalStateException(String.format("Unable to find method %s (%s).", methodName, parameterTypes));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static <T> FieldAccessor<T> getField(Class<?> target, String fieldName) {
|
||||||
|
return IReflection.getField(target, fieldName, null, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static <T> FieldAccessor<T> getField(Class<?> target, Class<T> fieldType, int index) {
|
||||||
|
return IReflection.getField(target, null, fieldType, index);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static <T> FieldAccessor<T> getField(Class<?> target, String fieldName, Class<T> fieldType, int index) {
|
||||||
|
for (Field field : target.getDeclaredFields())
|
||||||
|
if ((fieldName == null || fieldName.equals(field.getName())) && (fieldType == null || (fieldType.isAssignableFrom(field.getType()) && index-- <= 0))) {
|
||||||
|
field.setAccessible(true);
|
||||||
|
return new FieldAccessor<T>() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
public T get(Object target) {
|
||||||
|
try {
|
||||||
|
return (T) field.get(target);
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
throw new IllegalStateException("Cannot use reflection.", e);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void set(Object target, Object value) {
|
||||||
|
try {
|
||||||
|
field.set(target, value);
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
throw new IllegalStateException("Cannot use reflection.", e);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Field getField() {
|
||||||
|
return field;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (target.getSuperclass() != null)
|
||||||
|
return IReflection.getField(target.getSuperclass(), fieldName, fieldType, index);
|
||||||
|
|
||||||
|
throw new IllegalStateException(String.format("Unable to find field %s (%s).", fieldName, fieldType));
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum DataType {
|
||||||
|
BYTE(byte.class, Byte.class), SHORT(short.class, Short.class), INTEGER(int.class,
|
||||||
|
Integer.class), LONG(long.class, Long.class), CHARACTER(char.class, Character.class), FLOAT(float.class,
|
||||||
|
Float.class), DOUBLE(double.class, Double.class), BOOLEAN(boolean.class, Boolean.class);
|
||||||
|
|
||||||
|
private static final Map<Class<?>, DataType> CLASS_MAP = new HashMap<Class<?>, DataType>();
|
||||||
|
private final Class<?> primitive;
|
||||||
|
private final Class<?> reference;
|
||||||
|
|
||||||
|
static {
|
||||||
|
for (DataType t : DataType.values()) {
|
||||||
|
DataType.CLASS_MAP.put(t.primitive, t);
|
||||||
|
DataType.CLASS_MAP.put(t.reference, t);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private DataType(Class<?> primitive, Class<?> reference) {
|
||||||
|
this.primitive = primitive;
|
||||||
|
this.reference = reference;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Class<?> getPrimitive() {
|
||||||
|
return this.primitive;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Class<?> getReference() {
|
||||||
|
return this.reference;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static DataType fromClass(Class<?> c) {
|
||||||
|
return DataType.CLASS_MAP.get(c);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Class<?> getPrimitive(Class<?> c) {
|
||||||
|
DataType t = DataType.fromClass(c);
|
||||||
|
return t == null ? c : t.getPrimitive();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Class<?> getReference(Class<?> c) {
|
||||||
|
DataType t = DataType.fromClass(c);
|
||||||
|
return t == null ? c : t.getReference();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Class<?>[] convertToPrimitive(Class<?>[] classes) {
|
||||||
|
int length = classes == null ? 0 : classes.length;
|
||||||
|
Class<?>[] types = new Class<?>[length];
|
||||||
|
for (int i = 0; i < length; i++)
|
||||||
|
types[i] = DataType.getPrimitive(classes[i]);
|
||||||
|
return types;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean equalsArray(Class<?>[] a1, Class<?>[] a2) {
|
||||||
|
if (a1 == null || a2 == null || a1.length != a2.length)
|
||||||
|
return false;
|
||||||
|
for (int i = 0; i < a1.length; i++)
|
||||||
|
if (!a1[i].equals(a2[i]) && !a1[i].isAssignableFrom(a2[i]))
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ServerPacket {
|
||||||
|
|
||||||
|
MINECRAFT_PACKAGE("net.minecraft.server." + Bukkit.getServer().getClass().getPackage().getName().substring(23)), MOJANG_AUTHLIB("com.mojang.authlib"), CRAFTBUKKIT_PACKAGE(Bukkit.getServer().getClass().getPackage().getName());
|
||||||
|
|
||||||
|
ServerPacket(String source) {
|
||||||
|
this.name = source;
|
||||||
|
}
|
||||||
|
|
||||||
|
private final String name;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return this.name + ".";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,13 +1,14 @@
|
||||||
package eu.univento.core.api.utils;
|
package eu.univento.core.api.utils.reflection;
|
||||||
|
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.entity.Entity;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
import java.lang.reflect.Constructor;
|
import java.lang.reflect.Constructor;
|
||||||
import java.lang.reflect.Field;
|
import java.lang.reflect.Field;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
import java.lang.reflect.InvocationTargetException;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import org.bukkit.Bukkit;
|
|
||||||
import org.bukkit.entity.Entity;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
import org.bukkit.inventory.ItemStack;
|
|
||||||
|
|
||||||
public class Reflection
|
public class Reflection
|
||||||
{
|
{
|
|
@ -1,13 +1,13 @@
|
||||||
package eu.univento.core.api.youtube;
|
package eu.univento.core.api.youtube;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
|
||||||
import java.io.InputStreamReader;
|
|
||||||
import java.net.URL;
|
|
||||||
|
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.google.gson.JsonArray;
|
import com.google.gson.JsonArray;
|
||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.net.URL;
|
||||||
|
|
||||||
public class YTAPI {
|
public class YTAPI {
|
||||||
|
|
||||||
public static Gson gson = new Gson();
|
public static Gson gson = new Gson();
|
||||||
|
|
|
@ -1,18 +1,17 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import eu.univento.core.Core;
|
||||||
import java.util.HashMap;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import java.util.List;
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.util.ArrayList;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import java.util.HashMap;
|
||||||
import eu.univento.core.api.Messages;
|
import java.util.List;
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* command to ban players
|
* command to ban players
|
||||||
|
@ -35,36 +34,35 @@ public class Ban extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(p.isAllowed(Ranks.Moderator)) {
|
if(p.isAllowed(Ranks.Moderator)) {
|
||||||
if(args.length >= 3) {
|
if(args.length == 2) {
|
||||||
if(Bukkit.getPlayer(args[0]) != null) {
|
if(Bukkit.getPlayer(args[0]) != null) {
|
||||||
CustomPlayer t = CustomPlayer.getPlayer(args[0]);
|
CustomPlayer t = CustomPlayer.getPlayer(args[0]);
|
||||||
if(getReasons().containsKey(args[1])) {
|
if(getReasons().containsValue(args[1])) {
|
||||||
String string = getReasons().get(args[1]);
|
int id = getKey(args[1]);
|
||||||
int id = Integer.parseInt(string);
|
|
||||||
|
|
||||||
t.ban(getReasons().get(id), p, getBanDurations().get(id));
|
t.ban(getReasons().get(id), p, getBanDurations().get(id));
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.PREFIX + "§cDieser Grund exsistiert nicht");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_BAN_NO_REASON());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.PREFIX + "§cDer Spieler " + args[0] + " exsistiert nicht, oder ist nicht online.");
|
p.sendMessage(msgs.PREFIX() + msgs.NOT_ONLINE(args[0]));
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.PREFIX + "§cNutze /ban <Spieler> <Grund>");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_BAN_USAGE());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NO_PERMS);
|
sender.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
||||||
List<String> list = new ArrayList<String>();
|
List<String> list = new ArrayList<>();
|
||||||
for(int i = 0; i >= getReasons().size(); i++) {
|
for(int i = 0; i >= getReasons().size(); i++) {
|
||||||
list.add(getReasons().get(i));
|
list.add(getReasons().get(i));
|
||||||
}
|
}
|
||||||
|
@ -75,15 +73,15 @@ public class Ban extends AutoCommand<Core>{
|
||||||
* @return all possible ban reasons
|
* @return all possible ban reasons
|
||||||
*/
|
*/
|
||||||
private HashMap<Integer, String> getReasons() {
|
private HashMap<Integer, String> getReasons() {
|
||||||
HashMap<Integer, String> map = new HashMap<Integer, String>();
|
HashMap<Integer, String> map = new HashMap<>();
|
||||||
|
|
||||||
map.put(1, "Hacking");
|
map.put(1, "Hacking");
|
||||||
map.put(2, "Griefing");
|
map.put(2, "Griefing");
|
||||||
map.put(3, "Bugusing");
|
map.put(3, "Bugusing");
|
||||||
map.put(4, "Beleidigung");
|
map.put(4, "Insult");
|
||||||
map.put(5, "Spam");
|
map.put(5, "Spam");
|
||||||
map.put(6, "Banumgehung");
|
map.put(6, "Banumgehung");
|
||||||
map.put(7, "Werbung");
|
map.put(7, "Advertising");
|
||||||
map.put(8, "Trolling");
|
map.put(8, "Trolling");
|
||||||
|
|
||||||
return map;
|
return map;
|
||||||
|
@ -93,18 +91,26 @@ public class Ban extends AutoCommand<Core>{
|
||||||
* @return ban durations to reason
|
* @return ban durations to reason
|
||||||
*/
|
*/
|
||||||
private HashMap<Integer, Integer> getBanDurations() {
|
private HashMap<Integer, Integer> getBanDurations() {
|
||||||
HashMap<Integer, Integer> map = new HashMap<Integer, Integer>();
|
HashMap<Integer, Integer> map = new HashMap<>();
|
||||||
|
|
||||||
map.put(1, 60);
|
map.put(1, 60);
|
||||||
map.put(2, 30);
|
map.put(2, 30);
|
||||||
map.put(3, 20);
|
map.put(3, 20);
|
||||||
map.put(4, 10);
|
map.put(4, 10);
|
||||||
map.put(5, 5);
|
map.put(5, 5);
|
||||||
map.put(6, 50);
|
map.put(6, 120);
|
||||||
map.put(7, 15);
|
map.put(7, 15);
|
||||||
map.put(8, 25);
|
map.put(8, 25);
|
||||||
|
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private Integer getKey(String value) {
|
||||||
|
for(int key : getReasons().keySet()) {
|
||||||
|
if(getReasons().get(key).equals(value)) {
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -1,16 +1,18 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import eu.univento.core.api.Messages;
|
import eu.univento.core.api.languages.Messages;
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
|
import eu.univento.core.api.server.ServerSettings;
|
||||||
|
import org.bukkit.GameMode;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* lets player build
|
* lets player build
|
||||||
|
@ -22,12 +24,12 @@ public class Build extends AutoCommand<Core>{
|
||||||
/**
|
/**
|
||||||
* player who can build
|
* player who can build
|
||||||
*/
|
*/
|
||||||
private static ArrayList<CustomPlayer> players = new ArrayList<CustomPlayer>();
|
private static HashMap<CustomPlayer, ItemStack[]> players = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return player that can build
|
* @return player that can build
|
||||||
*/
|
*/
|
||||||
public static ArrayList<CustomPlayer> getPlayers() {
|
public static HashMap<CustomPlayer, ItemStack[]> getPlayers() {
|
||||||
return players;
|
return players;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,19 +47,27 @@ public class Build extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(p.isAllowed(Ranks.Builder)) {
|
if(p.isAllowed(Ranks.Builder)) {
|
||||||
if(players.contains(p)) {
|
if(players.containsKey(p)) {
|
||||||
|
p.sendMessage(msgs.PREFIX() + msgs.Core_BUILD_OFF());
|
||||||
|
|
||||||
|
ItemStack[] content = players.get(p);
|
||||||
|
p.getInventory().setContents(content);
|
||||||
players.remove(p);
|
players.remove(p);
|
||||||
p.sendMessage("§cDu kannst nun nicht mehr bauen");
|
p.setGameMode(ServerSettings.getGameMode());
|
||||||
|
|
||||||
}else {
|
}else {
|
||||||
players.add(p);
|
players.put(p, p.getInventory().getContents());
|
||||||
p.sendMessage("§aDu kannst nun bauen");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_BUILD_ON());
|
||||||
|
p.getInventory().clear();
|
||||||
|
p.setGameMode(GameMode.CREATIVE);
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NO_PERMS);
|
sender.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -67,4 +77,6 @@ public class Build extends AutoCommand<Core>{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import eu.univento.core.api.AutoCommand;
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author joethei
|
||||||
|
* @version 1.0
|
||||||
|
*/
|
||||||
|
public class ChatClear extends AutoCommand<Core> {
|
||||||
|
|
||||||
|
public ChatClear(Core plugin, String command, String description, String... aliases) {
|
||||||
|
super(plugin, command, description, aliases);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
|
if(sender instanceof Player) {
|
||||||
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
|
if(p.isAllowed(Ranks.Supporter)) {
|
||||||
|
for(int i = 0; i <= 100; i++) {
|
||||||
|
Bukkit.broadcastMessage(" ");
|
||||||
|
}
|
||||||
|
for(Player players : Bukkit.getOnlinePlayers()) {
|
||||||
|
CustomPlayer player = CustomPlayer.getPlayer(players);
|
||||||
|
if (player.isAllowed(Ranks.Supporter)) {
|
||||||
|
Messages messages = new Messages(player);
|
||||||
|
player.sendMessage(messages.Core_CHAT_CLEARED(p));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,16 +1,15 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import eu.univento.core.Core;
|
||||||
import java.util.List;
|
import eu.univento.core.api.AutoCommand;
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.util.List;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import java.util.stream.Collectors;
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* fixes players
|
* fixes players
|
||||||
|
@ -33,43 +32,42 @@ public class Fix extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(args.length == 0) {
|
if(args.length == 0) {
|
||||||
for(Player player : Bukkit.getOnlinePlayers()) {
|
for(Player player : Bukkit.getOnlinePlayers()) {
|
||||||
player.hidePlayer(p);
|
player.hidePlayer(p);
|
||||||
player.showPlayer(p);
|
player.showPlayer(p);
|
||||||
}
|
}
|
||||||
p.teleport(p.getLocation());
|
p.teleport(p.getLocation());
|
||||||
p.sendMessage("§6Du hast dich gefixt");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_FIX_OWN());
|
||||||
}
|
}
|
||||||
if(args.length == 1) {
|
if(args.length == 1) {
|
||||||
if(Bukkit.getPlayer(args[0]) != null) {
|
if(Bukkit.getPlayer(args[0]) != null) {
|
||||||
CustomPlayer t = CustomPlayer.getPlayer(Bukkit.getPlayer(args[0]).getName());
|
CustomPlayer t = CustomPlayer.getPlayer(Bukkit.getPlayer(args[0]).getName());
|
||||||
|
Messages tMsgs = new Messages(t);
|
||||||
if(t != p) {
|
if(t != p) {
|
||||||
p.hidePlayer(t);
|
p.hidePlayer(t);
|
||||||
p.showPlayer(t);
|
p.showPlayer(t);
|
||||||
p.teleport(p.getLocation());
|
p.teleport(p.getLocation());
|
||||||
p.sendMessage("§6Du hast den Spieler " + t.getDisplayName() + " gefixt");
|
p.sendMessage(msgs.Core_FIX_OTHER(t));
|
||||||
t.sendMessage("§6Du wurdest von " + p.getDisplayName() + " gefixt");
|
t.sendMessage(tMsgs.Core_FIX_BY_OTHER(p));
|
||||||
}else {
|
}else {
|
||||||
p.chat("/fix");
|
p.chat("/fix");
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage("§cDieser Spieler ist nicht online");
|
p.sendMessage(msgs.NOT_ONLINE(args[0]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
||||||
List<String> list = new ArrayList<String>();
|
List<String> list = Bukkit.getOnlinePlayers().stream().map(Player::getDisplayName).collect(Collectors.toList());
|
||||||
|
|
||||||
for(Player players : Bukkit.getOnlinePlayers()) {
|
|
||||||
list.add(players.getDisplayName());
|
|
||||||
}
|
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,16 +1,15 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import eu.univento.core.api.Messages;
|
import eu.univento.core.api.languages.Messages;
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* changes game modes
|
* changes game modes
|
||||||
|
@ -33,26 +32,27 @@ public class GameMode extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(p.isAllowed(Ranks.Builder)) {
|
if(p.isAllowed(Ranks.Builder)) {
|
||||||
if(args.length == 1) {
|
if(args.length == 1) {
|
||||||
String mode = args[0];
|
String mode = args[0];
|
||||||
p.setGameMode(getModeFromString(mode));
|
p.setGameMode(getModeFromString(mode));
|
||||||
p.sendMessage("§aDein Spielmodus wurde geändert");
|
p.sendMessage(msgs.Core_GM_CHANGED());
|
||||||
}else {
|
}if(args.length == 0){
|
||||||
p.sendMessage("§cNutze /gm <0 | 1 | 2 | 3>");
|
p.sendMessage(msgs.Core_GM_USAGE());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NO_PERMS);
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
||||||
List<String> list = new ArrayList<String>();
|
List<String> list = new ArrayList<>();
|
||||||
|
|
||||||
list.add("0");
|
list.add("0");
|
||||||
list.add("1");
|
list.add("1");
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import eu.univento.core.api.Messages;
|
import eu.univento.core.api.languages.Messages;
|
||||||
import eu.univento.core.api.Settings;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
|
import eu.univento.core.api.server.ServerSettings;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* mutes the whole server
|
* mutes the whole server
|
||||||
|
@ -33,19 +32,20 @@ public class GlobalMute extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(p.isAllowed(Ranks.Moderator)) {
|
if(p.isAllowed(Ranks.Moderator)) {
|
||||||
if(Settings.isMute()) {
|
if(ServerSettings.isMute()) {
|
||||||
Settings.setMute(false);
|
ServerSettings.setMute(false);
|
||||||
p.sendMessage("§cGlobal Mute deaktiviert");
|
p.sendMessage(msgs.Core_GLOBALMUTE_OFF());
|
||||||
}else {
|
}else {
|
||||||
Settings.setMute(true);
|
ServerSettings.setMute(true);
|
||||||
p.sendMessage("§aGlobal Mute aktiviert");
|
p.sendMessage(msgs.Core_GLOBALMUTE_ON());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NO_PERMS);
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,16 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import eu.univento.core.Core;
|
||||||
import java.util.List;
|
import eu.univento.core.api.AutoCommand;
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.util.List;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import java.util.stream.Collectors;
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* lets other player run commands
|
* lets other player run commands
|
||||||
|
@ -35,6 +34,7 @@ public class RunAs extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(p.isAllowed(Ranks.Admin)) {
|
if(p.isAllowed(Ranks.Admin)) {
|
||||||
if(args.length >= 2) {
|
if(args.length >= 2) {
|
||||||
CustomPlayer t = CustomPlayer.getPlayer(Bukkit.getPlayer(args[0]).getName());
|
CustomPlayer t = CustomPlayer.getPlayer(Bukkit.getPlayer(args[0]).getName());
|
||||||
|
@ -44,33 +44,26 @@ public class RunAs extends AutoCommand<Core>{
|
||||||
msg = msg + args[i] + " ";
|
msg = msg + args[i] + " ";
|
||||||
}
|
}
|
||||||
t.chat(msg);
|
t.chat(msg);
|
||||||
p.sendMessage("§2Erfolgreich ausgeführt");
|
p.sendMessage(msgs.Core_RUNAS_RUN(t));
|
||||||
return true;
|
return true;
|
||||||
}else {
|
}else {
|
||||||
String msg = Messages.readString("Messages.Player.NotOnline");
|
p.sendMessage(msgs.NOT_ONLINE(args[0]));
|
||||||
msg = msg.replace("$player", args[0]);
|
|
||||||
p.sendMessage(msg);
|
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage("§cDu musst §6/RunAs <Spieler> <Command/Nachricht> §causführen");
|
p.sendMessage(msgs.Core_RUNAS_USAGE());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NO_PERMS);
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
||||||
List<String> list = new ArrayList<String>();
|
return Bukkit.getOnlinePlayers().stream().map(Player::getDisplayName).collect(Collectors.toList());
|
||||||
|
|
||||||
for(Player players : Bukkit.getOnlinePlayers()) {
|
|
||||||
list.add(players.getDisplayName());
|
|
||||||
}
|
|
||||||
return list;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,19 +1,16 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.sql.SQLException;
|
import eu.univento.core.Core;
|
||||||
import java.util.ArrayList;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import java.util.List;
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.util.List;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import java.util.stream.Collectors;
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sets ranks for players
|
* sets ranks for players
|
||||||
|
@ -36,54 +33,67 @@ public class SetRank extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
if(p.isAllowed(Ranks.Admin)) {
|
Messages msgs = new Messages(p);
|
||||||
|
if(p.isAllowed(Ranks.HeadBuilder)) {
|
||||||
if(args.length == 2) {
|
if(args.length == 2) {
|
||||||
Ranks rank = Ranks.valueOf(args[1]);
|
Ranks rank = Ranks.valueOf(args[1]);
|
||||||
if(rank != null) {
|
if(rank != null) {
|
||||||
if(Bukkit.getPlayer(args[0]) != null) {
|
if(Bukkit.getPlayer(args[0]) != null) {
|
||||||
CustomPlayer player = CustomPlayer.getPlayer(Bukkit.getPlayer(args[0]).getName());
|
CustomPlayer player = CustomPlayer.getPlayer(Bukkit.getPlayer(args[0]).getName());
|
||||||
try {
|
if(p.isAllowed(Ranks.HeadBuilder) && rank == Ranks.Builder) {
|
||||||
Perms.setRank(player, rank);
|
player.setRank(rank);
|
||||||
p.sendMessage("§aDer Rang wurde erfolgreich gesetzt");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_SETRANK_SET(player, player.getRank()));
|
||||||
} catch (ClassNotFoundException | SQLException e) {
|
player.kickPlayer(msgs.Core_SETRANK_KICK());
|
||||||
e.printStackTrace();
|
}if(p.isAllowed(Ranks.SrModerator) && rank == Ranks.Moderator) {
|
||||||
p.sendMessage(Messages.readString("Messages.UnknownError"));
|
player.setRank(rank);
|
||||||
|
p.sendMessage(msgs.PREFIX() + msgs.Core_SETRANK_SET(player, player.getRank()));
|
||||||
|
player.kickPlayer(msgs.Core_SETRANK_KICK());
|
||||||
|
}if(p.isAllowed(Ranks.SrModerator) && rank == Ranks.Supporter) {
|
||||||
|
player.setRank(rank);
|
||||||
|
p.sendMessage(msgs.PREFIX() + msgs.Core_SETRANK_SET(player, player.getRank()));
|
||||||
|
player.kickPlayer(msgs.Core_SETRANK_KICK());
|
||||||
|
}if(p.isAllowed(Ranks.SrDeveloper) && rank == Ranks.Developer) {
|
||||||
|
player.setRank(rank);
|
||||||
|
p.sendMessage(msgs.PREFIX() + msgs.Core_SETRANK_SET(player, player.getRank()));
|
||||||
|
player.kickPlayer(msgs.Core_SETRANK_KICK());
|
||||||
|
}
|
||||||
|
if(p.isAllowed(Ranks.Admin)) {
|
||||||
|
player.setRank(rank);
|
||||||
|
p.sendMessage(msgs.PREFIX() + msgs.Core_SETRANK_SET(player, player.getRank()));
|
||||||
|
player.kickPlayer(msgs.Core_SETRANK_KICK());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NOT_ONLINE);
|
p.sendMessage(msgs.NOT_ONLINE(args[0]));
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage("§cDen Rang gibt es nicht");
|
p.sendMessage(msgs.Core_SETRANK_NO_RANK());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage("§cNutze §6/setRank <Spieler> <Rang>");
|
p.sendMessage(msgs.Core_SETRANK_NO_RANK());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NO_PERMS);
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
public List<String> tabComplete(CommandSender sender, String label, String[] args) {
|
||||||
List<String> list = new ArrayList<String>();
|
List<String> list = Bukkit.getOnlinePlayers().stream().map(Player::getDisplayName).collect(Collectors.toList());
|
||||||
|
|
||||||
for(Player players : Bukkit.getOnlinePlayers()) {
|
|
||||||
list.add(players.getDisplayName());
|
|
||||||
}
|
|
||||||
|
|
||||||
list.add("Admin");
|
list.add("Admin");
|
||||||
list.add("Developer");
|
list.add("Developer");
|
||||||
|
list.add("SrModerator");
|
||||||
|
list.add("Moderator");
|
||||||
list.add("HeadBuilder");
|
list.add("HeadBuilder");
|
||||||
list.add("Builder");
|
list.add("Builder");
|
||||||
list.add("Moderator");
|
|
||||||
list.add("Supporter");
|
list.add("Supporter");
|
||||||
list.add("Youtuber");
|
list.add("Youtuber");
|
||||||
list.add("Premium");
|
list.add("Premium");
|
||||||
list.add("Spieler");
|
list.add("Player");
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.List;
|
import eu.univento.core.Core;
|
||||||
|
import eu.univento.core.api.AutoCommand;
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.util.List;
|
||||||
import eu.univento.core.api.AutoCommand;
|
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* prints infos about the server
|
* prints infos about the server
|
||||||
|
@ -33,22 +32,23 @@ public class SystemInfo extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
if(p.isAllowed(Ranks.Admin)) {
|
Messages msgs = new Messages(p);
|
||||||
|
if(p.isAllowed(Ranks.SrModerator)) {
|
||||||
Runtime run = Runtime.getRuntime();
|
Runtime run = Runtime.getRuntime();
|
||||||
p.sendMessage("§6§l===SystemInfo <SpigotServer>===");
|
p.sendMessage("§6§l===SystemInfo <SpigotServer>===");
|
||||||
p.sendMessage("§6Spigot Version: " + Bukkit.getVersion());
|
p.sendMessage("§6Spigot version: " + Bukkit.getVersion());
|
||||||
p.sendMessage("§6Genutzter Arbeitsspeicher: " + (run.totalMemory() - run.freeMemory() / 1048576L) + " MB");
|
p.sendMessage("§6used memory: " + (run.totalMemory() - run.freeMemory() / 1048576L) + " MB");
|
||||||
p.sendMessage("§6Freier Arbeitsspeicher: " + run.freeMemory() / 1048576L + " MB");
|
p.sendMessage("§6free memory: " + run.freeMemory() / 1048576L + " MB");
|
||||||
p.sendMessage("§6Gesamter Arbeitsspeicher: " + run.maxMemory() / 1048576L + " MB");
|
p.sendMessage("§6total memory: " + run.maxMemory() / 1048576L + " MB");
|
||||||
p.sendMessage("§6Verfügbare Prozessoren: " + run.availableProcessors());
|
p.sendMessage("§6avaiable cores: " + run.availableProcessors());
|
||||||
p.sendMessage("§6Betriebssystem: " + System.getProperty("os.name"));
|
p.sendMessage("§6OS: " + System.getProperty("os.name"));
|
||||||
p.sendMessage("§6Betriebsystem Version: " + System.getProperty("os.version"));
|
p.sendMessage("§6OS version: " + System.getProperty("os.version"));
|
||||||
p.sendMessage("§6Betriebssystem Architektur: " + System.getProperty("os.arch"));
|
p.sendMessage("§6OS architecture: " + System.getProperty("os.arch"));
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NO_PERMS);
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,12 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import eu.univento.core.api.player.TeamSpeak;
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sets ts groups according to player rank
|
* sets ts groups according to player rank
|
||||||
|
@ -32,19 +29,7 @@ public class TS extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
if(p.getTSClientInfo() != null) {
|
|
||||||
for(int i = 0; i >= p.getTSClientInfo().getServerGroups().length; i++) {
|
|
||||||
int[] groups = p.getTSClientInfo().getServerGroups();
|
|
||||||
if(groups[i] == TeamSpeak.getVerifiedId()) {
|
|
||||||
p.sendMessage(Messages.PREFIX + "§cDu hast schon einen verknüpften TS Account !");
|
|
||||||
}else {
|
|
||||||
p.verifyTs();
|
p.verifyTs();
|
||||||
p.sendMessage(Messages.PREFIX + "§aDu bist nun verifiziert");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}else {
|
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import eu.univento.core.api.Messages;
|
import eu.univento.core.api.languages.Messages;
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import eu.univento.core.api.twitch.Twitch_API;
|
import eu.univento.core.api.twitch.Twitch_API;
|
||||||
import eu.univento.core.api.twitch.Twitch_Stream;
|
import eu.univento.core.api.twitch.Twitch_Stream;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* send info about twitch streams
|
* send info about twitch streams
|
||||||
|
@ -33,26 +32,27 @@ public class Twitch extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(args.length == 1) {
|
if(args.length == 1) {
|
||||||
Twitch_Stream stream = Twitch_API.getStream(args[0]);
|
Twitch_Stream stream = Twitch_API.getStream(args[0]);
|
||||||
if(stream != null) {
|
if(stream != null) {
|
||||||
p.sendMessage("§a" + stream.getBroadcaster());
|
p.sendMessage("§a" + stream.getBroadcaster());
|
||||||
p.sendMessage("§aBenutzername: " + stream.getUsername());
|
p.sendMessage("§aBenutzername: " + stream.getUsername());
|
||||||
p.sendMessage("§aSpiel: " + stream.getMeta_game());
|
p.sendMessage("§aSpiel: " + stream.getMeta_game());
|
||||||
p.sendMessage("§aKategorie: " + stream.getCategory());
|
p.sendMessage("§aKategorie: " + stream.getCategory());
|
||||||
p.sendMessage("§aTitel: " + stream.getTitle());
|
p.sendMessage("§aTitel: " + stream.getTitle());
|
||||||
p.sendMessage("§aStatus: " + stream.getStatus());
|
p.sendMessage("§aStatus: " + stream.getStatus());
|
||||||
p.sendMessage("§aZuschauer:" + stream.getChannel_view_count());
|
p.sendMessage("§aZuschauer:" + stream.getChannel_view_count());
|
||||||
p.sendMessage("§aSprachen: " + stream.getGeo());
|
p.sendMessage("§aSprachen: " + stream.getGeo());
|
||||||
p.sendMessage("§aOnline seit: " + stream.getUp_time());
|
p.sendMessage("§aOnline seit: " + stream.getUp_time());
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.PREFIX + "§aDen Benutzer gibt es nicht");
|
p.sendMessage(msgs.PREFIX() + "§aDen Benutzer gibt es nicht");
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.PREFIX + "§cNutze /twitch <Name>");
|
p.sendMessage(msgs.PREFIX() + "§cNutze /twitch <Name>");
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,16 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import eu.univento.core.Core;
|
||||||
import java.util.List;
|
import eu.univento.core.api.AutoCommand;
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.command.CommandSender;
|
import org.bukkit.command.CommandSender;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.util.ArrayList;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import java.util.List;
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* vanish players
|
* vanish players
|
||||||
|
@ -45,25 +44,26 @@ public class Vanish extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(p.isAllowed(Ranks.Moderator)) {
|
if(p.isAllowed(Ranks.Moderator)) {
|
||||||
if(players.contains(p)) {
|
if(players.contains(p)) {
|
||||||
for(Player players : Bukkit.getOnlinePlayers()) {
|
for(Player players : Bukkit.getOnlinePlayers()) {
|
||||||
players.showPlayer(p);
|
players.showPlayer(p);
|
||||||
}
|
}
|
||||||
players.remove(p);
|
players.remove(p);
|
||||||
p.sendMessage(Messages.PREFIX + "§eDu bist nun wieder §csichtbar");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_VANISH_OFF());
|
||||||
}else {
|
}else {
|
||||||
for(Player players : Bukkit.getOnlinePlayers()) {
|
for(Player players : Bukkit.getOnlinePlayers()) {
|
||||||
players.hidePlayer(p);
|
players.hidePlayer(p);
|
||||||
}
|
}
|
||||||
players.add(p);
|
players.add(p);
|
||||||
p.sendMessage(Messages.PREFIX + "§eDu bist nun §aunsichtbar");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_VANISH_ON());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NO_PERMS);
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
package eu.univento.core.commands;
|
package eu.univento.core.commands;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import org.bukkit.command.CommandSender;
|
|
||||||
import org.bukkit.entity.Player;
|
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import eu.univento.core.Core;
|
||||||
import eu.univento.core.api.AutoCommand;
|
import eu.univento.core.api.AutoCommand;
|
||||||
import eu.univento.core.api.Messages;
|
import eu.univento.core.api.languages.Messages;
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import eu.univento.core.api.youtube.YTAPI;
|
import eu.univento.core.api.youtube.YTAPI;
|
||||||
import eu.univento.core.api.youtube.YoutubeChannel;
|
import eu.univento.core.api.youtube.YoutubeChannel;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sets player to youtube rank
|
* sets player to youtube rank
|
||||||
|
@ -33,24 +32,25 @@ public class Youtuber extends AutoCommand<Core>{
|
||||||
public boolean execute(CommandSender sender, String label, String[] args) {
|
public boolean execute(CommandSender sender, String label, String[] args) {
|
||||||
if(sender instanceof Player) {
|
if(sender instanceof Player) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
CustomPlayer p = CustomPlayer.getPlayer(sender.getName());
|
||||||
|
Messages msgs = new Messages(p);
|
||||||
if(args.length == 1) {
|
if(args.length == 1) {
|
||||||
YoutubeChannel yt = YTAPI.getYTChannelFromName(args[0]);
|
YoutubeChannel yt = YTAPI.getYTChannelFromName(args[0]);
|
||||||
if(yt != null) {
|
if(yt != null) {
|
||||||
p.sendMessage("§aBenutzername: " + yt.getUsername());
|
p.sendMessage("§aBenutzername: " + yt.getUsername());
|
||||||
p.sendMessage("§aGooglePlus ID: " + yt.getGoogleplusid());
|
p.sendMessage("§aGooglePlus ID: " + yt.getGoogleplusid());
|
||||||
p.sendMessage("§aZuletzt online: " + yt.getLastwebaccess());
|
p.sendMessage("§aZuletzt online: " + yt.getLastwebaccess());
|
||||||
p.sendMessage("§aVon: " + yt.getLocation());
|
p.sendMessage("§aVon: " + yt.getLocation());
|
||||||
p.sendMessage("§aAbos: " + yt.getSubscribers());
|
p.sendMessage("§aAbos: " + yt.getSubscribers());
|
||||||
p.sendMessage("§aVideo Watch Count: " + yt.getVideoWatchCount());
|
p.sendMessage("§aVideo Watch Count: " + yt.getVideoWatchCount());
|
||||||
p.sendMessage("§aViewcount: " + yt.getViewcount());
|
p.sendMessage("§aViewcount: " + yt.getViewcount());
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.PREFIX + "§cDer Youtube Kanal exsistiert nicht");
|
p.sendMessage(msgs.PREFIX() + "§cDer Youtube Kanal exsistiert nicht");
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.PREFIX + "§cBenutze doch /youtuber <Channel Name>");
|
p.sendMessage(msgs.PREFIX() + "§cBenutze doch /youtuber <Channel Name>");
|
||||||
}
|
}
|
||||||
}else {
|
}else {
|
||||||
sender.sendMessage(Messages.NOT_A_PLAYER);
|
sender.sendMessage(Messages.Console.NOT_A_PLAYER);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,46 +1,53 @@
|
||||||
package eu.univento.core.listeners;
|
package eu.univento.core.listeners;
|
||||||
|
|
||||||
import org.bukkit.event.EventHandler;
|
|
||||||
import org.bukkit.event.Listener;
|
|
||||||
import org.bukkit.event.block.BlockBreakEvent;
|
|
||||||
import org.bukkit.event.block.BlockPlaceEvent;
|
|
||||||
|
|
||||||
import eu.univento.core.api.Settings;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
import eu.univento.core.commands.Build;
|
import eu.univento.core.commands.Build;
|
||||||
|
import org.bukkit.event.EventHandler;
|
||||||
|
import org.bukkit.event.EventPriority;
|
||||||
|
import org.bukkit.event.Listener;
|
||||||
|
import org.bukkit.event.block.BlockBreakEvent;
|
||||||
|
import org.bukkit.event.block.BlockCanBuildEvent;
|
||||||
|
import org.bukkit.event.block.BlockPlaceEvent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* cancels building
|
* some stuff with blocks
|
||||||
* @author joethei
|
* @author joethei
|
||||||
* @version 1.0
|
* @version 1.0
|
||||||
*/
|
*/
|
||||||
public class Blocks implements Listener{
|
public class Blocks implements Listener{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* cancels block placement if player is not in build mode
|
||||||
* @param e BlockPlaceEvent
|
* @param e BlockPlaceEvent
|
||||||
*/
|
*/
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onBlockPlace(BlockPlaceEvent e) {
|
public void onBlockPlace(BlockPlaceEvent e) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer());
|
||||||
if(Settings.isBuild()) {
|
if(!Build.getPlayers().containsKey(p)) {
|
||||||
if(!Build.getPlayers().contains(p)) {
|
|
||||||
e.setCancelled(true);
|
e.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* cancels block breaking if player is not in build mode
|
||||||
* @param e BlockBreakEvent
|
* @param e BlockBreakEvent
|
||||||
*/
|
*/
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onBlockBreak(BlockBreakEvent e) {
|
public void onBlockBreak(BlockBreakEvent e) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer());
|
||||||
if(Settings.isBuild()) {
|
if(!Build.getPlayers().containsKey(p)) {
|
||||||
if(!Build.getPlayers().contains(p)) {
|
|
||||||
e.setCancelled(true);
|
e.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets buildable true so players can place blocks, even if vanished player is standing there
|
||||||
|
* @param e BlockCanBuildEvent
|
||||||
|
*/
|
||||||
|
@EventHandler(priority = EventPriority.LOW)
|
||||||
|
public void onBlockCanBuildEvent(BlockCanBuildEvent e){
|
||||||
|
e.setBuildable(true);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,15 +1,14 @@
|
||||||
package eu.univento.core.listeners;
|
package eu.univento.core.listeners;
|
||||||
|
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
|
import eu.univento.core.api.server.ServerSettings;
|
||||||
|
import net.md_5.bungee.api.ChatColor;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.bukkit.event.player.AsyncPlayerChatEvent;
|
import org.bukkit.event.player.AsyncPlayerChatEvent;
|
||||||
|
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.Settings;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
import net.md_5.bungee.api.ChatColor;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* manages chat
|
* manages chat
|
||||||
* @author joethei
|
* @author joethei
|
||||||
|
@ -23,23 +22,25 @@ public class Chat implements Listener{
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onChat(AsyncPlayerChatEvent e) {
|
public void onChat(AsyncPlayerChatEvent e) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
||||||
if(Settings.isMute()) {
|
Messages msgs = new Messages(p);
|
||||||
|
if(ServerSettings.isMute()) {
|
||||||
if(!p.isAllowed(Ranks.Supporter)) {
|
if(!p.isAllowed(Ranks.Supporter)) {
|
||||||
e.setCancelled(true);
|
e.setCancelled(true);
|
||||||
p.sendMessage(Messages.PREFIX + "§cMomentan ist dieser Server gemutet");
|
p.sendMessage(msgs.PREFIX() + msgs.Core_SERVER_MUTED());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!p.isMuted()) {
|
|
||||||
String format;
|
String format;
|
||||||
if(p.isAllowed(Ranks.Supporter)) {
|
if(p.isAllowed(Ranks.Youtuber)) {
|
||||||
|
if(p.isNicked() && !ServerSettings.isLobby()) {
|
||||||
format = p.getPrefix() + p.getDisplayName() + p.getSuffix() + ChatColor.translateAlternateColorCodes('&', e.getMessage());
|
format = p.getPrefix() + p.getDisplayName() + p.getSuffix() + ChatColor.translateAlternateColorCodes('&', e.getMessage());
|
||||||
|
}else {
|
||||||
|
format = p.getPrefix() + p.getDisplayName() + p.getSuffix() + ChatColor.translateAlternateColorCodes('&', e.getMessage());
|
||||||
|
}
|
||||||
}else {
|
}else {
|
||||||
format = p.getPrefix() + p.getDisplayName() + p.getSuffix() + e.getMessage();
|
format = p.getPrefix() + p.getDisplayName() + p.getSuffix() + e.getMessage();
|
||||||
}
|
}
|
||||||
e.setFormat(format);
|
e.setFormat(format);
|
||||||
}else {
|
|
||||||
p.sendMessage(Messages.PREFIX + "§cDu wurdest leider vom Chat ausgeschlossen");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -1,5 +1,9 @@
|
||||||
package eu.univento.core.listeners;
|
package eu.univento.core.listeners;
|
||||||
|
|
||||||
|
import eu.univento.core.Core;
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.Perms.Ranks;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
|
@ -8,11 +12,6 @@ import org.bukkit.event.Listener;
|
||||||
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
|
import org.bukkit.event.player.PlayerCommandPreprocessEvent;
|
||||||
import org.bukkit.help.HelpTopic;
|
import org.bukkit.help.HelpTopic;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
|
||||||
import eu.univento.core.api.Messages;
|
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* commands
|
* commands
|
||||||
* @author joethei
|
* @author joethei
|
||||||
|
@ -26,44 +25,35 @@ public class Commands implements Listener{
|
||||||
* @param e PlayerCommandPreprocessEvent
|
* @param e PlayerCommandPreprocessEvent
|
||||||
*/
|
*/
|
||||||
@EventHandler(priority = EventPriority.NORMAL)
|
@EventHandler(priority = EventPriority.NORMAL)
|
||||||
public void onPlayerPreprocess(PlayerCommandPreprocessEvent e) {
|
public void onPlayerCommandPreprocess(PlayerCommandPreprocessEvent e) {
|
||||||
if(!(e.isCancelled())) {
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer());
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
Messages msgs = new Messages(p);
|
||||||
|
if (!e.isCancelled()) {
|
||||||
String cmd = e.getMessage().split(" ")[0];
|
String cmd = e.getMessage().split(" ")[0];
|
||||||
HelpTopic topic = Bukkit.getServer().getHelpMap().getHelpTopic(cmd);
|
HelpTopic topic = Bukkit.getServer().getHelpMap().getHelpTopic(cmd);
|
||||||
if (topic == null) {
|
if (topic == null) {
|
||||||
String msg = Messages.COMMAND_NOT_FOUND;
|
p.sendMessage(msgs.COMMAND_NOT_FOUND());
|
||||||
p.sendMessage(msg);
|
|
||||||
e.setCancelled(true);
|
e.setCancelled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* custom reload
|
|
||||||
* @param e PlayerPreprocessEvent
|
|
||||||
*/
|
|
||||||
@EventHandler
|
|
||||||
public void onReload(PlayerCommandPreprocessEvent e) {
|
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
|
||||||
String cmd = e.getMessage();
|
String cmd = e.getMessage();
|
||||||
if(cmd.equalsIgnoreCase("/rl") || cmd.equalsIgnoreCase("/reload")) {
|
if(cmd.equalsIgnoreCase("/rl") || cmd.equalsIgnoreCase("/reload")) {
|
||||||
if(p.isAllowed(Ranks.Admin)) {
|
if(p.isAllowed(Ranks.Admin)) {
|
||||||
e.setCancelled(true);
|
e.setCancelled(true);
|
||||||
Bukkit.broadcastMessage(Messages.PREFIX + "§cAchtung der Server wird gleich neu geladen");
|
Bukkit.broadcastMessage(msgs.PREFIX() + "§cWarning ! Server will be restarted");
|
||||||
Bukkit.getScheduler().scheduleSyncDelayedTask(Core.getInstance(), new Runnable() {
|
Bukkit.getScheduler().scheduleSyncDelayedTask(Core.getInstance(), new Runnable() {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
for(Player players : Bukkit.getOnlinePlayers()) {
|
for(Player players : Bukkit.getOnlinePlayers()) {
|
||||||
players.kickPlayer("§cServer wurde neu geladen \n §6Bitte joine doch neu unter \n §bplay§5.§6univento§5.§aeu");
|
players.kickPlayer("§cServer has been restarted \n §6Please join again at: \n §bplay§5.§6univento§5.§aeu");
|
||||||
}
|
}
|
||||||
Bukkit.reload();
|
Bukkit.getServer().spigot().restart();
|
||||||
}
|
}
|
||||||
|
|
||||||
}, 100L);
|
}, 100L);
|
||||||
}else {
|
}else {
|
||||||
p.sendMessage(Messages.NO_PERMS);
|
p.sendMessage(msgs.NO_PERMS());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +1,36 @@
|
||||||
package eu.univento.core.listeners;
|
package eu.univento.core.listeners;
|
||||||
|
|
||||||
import java.sql.ResultSet;
|
import eu.univento.core.Core;
|
||||||
import java.sql.SQLException;
|
import eu.univento.core.api.Title;
|
||||||
import java.sql.Timestamp;
|
import eu.univento.core.api.Utils;
|
||||||
import java.util.Date;
|
import eu.univento.core.api.database.MySQL;
|
||||||
|
import eu.univento.core.api.languages.Messages;
|
||||||
|
import eu.univento.core.api.player.CustomPlayer;
|
||||||
|
import eu.univento.core.api.player.NickName;
|
||||||
|
import eu.univento.core.api.player.Perms;
|
||||||
|
import eu.univento.core.api.player.Spectator;
|
||||||
|
import eu.univento.core.api.server.ServerSettings;
|
||||||
|
import eu.univento.core.commands.Build;
|
||||||
|
import eu.univento.core.commands.Vanish;
|
||||||
import org.bukkit.Bukkit;
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.Material;
|
||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.EventPriority;
|
import org.bukkit.event.EventPriority;
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
import org.bukkit.event.player.PlayerJoinEvent;
|
import org.bukkit.event.player.PlayerJoinEvent;
|
||||||
import org.bukkit.event.player.PlayerKickEvent;
|
import org.bukkit.event.player.PlayerKickEvent;
|
||||||
|
import org.bukkit.event.player.PlayerLoginEvent;
|
||||||
import org.bukkit.event.player.PlayerQuitEvent;
|
import org.bukkit.event.player.PlayerQuitEvent;
|
||||||
|
import org.bukkit.inventory.Inventory;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.bukkit.inventory.meta.ItemMeta;
|
||||||
|
|
||||||
import eu.univento.core.Core;
|
import java.sql.PreparedStatement;
|
||||||
import eu.univento.core.api.Messages;
|
import java.sql.ResultSet;
|
||||||
import eu.univento.core.api.MySQL;
|
import java.sql.SQLException;
|
||||||
import eu.univento.core.api.Utils;
|
import java.sql.Timestamp;
|
||||||
import eu.univento.core.api.player.CustomPlayer;
|
import java.util.Date;
|
||||||
import eu.univento.core.api.player.NickName;
|
|
||||||
import eu.univento.core.api.player.Perms;
|
|
||||||
import eu.univento.core.api.player.Perms.Ranks;
|
|
||||||
import eu.univento.core.commands.Vanish;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author joethei
|
* @author joethei
|
||||||
|
@ -34,68 +42,111 @@ public class JoinQuit implements Listener{
|
||||||
* Handles JoinMessage and vanished players
|
* Handles JoinMessage and vanished players
|
||||||
* @param e event
|
* @param e event
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onJoin(PlayerJoinEvent e) {
|
public void onJoin(PlayerJoinEvent e) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer());
|
||||||
if(!p.hasPlayedBefore()) {
|
Messages msgs = new Messages(p);
|
||||||
createPlayer(p);
|
|
||||||
p.sendMessage(Messages.PREFIX + "§aHerzlich willkommen auf univento.eu");
|
p.setScoreboard(Bukkit.getScoreboardManager().getNewScoreboard());
|
||||||
p.sendMessage(Messages.PREFIX + "§6Dem Netzwerk mit Style");
|
|
||||||
for(int i = 0; i >= 15; i++) {
|
|
||||||
Utils.randomFireworks(p.getEyeLocation());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
e.setJoinMessage(null);
|
|
||||||
Perms.getRanks().put(p, p.getRankFresh());
|
|
||||||
p.getTeam().addPlayer(p);
|
|
||||||
p.setScoreboard(Bukkit.getScoreboardManager().getMainScoreboard());
|
|
||||||
try {
|
|
||||||
setup(p, p.getRank());
|
|
||||||
} catch (SQLException e1) {
|
|
||||||
e1.printStackTrace();
|
|
||||||
}
|
|
||||||
for(Player players : Bukkit.getOnlinePlayers()) {
|
for(Player players : Bukkit.getOnlinePlayers()) {
|
||||||
if(Vanish.getPlayers().contains(players)) {
|
CustomPlayer player = CustomPlayer.getPlayer(players);
|
||||||
p.hidePlayer(players);
|
if(Vanish.getPlayers().contains(player)) {
|
||||||
|
p.hidePlayer(player);
|
||||||
|
}
|
||||||
|
if(Spectator.is(player)) {
|
||||||
|
p.hidePlayer(player);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(p.isNicked()) {
|
if(p.isNicked()) {
|
||||||
p.setDisplayName(p.getNick());
|
p.setDisplayName(p.getNick());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!p.isSetting("joined")) {
|
||||||
|
p.changeSetting("joined");
|
||||||
}
|
}
|
||||||
|
if(!p.hasPlayedBefore()) {
|
||||||
|
createPlayer(p);
|
||||||
|
Perms.getRanks().put(p, p.getFreshRank());
|
||||||
|
for(int i = 0; i >= 15; i++) {
|
||||||
|
Utils.randomFirework(p.getEyeLocation());
|
||||||
|
}
|
||||||
|
Title.sendTitle(p, 0, 100, 0, "§6Welcome", "§aPlease choose a language");
|
||||||
|
Bukkit.getScheduler().scheduleSyncDelayedTask(Core.getInstance(), () -> p.openInventory(getLanguageChooser(p)), 140L);
|
||||||
|
}
|
||||||
|
Perms.getRanks().put(p, p.getFreshRank());
|
||||||
|
Perms.initScoreboard(p);
|
||||||
|
Title.sendTabTitle(p, msgs.Core_TAB_TITLE() + Bukkit.getServerName() , msgs.PREFIX());
|
||||||
|
p.setGameMode(ServerSettings.getGameMode());
|
||||||
|
p.checkVerifiedTs();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
for(Player players : Bukkit.getOnlinePlayers()) {
|
||||||
|
CustomPlayer player = CustomPlayer.getPlayer(players);
|
||||||
|
p.getScoreboard().getTeam(player.getTeam().getName()).addEntry(player.getDisplayName());
|
||||||
|
player.getScoreboard().getTeam(p.getTeam().getName()).addEntry(p.getDisplayName());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onLogin(PlayerLoginEvent e) {
|
||||||
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer());
|
||||||
|
//Core.log(Level.INFO, "PlayerLogin " + p.getName() + " | " + p.isBanned());
|
||||||
|
//if(p.isBanned()) {
|
||||||
|
// e.disallow(PlayerLoginEvent.Result.KICK_BANNED, "§cYou have been banned. §6Reason: " + p.getBanReason() + "\nUntil: " + p.getBanTime());
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles QuitMessage and other needed stuff
|
* Handles QuitMessage and other needed stuff
|
||||||
* @param e event
|
* @param e event
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("deprecation")
|
|
||||||
@EventHandler
|
@EventHandler
|
||||||
public void onQuit(PlayerQuitEvent e) {
|
public void onQuit(PlayerQuitEvent e) {
|
||||||
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer().getName());
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer());
|
||||||
NickName.remove(p);
|
NickName.remove(p);
|
||||||
|
if(Build.getPlayers().containsKey(p))
|
||||||
|
Build.getPlayers().remove(p);
|
||||||
|
if(!ServerSettings.isGame())
|
||||||
|
p.getTeam().removeEntry(p.getDisplayName());
|
||||||
|
if(ServerSettings.isGame())
|
||||||
|
p.setNicked(false);
|
||||||
Perms.getRanks().remove(p);
|
Perms.getRanks().remove(p);
|
||||||
p.getTeam().removePlayer(p);
|
|
||||||
p.onLeave();
|
p.onLeave();
|
||||||
e.setQuitMessage(null);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* creates player in database
|
* creates player in database
|
||||||
* @param p CustomPlayer
|
* @param p CustomPlayer
|
||||||
*/
|
*/
|
||||||
private static void createPlayer(CustomPlayer p) {
|
void createPlayer(CustomPlayer p) {
|
||||||
|
MySQL sql = Core.returnSQL();
|
||||||
Date date = new Date();
|
Date date = new Date();
|
||||||
Timestamp time = new Timestamp(date.getTime());
|
Timestamp time = new Timestamp(date.getTime());
|
||||||
String uuid = p.getUniqueId().toString();
|
String uuid = p.getUniqueId().toString();
|
||||||
try {
|
try {
|
||||||
MySQL sql = Core.returnSQL();
|
|
||||||
sql.openConnection();
|
sql.openConnection();
|
||||||
ResultSet res = Core.returnSQL().getConnection().createStatement().executeQuery("SELECT player_uuid FROM PlayerData WHERE player_uuid ='" + uuid + "';");
|
PreparedStatement st = sql.getConnection().prepareStatement("SELECT UUID FROM users WHERE UUID ='" + uuid + "'");
|
||||||
if (!res.next())
|
ResultSet res = st.executeQuery();
|
||||||
Core.returnSQL().getConnection().createStatement().execute("INSERT INTO PlayerData (player_uuid, FirstJoin, Coins, mute, Rank, nick, FastMenu, teleport) VALUES ('" + uuid + "','" + time + "', '0', '0', '" + Perms.Ranks.Spieler.toString() + "', '0', '0', '1');");
|
if (!res.next()){
|
||||||
|
PreparedStatement st2 = sql.getConnection().prepareStatement("INSERT INTO users (UUID, FirstJoin, Rank, Coins) VALUES ('" + uuid + "','" + time + "', '" + Perms.Ranks.Player.toString() + "', 0);");
|
||||||
|
st2.execute();
|
||||||
|
|
||||||
|
int id = p.getID();
|
||||||
|
|
||||||
|
PreparedStatement st3 = sql.getConnection().prepareStatement("INSERT INTO PlayerSettings (ID, teleport, FastMenu, requestsParty, requestsFriend, joined, nick) VALUES ('" + id +"', '1', '0', '1', '1', '0', '0',);");
|
||||||
|
st3.execute();
|
||||||
|
|
||||||
|
PreparedStatement st4 = sql.getConnection().prepareStatement("INSERT INTO FoundItems(ID, music_3, sugar, feather, hearts) VALUES ('" + id + "',0, 0, 0, 0);");
|
||||||
|
st4.execute();
|
||||||
|
|
||||||
|
sql.closeConnection();
|
||||||
|
return;
|
||||||
|
}
|
||||||
sql.closeConnection();
|
sql.closeConnection();
|
||||||
}
|
}
|
||||||
catch (SQLException | ClassNotFoundException e) {
|
catch (SQLException | ClassNotFoundException e) {
|
||||||
|
@ -103,37 +154,41 @@ public class JoinQuit implements Listener{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* sets up the player
|
|
||||||
* @param p CustomPlayer
|
|
||||||
* @param r Ranks
|
|
||||||
* @throws SQLException Database not available
|
|
||||||
*/
|
|
||||||
private void setup(CustomPlayer p, Ranks r) throws SQLException {
|
|
||||||
if (p.isNicked()) {
|
|
||||||
Core.nicks.put(p, NickName.getNicks());
|
|
||||||
setName(p, Core.nicks.get(p));
|
|
||||||
} else {
|
|
||||||
setName(p, p.getName());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* sets DisplayName of Player
|
|
||||||
* @param p CustomPlayer
|
|
||||||
* @param name name to set
|
|
||||||
*/
|
|
||||||
private void setName(CustomPlayer p, String name) {
|
|
||||||
p.setDisplayName(name);
|
|
||||||
p.setPlayerListName(p.getColor() + name);
|
|
||||||
}
|
|
||||||
/**
|
/**
|
||||||
* Handles KickMessage
|
* Handles KickMessage
|
||||||
* @param e event
|
* @param e event
|
||||||
*/
|
*/
|
||||||
@EventHandler(priority=EventPriority.HIGHEST)
|
@EventHandler(priority=EventPriority.HIGHEST)
|
||||||
public void onKick(PlayerKickEvent e) {
|
public void onKick(PlayerKickEvent e) {
|
||||||
|
CustomPlayer p = CustomPlayer.getPlayer(e.getPlayer());
|
||||||
e.setLeaveMessage(null);
|
e.setLeaveMessage(null);
|
||||||
NickName.remove(e.getPlayer());
|
p.setNicked(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Inventory getLanguageChooser(CustomPlayer p) {
|
||||||
|
Inventory inv = Bukkit.createInventory(p, 9, "§6Language Chooser");
|
||||||
|
|
||||||
|
ItemStack en = new ItemStack(Material.PAPER);
|
||||||
|
ItemMeta enMeta = en.getItemMeta();
|
||||||
|
enMeta.setDisplayName("§6English");
|
||||||
|
en.setItemMeta(enMeta);
|
||||||
|
|
||||||
|
ItemStack de = new ItemStack(Material.PAPER);
|
||||||
|
ItemMeta deMeta = de.getItemMeta();
|
||||||
|
deMeta.setDisplayName("§6Deutsch");
|
||||||
|
de.setItemMeta(deMeta);
|
||||||
|
|
||||||
|
|
||||||
|
ItemStack it = new ItemStack(Material.PAPER);
|
||||||
|
ItemMeta itMeta = it.getItemMeta();
|
||||||
|
itMeta.setDisplayName("§6Italienisch");
|
||||||
|
it.setItemMeta(itMeta);
|
||||||
|
|
||||||
|
inv.setItem(0, en);
|
||||||
|
inv.setItem(1, de);
|
||||||
|
inv.setItem(2, it);
|
||||||
|
|
||||||
|
return inv;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,5 +2,5 @@ main: eu.univento.core.Core
|
||||||
name: Core
|
name: Core
|
||||||
description: univento Core
|
description: univento Core
|
||||||
author: joethei
|
author: joethei
|
||||||
version: 0.5
|
version: 0.6
|
||||||
website: http://univento.eu
|
website: http://univento.eu
|
Loading…
Reference in New Issue