Warps with a twist

Discussion in 'Plugin Requests' started by TheMinecraftKnight, Mar 17, 2016.

Thread Status:
Not open for further replies.
  1. Plugin category: Warping / Donations

    Suggested name: PermissionWarps

    What I want: I'd like a plugin for warping. Except it has a twist. If you're a normal player and does eg /warp shop, you will be taken to the default shop. If you are a donator and has warp.donator.shop then they will be warped to the Donator shop. I'd like it in the same format as Essentials warping, and with a 2 second cooldown (You will be warped in 2 seconds. Don't move or whatever it says).

    Ideas for commands: /setwarp, /delwarp and /warp

    Ideas for permissions: warp.default.[warp], warp.donator.[warp]

    When I'd like it by: Any time is fine but ASAP please

    Thanks!

    B..b..ump?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Mar 17, 2016
  2. I can attempt to make this. Although I have no experience using a permissions API. Speaking of, what permissions plugin are you using? PEX or GrtoupManager?
     
  3. Offline

    sniddunc

    You probably wouldn't need to use a permissions manager.
    You can just check if the player has a specific permission.

    PHP:
    if (player.hasPermission("warps.shop.donor") {

        (
    code to warp to donor shop here)
    }

    else {
        (
    code to warp to default shop here)
    }
    So if the player or whatever group they're in has the permissions node you'd choose, they would be teleported to the donor shop. If they don't they'd be teleported to the default shop.
     
  4. Ah
    Makes sense. Ill give it a go.
     
  5. Sorry for the delay, but my computer crashed not too long ago and I lost everything. Now I need to go re-download my IDE, JDK etc. But I'll still try to get it done ASAP.

    @TheMinecraftKnight
     
  6. Offline

    pie_flavor

  7. Last edited: Mar 18, 2016
  8. Offline

    pie_flavor

  9. @pie_flavor I hope you understand that wasted my time. :( Please try not to make plugins already claimed next time...
     
  10. Don't worry, I still appreciate the gesture :)
     
  11. @TheMinecraftKnight

    Thanks. :) Although its not about that. Its about the fact that I need practice making a bukkit plugin (as I'm new to bukkit), and him taking my chance just seemed very rude. Thanks though. :D
     
  12. /warp still doesn't work
    Console (open)
    18.03 12:31:04 [Server] INFO MutantCreeper70 issued server command: /warp Furnace 18.03 12:31:04 [Server] ERROR null 18.03 12:31:04 [Server] INFO org.bukkit.command.CommandException: Unhandled exception executing command 'warp' in plugin PermissionWarps v1.0 18.03 12:31:04 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:46) ~[custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:141) ~[custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.dispatchCommand(CraftServer.java:641) ~[custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1162) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:997) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_66] 18.03 12:31:04 [Server] INFO at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_66] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557) [custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_66] 18.03 12:31:04 [Server] INFO Caused by: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 18.03 12:31:04 [Server] INFO at java.util.ArrayList.rangeCheck(ArrayList.java:653) ~[?:1.8.0_66] 18.03 12:31:04 [Server] INFO at java.util.ArrayList.get(ArrayList.java:429) ~[?:1.8.0_66] 18.03 12:31:04 [Server] INFO at flavor.pie.PermissionWarps.onCommand(PermissionWarps.java:59) ~[?:?] 18.03 12:31:04 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:44) ~[custom.jar:git-Spigot-db6de12-18fbb24] 18.03 12:31:04 [Server] INFO ... 15 more

    If you want to practice I could do with another plugin?
     
  13. Depends if its within my knowledge range :)
     
  14. Offline

    pie_flavor

  15. Newp:
    Code:
    19.03 04:21:51 [Server] INFO KnightzYT issued server command: /warp
    19.03 04:21:54 [Server] INFO KnightzYT issued server command: /warp furnace
    19.03 04:21:58 [Server] INFO KnightzYT issued server command: /warp Furnace
    19.03 04:21:58 [Server] ERROR null
    19.03 04:21:58 [Server] INFO org.bukkit.command.CommandException: Unhandled exception executing command 'warp' in plugin PermissionWarps v1.0
    19.03 04:21:58 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:46) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:141) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.dispatchCommand(CraftServer.java:641) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1162) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:997) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_66]
    19.03 04:21:58 [Server] INFO at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_66]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_66]
    19.03 04:21:58 [Server] INFO Caused by: java.lang.IllegalArgumentException: Name cannot be null
    19.03 04:21:58 [Server] INFO at org.apache.commons.lang.Validate.notNull(Validate.java:192) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.getWorld(CraftServer.java:1014) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO at flavor.pie.PermissionWarps.onCommand(PermissionWarps.java:58) ~[?:?]
    19.03 04:21:58 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:44) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:21:58 [Server] INFO ... 15 more
    19.03 04:22:19 [Server] INFO KnightzYT issued server command: /warp Furnace KnightzYT
    19.03 04:22:19 [Server] ERROR null
    19.03 04:22:19 [Server] INFO org.bukkit.command.CommandException: Unhandled exception executing command 'warp' in plugin PermissionWarps v1.0
    19.03 04:22:19 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:46) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:141) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.dispatchCommand(CraftServer.java:641) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1162) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:997) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_66]
    19.03 04:22:19 [Server] INFO at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_66]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_66]
    19.03 04:22:19 [Server] INFO Caused by: java.lang.IllegalArgumentException: Name cannot be null
    19.03 04:22:19 [Server] INFO at org.apache.commons.lang.Validate.notNull(Validate.java:192) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.getWorld(CraftServer.java:1014) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO at flavor.pie.PermissionWarps.onCommand(PermissionWarps.java:58) ~[?:?]
    19.03 04:22:19 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:44) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:19 [Server] INFO ... 15 more
    19.03 04:22:20 [Server] INFO CONSOLE issued server command: /list
    19.03 04:22:20 [Server] INFO Staff: Owner > _KnightzYT_ < Owns you all
    19.03 04:22:33 [Server] INFO KnightzYT issued server command: /setwarp
    19.03 04:22:38 [Server] INFO KnightzYT issued server command: /setwarp test default
    19.03 04:22:54 [Server] INFO KnightzYT issued server command: /setwarp test warp.test.donor
    19.03 04:22:59 [Server] INFO KnightzYT issued server command: /warp test
    19.03 04:22:59 [Server] ERROR null
    19.03 04:22:59 [Server] INFO org.bukkit.command.CommandException: Unhandled exception executing command 'warp' in plugin PermissionWarps v1.0
    19.03 04:22:59 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:46) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:141) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.dispatchCommand(CraftServer.java:641) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1162) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:997) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_66]
    19.03 04:22:59 [Server] INFO at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_66]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557) [custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_66]
    19.03 04:22:59 [Server] INFO Caused by: java.lang.IllegalArgumentException: Name cannot be null
    19.03 04:22:59 [Server] INFO at org.apache.commons.lang.Validate.notNull(Validate.java:192) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.CraftServer.getWorld(CraftServer.java:1014) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO at flavor.pie.PermissionWarps.onCommand(PermissionWarps.java:58) ~[?:?]
    19.03 04:22:59 [Server] INFO at org.bukkit.command.PluginCommand.execute(PluginCommand.java:44) ~[custom.jar:git-Spigot-db6de12-18fbb24]
    19.03 04:22:59 [Server] INFO ... 15 more
    Ok... I've got another thing I need, here, take a look:

    https://bukkit.org/threads/teleportals.411907/

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Mar 19, 2016
  16. Offline

    pie_flavor

    @TheMinecraftKnight Oh, sorry, should have said. Previous error was caused by saving wrong to the config, so you'll have to delete warps.yml for the fix to work.
     
  17. Ok, thanks for the advise. I will post if there's any more problems :) Quick question: If the player has * which warp will they be taken to?
     
  18. Offline

    pie_flavor

    @TheMinecraftKnight The order they are written in warps.yml is the order of inheritance. So if the config is listed example.permission1, then example.permission2, then permission.example3 (ignoring default) then a player with both example.permission1 and example.permission2 will go to the warp for example.permission1.
     
  19. Sorry for the incredibly late reply, I've been quite busy lately.
    Sorry to bother you, but I'm still getting the same problem:

    Console (open)
    16.04 03:29:15 [Server] INFO KnightzYT issued server command: /setwarp shop * 16.04 03:29:21 [Server] INFO KnightzYT issued server command: /warp shop 16.04 03:29:21 [Server] FATAL Error executing task 16.04 03:29:21 [Server] INFO java.util.concurrent.ExecutionException: java.lang.NullPointerException 16.04 03:29:21 [Server] INFO at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:45) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.B(MinecraftServer.java:715) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.DedicatedServer.B(DedicatedServer.java:374) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.A(MinecraftServer.java:654) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.MinecraftServer.run(MinecraftServer.java:557) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at java.lang.Thread.run(Thread.java:745) [?:1.8.0_66] 16.04 03:29:21 [Server] INFO Caused by: java.lang.NullPointerException 16.04 03:29:21 [Server] INFO at java.util.regex.Matcher.getTextLength(Matcher.java:1283) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at java.util.regex.Matcher.reset(Matcher.java:309) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at java.util.regex.Matcher.<init>(Matcher.java:229) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at java.util.regex.Pattern.matcher(Pattern.java:1093) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at me.mrCookieSlime.CSCoreLibPlugin.CSCoreLib$1.filter(CSCoreLib.java:83) ~[?:?] 16.04 03:29:21 [Server] INFO at me.mrCookieSlime.CSCoreLibPlugin.CSCoreLib$1.filter(CSCoreLib.java:92) ~[?:?] 16.04 03:29:21 [Server] INFO at org.apache.logging.log4j.core.filter.CompositeFilter.filter(CompositeFilter.java:231) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at org.apache.logging.log4j.core.filter.CompositeFilter.filter(CompositeFilter.java:231) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at org.apache.logging.log4j.core.filter.AbstractFilterable.isFiltered(AbstractFilterable.java:124) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at org.apache.logging.log4j.core.config.LoggerConfig.log(LoggerConfig.java:400) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at org.apache.logging.log4j.core.config.LoggerConfig.log(LoggerConfig.java:367) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at org.apache.logging.log4j.core.Logger.log(Logger.java:110) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at org.apache.logging.log4j.spi.AbstractLogger.error(AbstractLogger.java:609) [custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at org.bukkit.craftbukkit.v1_8_R3.util.ForwardLogHandler.publish(ForwardLogHandler.java:33) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at java.util.logging.Logger.log(Logger.java:738) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at java.util.logging.Logger.doLog(Logger.java:765) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at java.util.logging.Logger.log(Logger.java:875) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.handleCommand(PlayerConnection.java:1168) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnection.a(PlayerConnection.java:997) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:45) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.PacketPlayInChat.a(PacketPlayInChat.java:1) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.PlayerConnectionUtils$1.run(SourceFile:13) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at java.util.concurrent.FutureTask.run(FutureTask.java:266) ~[?:1.8.0_66] 16.04 03:29:21 [Server] INFO at net.minecraft.server.v1_8_R3.SystemUtils.a(SourceFile:44) ~[custom.jar:git-Spigot-db6de12-18fbb24] 16.04 03:29:21 [Server] INFO ... 5 more

    Any Ideas?
     
  20. Online

    timtower Administrator Administrator Moderator

    TheMinecraftKnight likes this.
  21. Offline

    mrCookieSlime

    Would be a matter of 10 minutes, but I am not particularily interested in this one, also need to work on my Game.
     
  22. Online

    timtower Administrator Administrator Moderator

    Check the console log ;) your name is in it.
     
  23. Offline

    mrCookieSlime

    Had about 1 hour of sleep last night, so bear with me.

    Anyway, that's log4j telling me to do a null check.
    My Plugin isn't causing it, my log handler is simply catching it.

    @TheMinecraftKnight
    I will fix the one with CS-CoreLib in it in the next Update of CS-CoreLib.
     
    timtower likes this.
Thread Status:
Not open for further replies.

Share This Page