From f6692f60908b57efc4defb43573dc12c5b1846b8 Mon Sep 17 00:00:00 2001 From: Baitinq Date: Wed, 21 Mar 2018 20:52:28 +0000 Subject: Initial commit --- .gitattributes | 2 + .idea/artifacts/PrimalMC_jar.xml | 8 + .idea/libraries/Lombok_1_6_6.xml | 9 + .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/workspace.xml | 930 +++++++++++++++++++++ LICENSE | 201 +++++ PrimalMC.iml | 23 + README.md | 1 + out/production/PrimalMC/Main.iml | 23 + .../PrimalMC/com/baitinq/primalmc/Main.class | Bin 0 -> 4625 bytes .../baitinq/primalmc/Scoreboard/Scoreboard.class | Bin 0 -> 555 bytes .../baitinq/primalmc/commands/BaitinqCommand.class | Bin 0 -> 327 bytes .../baitinq/primalmc/commands/DiscordCommand.class | Bin 0 -> 1426 bytes .../baitinq/primalmc/commands/StaffCommand.class | Bin 0 -> 2980 bytes .../baitinq/primalmc/commands/StoreCommand.class | Bin 0 -> 1437 bytes .../primalmc/commands/TeamspeakCommand.class | Bin 0 -> 1454 bytes .../baitinq/primalmc/commands/VanishCommand.class | Bin 0 -> 1826 bytes .../baitinq/primalmc/commands/WebsiteCommand.class | Bin 0 -> 1445 bytes .../com/baitinq/primalmc/events/FirstLogin.class | Bin 0 -> 1991 bytes .../com/baitinq/primalmc/events/HubEvents.class | Bin 0 -> 4004 bytes .../com/baitinq/primalmc/events/PlayerJoin.class | Bin 0 -> 1565 bytes .../primalmc/events/StaffEvents/Events.class | Bin 0 -> 1683 bytes .../com/baitinq/primalmc/events/StaffJoin.class | Bin 0 -> 1712 bytes .../primalmc/inventories/StaffInventory.class | Bin 0 -> 2401 bytes .../com/baitinq/primalmc/utils/ChatUtils.class | Bin 0 -> 1229 bytes .../primalmc/utils/ConfigurationManager.class | Bin 0 -> 2489 bytes out/production/PrimalMC/config.yml | 3 + out/production/PrimalMC/players.yml | 1 + out/production/PrimalMC/plugin.yml | 21 + src/Main.iml | 23 + src/com/baitinq/primalmc/Main.java | 116 +++ .../baitinq/primalmc/Scoreboard/Scoreboard.java | 22 + .../baitinq/primalmc/commands/BaitinqCommand.java | 4 + .../baitinq/primalmc/commands/DiscordCommand.java | 24 + .../baitinq/primalmc/commands/PanicCommand.java | 41 + .../baitinq/primalmc/commands/StaffCommand.java | 86 ++ .../baitinq/primalmc/commands/StoreCommand.java | 24 + .../primalmc/commands/TeamspeakCommand.java | 24 + .../baitinq/primalmc/commands/VanishCommand.java | 47 ++ .../baitinq/primalmc/commands/WebsiteCommand.java | 24 + src/com/baitinq/primalmc/events/FirstLogin.java | 32 + src/com/baitinq/primalmc/events/HubEvents.java | 78 ++ src/com/baitinq/primalmc/events/PlayerJoin.java | 31 + .../primalmc/events/StaffEvents/Events.java | 53 ++ src/com/baitinq/primalmc/events/StaffJoin.java | 30 + .../primalmc/inventories/Items/StaffItems.java | 40 + .../primalmc/inventories/StaffInventory.java | 25 + src/com/baitinq/primalmc/utils/ChatUtils.java | 28 + .../primalmc/utils/ConfigurationManager.java | 59 ++ src/config.yml | 3 + src/players.yml | 1 + src/plugin.yml | 21 + 53 files changed, 2072 insertions(+) create mode 100644 .gitattributes create mode 100644 .idea/artifacts/PrimalMC_jar.xml create mode 100644 .idea/libraries/Lombok_1_6_6.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/workspace.xml create mode 100644 LICENSE create mode 100644 PrimalMC.iml create mode 100644 README.md create mode 100644 out/production/PrimalMC/Main.iml create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/Main.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/Scoreboard/Scoreboard.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/commands/BaitinqCommand.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/commands/DiscordCommand.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/commands/StaffCommand.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/commands/StoreCommand.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/commands/TeamspeakCommand.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/commands/VanishCommand.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/commands/WebsiteCommand.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/events/FirstLogin.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/events/HubEvents.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/events/PlayerJoin.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/events/StaffEvents/Events.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/events/StaffJoin.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/inventories/StaffInventory.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/utils/ChatUtils.class create mode 100644 out/production/PrimalMC/com/baitinq/primalmc/utils/ConfigurationManager.class create mode 100644 out/production/PrimalMC/config.yml create mode 100644 out/production/PrimalMC/players.yml create mode 100644 out/production/PrimalMC/plugin.yml create mode 100644 src/Main.iml create mode 100644 src/com/baitinq/primalmc/Main.java create mode 100644 src/com/baitinq/primalmc/Scoreboard/Scoreboard.java create mode 100644 src/com/baitinq/primalmc/commands/BaitinqCommand.java create mode 100644 src/com/baitinq/primalmc/commands/DiscordCommand.java create mode 100644 src/com/baitinq/primalmc/commands/PanicCommand.java create mode 100644 src/com/baitinq/primalmc/commands/StaffCommand.java create mode 100644 src/com/baitinq/primalmc/commands/StoreCommand.java create mode 100644 src/com/baitinq/primalmc/commands/TeamspeakCommand.java create mode 100644 src/com/baitinq/primalmc/commands/VanishCommand.java create mode 100644 src/com/baitinq/primalmc/commands/WebsiteCommand.java create mode 100644 src/com/baitinq/primalmc/events/FirstLogin.java create mode 100644 src/com/baitinq/primalmc/events/HubEvents.java create mode 100644 src/com/baitinq/primalmc/events/PlayerJoin.java create mode 100644 src/com/baitinq/primalmc/events/StaffEvents/Events.java create mode 100644 src/com/baitinq/primalmc/events/StaffJoin.java create mode 100644 src/com/baitinq/primalmc/inventories/Items/StaffItems.java create mode 100644 src/com/baitinq/primalmc/inventories/StaffInventory.java create mode 100644 src/com/baitinq/primalmc/utils/ChatUtils.java create mode 100644 src/com/baitinq/primalmc/utils/ConfigurationManager.java create mode 100644 src/config.yml create mode 100644 src/players.yml create mode 100644 src/plugin.yml diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..dfe0770 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Auto detect text files and perform LF normalization +* text=auto diff --git a/.idea/artifacts/PrimalMC_jar.xml b/.idea/artifacts/PrimalMC_jar.xml new file mode 100644 index 0000000..d831fb6 --- /dev/null +++ b/.idea/artifacts/PrimalMC_jar.xml @@ -0,0 +1,8 @@ + + + $USER_HOME$/Desktop/TestServer/plugins + + + + + \ No newline at end of file diff --git a/.idea/libraries/Lombok_1_6_6.xml b/.idea/libraries/Lombok_1_6_6.xml new file mode 100644 index 0000000..94252ac --- /dev/null +++ b/.idea/libraries/Lombok_1_6_6.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0548357 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..3c061e1 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..79ee29e --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,930 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +