├── .gitignore ├── README.MD ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── localjar └── EverNifeCore-2.0.3.jar ├── settings.gradle.kts └── src └── main ├── java └── github │ └── gilbertokpl │ └── total │ ├── TotalEssentials.java │ └── config │ └── files │ ├── LangConfig.java │ └── MainConfig.java ├── kotlin └── github │ └── gilbertokpl │ ├── core │ ├── TotalCore.kt │ ├── cache │ │ ├── CacheManager.kt │ │ ├── builder │ │ │ ├── ByteBuilder.kt │ │ │ ├── HashMapBuilder.kt │ │ │ ├── ListBuilder.kt │ │ │ ├── LocationBuilder.kt │ │ │ └── SimpleBuilder.kt │ │ └── interfaces │ │ │ ├── ICache.kt │ │ │ ├── ICacheBuilder.kt │ │ │ ├── ICacheBuilderExtended.kt │ │ │ └── ICacheSerializer.kt │ ├── command │ │ ├── CommandManager.kt │ │ ├── interfaces │ │ │ └── ICommand.kt │ │ ├── pattern │ │ │ └── CommandPattern.kt │ │ └── type │ │ │ └── CommandTargetType.kt │ ├── config │ │ ├── ConfigManager.kt │ │ ├── annotations │ │ │ ├── Comment.kt │ │ │ ├── ConfigPattern.kt │ │ │ ├── MultiComment.kt │ │ │ ├── MultiValue.kt │ │ │ ├── RootComment.kt │ │ │ ├── RootComments.kt │ │ │ └── Value.kt │ │ ├── defaults │ │ │ ├── DefaultConfig.kt │ │ │ └── DefaultLang.kt │ │ ├── types │ │ │ ├── LangTypes.kt │ │ │ └── ObjectTypes.kt │ │ └── values │ │ │ └── ConfigValue.kt │ ├── event │ │ └── EventManager.kt │ ├── internal │ │ └── serializator │ │ │ ├── AES.kt │ │ │ ├── InternalBukkitObjectInputStream.kt │ │ │ ├── InternalBukkitObjectOutputStream.kt │ │ │ ├── ItemSerializer.kt │ │ │ └── Wrapper.kt │ ├── task │ │ ├── TaskManager.kt │ │ └── bukkit │ │ │ └── BukkitDispatcher.kt │ └── utils │ │ ├── ColorUtil.kt │ │ ├── ConsoleColorUtil.kt │ │ ├── DatabaseUtil.kt │ │ ├── EncryptUtil.kt │ │ ├── FileLogger.kt │ │ ├── HostUtil.kt │ │ ├── InventoryUtil.kt │ │ ├── ReflectionUtil.kt │ │ └── TimeUtil.kt │ └── total │ ├── cache │ ├── data │ │ ├── KeyData.kt │ │ ├── KitsData.kt │ │ ├── LoginData.kt │ │ ├── PlayerData.kt │ │ ├── ShopData.kt │ │ ├── SpawnData.kt │ │ ├── VipData.kt │ │ ├── WarpData.kt │ │ └── test │ │ │ └── LimitData.kt │ ├── internal │ │ ├── Data.kt │ │ ├── DataTeleport.kt │ │ └── InternalLoader.kt │ ├── inventory │ │ ├── EditKit.kt │ │ ├── Kit.kt │ │ ├── Playtime.kt │ │ └── Shop.kt │ ├── loop │ │ ├── AnnounceLoop.kt │ │ ├── AntiAfkLoop.kt │ │ ├── ClearEntitiesLoop.kt │ │ ├── DiscordLoop.kt │ │ └── PluginLoop.kt │ ├── serializer │ │ ├── CommandsSerializer.kt │ │ ├── HomeSerializer.kt │ │ ├── ItemSerializer.kt │ │ ├── KitSerializer.kt │ │ ├── LimiterItemSerializer.kt │ │ ├── LimiterLocationSerializer.kt │ │ ├── LocationSerializer.kt │ │ └── VipSerializer.kt │ └── sql │ │ ├── KitsDataSQL.kt │ │ ├── LimiterSQL.kt │ │ ├── LoginDataSQL.kt │ │ ├── PlayerDataSQL.kt │ │ ├── ShopDataSQL.kt │ │ ├── SpawnDataSQL.kt │ │ ├── VipDataSQL.kt │ │ ├── VipKeysSQL.kt │ │ └── WarpsDataSQL.kt │ ├── commands │ ├── CommandAnnounce.kt │ ├── CommandBack.kt │ ├── CommandChangePass.kt │ ├── CommandClearEntities.kt │ ├── CommandColor.kt │ ├── CommandCraft.kt │ ├── CommandCreateKit.kt │ ├── CommandDay.kt │ ├── CommandDelHome.kt │ ├── CommandDelKit.kt │ ├── CommandDelWarp.kt │ ├── CommandEchest.kt │ ├── CommandEditKit.kt │ ├── CommandFeed.kt │ ├── CommandFly.kt │ ├── CommandGamemode.kt │ ├── CommandGiveKit.kt │ ├── CommandHat.kt │ ├── CommandHeal.kt │ ├── CommandHome.kt │ ├── CommandInvSee.kt │ ├── CommandKit.kt │ ├── CommandLight.kt │ ├── CommandLightning.kt │ ├── CommandLogin.kt │ ├── CommandMaterial.kt │ ├── CommandMoney.kt │ ├── CommandNick.kt │ ├── CommandNight.kt │ ├── CommandOnline.kt │ ├── CommandPlayTime.kt │ ├── CommandRegister.kt │ ├── CommandSetHome.kt │ ├── CommandSetSpawn.kt │ ├── CommandSetWarp.kt │ ├── CommandShop.kt │ ├── CommandSpawn.kt │ ├── CommandSpeed.kt │ ├── CommandTotal.kt │ ├── CommandTp.kt │ ├── CommandTpa.kt │ ├── CommandTpaccept.kt │ ├── CommandTpchunk.kt │ ├── CommandTpdeny.kt │ ├── CommandTphere.kt │ ├── CommandTrash.kt │ ├── CommandVanish.kt │ ├── CommandVip.kt │ ├── CommandWarp.kt │ └── test │ │ └── CommandLimit.kt │ ├── discord │ ├── DiscordManager.kt │ ├── exceptions │ │ ├── BotIsNotInitialized.kt │ │ ├── ChatDoesNotExist.kt │ │ ├── PlayerNotFound.kt │ │ ├── RoleDoesNotExist.kt │ │ ├── UserDoesNotExist.kt │ │ └── UserDoesNotHaveThisRole.kt │ └── listeners │ │ └── ChatDiscordEvent.kt │ ├── economy │ ├── EconomyHolder.kt │ └── MoneyManager.kt │ ├── filter │ └── Filter.kt │ ├── listeners │ ├── BurnEvent.kt │ ├── ChatEventAsync.kt │ ├── ChatEventLegend.kt │ ├── CreatureSpawn.kt │ ├── EntityChangeBlock.kt │ ├── EntityDamage.kt │ ├── EntityDamageEntity.kt │ ├── EntityDeath.kt │ ├── EntityPortalCreate.kt │ ├── EntitySignChange.kt │ ├── EntitySpawn.kt │ ├── EntityVehicleEnter.kt │ ├── IgniteEvent.kt │ ├── InventoryClick.kt │ ├── InventoryClose.kt │ ├── InventoryDrop.kt │ ├── InventoryOpen.kt │ ├── PlayerBedEnter.kt │ ├── PlayerChangeWorld.kt │ ├── PlayerDeath.kt │ ├── PlayerInteract.kt │ ├── PlayerInteractEntity.kt │ ├── PlayerJoin.kt │ ├── PlayerKickEvent.kt │ ├── PlayerLeave.kt │ ├── PlayerMoveEvent.kt │ ├── PlayerPickup.kt │ ├── PlayerPortal.kt │ ├── PlayerPreCommand.kt │ ├── PlayerRespawn.kt │ ├── PlayerTeleport.kt │ ├── ServerListPing.kt │ └── WeatherChange.kt │ ├── login │ └── LoginManager.kt │ ├── stackmobs │ └── StackMobsManager.kt │ ├── util │ ├── EnchantUtil.kt │ ├── ItemUtil.kt │ ├── MaterialUtil.kt │ ├── PermissionUtil.kt │ ├── PlayerUtil.kt │ ├── PluginUtil.kt │ ├── ServerUtil.kt │ └── WorldUtil.kt │ └── vip │ └── VipManager.kt └── resources └── plugin.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/.gitignore -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/README.MD -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/gradlew.bat -------------------------------------------------------------------------------- /localjar/EverNifeCore-2.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/localjar/EverNifeCore-2.0.3.jar -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = "TotalEssentials" 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/main/java/github/gilbertokpl/total/TotalEssentials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/java/github/gilbertokpl/total/TotalEssentials.java -------------------------------------------------------------------------------- /src/main/java/github/gilbertokpl/total/config/files/LangConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/java/github/gilbertokpl/total/config/files/LangConfig.java -------------------------------------------------------------------------------- /src/main/java/github/gilbertokpl/total/config/files/MainConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/java/github/gilbertokpl/total/config/files/MainConfig.java -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/TotalCore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/TotalCore.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/CacheManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/CacheManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/builder/ByteBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/builder/ByteBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/builder/HashMapBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/builder/HashMapBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/builder/ListBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/builder/ListBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/builder/LocationBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/builder/LocationBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/builder/SimpleBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/builder/SimpleBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICache.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICacheBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICacheBuilder.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICacheBuilderExtended.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICacheBuilderExtended.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICacheSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/cache/interfaces/ICacheSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/command/CommandManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/command/CommandManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/command/interfaces/ICommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/command/interfaces/ICommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/command/pattern/CommandPattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/command/pattern/CommandPattern.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/command/type/CommandTargetType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/command/type/CommandTargetType.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/ConfigManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/ConfigManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/annotations/Comment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/annotations/Comment.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/annotations/ConfigPattern.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/annotations/ConfigPattern.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/annotations/MultiComment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/annotations/MultiComment.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/annotations/MultiValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/annotations/MultiValue.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/annotations/RootComment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/annotations/RootComment.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/annotations/RootComments.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/annotations/RootComments.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/annotations/Value.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/annotations/Value.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/defaults/DefaultConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/defaults/DefaultConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/defaults/DefaultLang.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/defaults/DefaultLang.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/types/LangTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/types/LangTypes.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/types/ObjectTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/types/ObjectTypes.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/config/values/ConfigValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/config/values/ConfigValue.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/event/EventManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/event/EventManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/internal/serializator/AES.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/internal/serializator/AES.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/internal/serializator/InternalBukkitObjectInputStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/internal/serializator/InternalBukkitObjectInputStream.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/internal/serializator/InternalBukkitObjectOutputStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/internal/serializator/InternalBukkitObjectOutputStream.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/internal/serializator/ItemSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/internal/serializator/ItemSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/internal/serializator/Wrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/internal/serializator/Wrapper.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/task/TaskManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/task/TaskManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/task/bukkit/BukkitDispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/task/bukkit/BukkitDispatcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/ColorUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/ColorUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/ConsoleColorUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/ConsoleColorUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/DatabaseUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/DatabaseUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/EncryptUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/EncryptUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/FileLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/FileLogger.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/HostUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/HostUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/InventoryUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/InventoryUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/ReflectionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/ReflectionUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/core/utils/TimeUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/core/utils/TimeUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/KeyData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/KeyData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/KitsData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/KitsData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/LoginData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/LoginData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/PlayerData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/PlayerData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/ShopData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/ShopData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/SpawnData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/SpawnData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/VipData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/VipData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/WarpData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/WarpData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/data/test/LimitData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/data/test/LimitData.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/internal/Data.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/internal/Data.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/internal/DataTeleport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/internal/DataTeleport.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/internal/InternalLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/internal/InternalLoader.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/inventory/EditKit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/inventory/EditKit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/inventory/Kit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/inventory/Kit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/inventory/Playtime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/inventory/Playtime.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/inventory/Shop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/inventory/Shop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/loop/AnnounceLoop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/loop/AnnounceLoop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/loop/AntiAfkLoop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/loop/AntiAfkLoop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/loop/ClearEntitiesLoop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/loop/ClearEntitiesLoop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/loop/DiscordLoop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/loop/DiscordLoop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/loop/PluginLoop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/loop/PluginLoop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/CommandsSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/CommandsSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/HomeSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/HomeSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/ItemSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/ItemSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/KitSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/KitSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/LimiterItemSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/LimiterItemSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/LimiterLocationSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/LimiterLocationSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/LocationSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/LocationSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/serializer/VipSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/serializer/VipSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/KitsDataSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/KitsDataSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/LimiterSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/LimiterSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/LoginDataSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/LoginDataSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/PlayerDataSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/PlayerDataSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/ShopDataSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/ShopDataSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/SpawnDataSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/SpawnDataSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/VipDataSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/VipDataSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/VipKeysSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/VipKeysSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/cache/sql/WarpsDataSQL.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/cache/sql/WarpsDataSQL.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandAnnounce.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandAnnounce.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandBack.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandBack.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandChangePass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandChangePass.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandClearEntities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandClearEntities.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandColor.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandCraft.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandCraft.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandCreateKit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandCreateKit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandDay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandDay.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandDelHome.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandDelHome.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandDelKit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandDelKit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandDelWarp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandDelWarp.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandEchest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandEchest.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandEditKit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandEditKit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandFeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandFeed.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandFly.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandFly.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandGamemode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandGamemode.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandGiveKit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandGiveKit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandHat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandHat.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandHeal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandHeal.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandHome.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandHome.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandInvSee.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandInvSee.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandKit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandKit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandLight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandLight.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandLightning.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandLightning.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandLogin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandLogin.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandMaterial.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandMaterial.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandMoney.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandMoney.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandNick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandNick.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandNight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandNight.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandOnline.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandOnline.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandPlayTime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandPlayTime.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandRegister.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandRegister.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandSetHome.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandSetHome.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandSetSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandSetSpawn.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandSetWarp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandSetWarp.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandShop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandShop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandSpawn.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandSpeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandSpeed.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTotal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTotal.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTp.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTpa.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTpa.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTpaccept.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTpaccept.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTpchunk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTpchunk.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTpdeny.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTpdeny.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTphere.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTphere.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandTrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandTrash.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandVanish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandVanish.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandVip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandVip.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/CommandWarp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/CommandWarp.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/commands/test/CommandLimit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/commands/test/CommandLimit.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/DiscordManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/DiscordManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/exceptions/BotIsNotInitialized.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/exceptions/BotIsNotInitialized.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/exceptions/ChatDoesNotExist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/exceptions/ChatDoesNotExist.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/exceptions/PlayerNotFound.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/exceptions/PlayerNotFound.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/exceptions/RoleDoesNotExist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/exceptions/RoleDoesNotExist.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/exceptions/UserDoesNotExist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/exceptions/UserDoesNotExist.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/exceptions/UserDoesNotHaveThisRole.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/exceptions/UserDoesNotHaveThisRole.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/discord/listeners/ChatDiscordEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/discord/listeners/ChatDiscordEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/economy/EconomyHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/economy/EconomyHolder.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/economy/MoneyManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/economy/MoneyManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/filter/Filter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/filter/Filter.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/BurnEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/BurnEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/ChatEventAsync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/ChatEventAsync.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/ChatEventLegend.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/ChatEventLegend.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/CreatureSpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/CreatureSpawn.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntityChangeBlock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntityChangeBlock.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntityDamage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntityDamage.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntityDamageEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntityDamageEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntityDeath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntityDeath.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntityPortalCreate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntityPortalCreate.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntitySignChange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntitySignChange.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntitySpawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntitySpawn.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/EntityVehicleEnter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/EntityVehicleEnter.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/IgniteEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/IgniteEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/InventoryClick.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/InventoryClick.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/InventoryClose.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/InventoryClose.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/InventoryDrop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/InventoryDrop.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/InventoryOpen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/InventoryOpen.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerBedEnter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerBedEnter.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerChangeWorld.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerChangeWorld.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerDeath.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerDeath.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerInteract.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerInteract.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerInteractEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerInteractEntity.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerJoin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerJoin.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerKickEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerKickEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerLeave.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerLeave.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerMoveEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerMoveEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerPickup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerPickup.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerPortal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerPortal.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerPreCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerPreCommand.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerRespawn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerRespawn.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/PlayerTeleport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/PlayerTeleport.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/ServerListPing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/ServerListPing.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/listeners/WeatherChange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/listeners/WeatherChange.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/login/LoginManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/login/LoginManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/stackmobs/StackMobsManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/stackmobs/StackMobsManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/EnchantUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/EnchantUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/ItemUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/ItemUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/MaterialUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/MaterialUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/PermissionUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/PermissionUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/PlayerUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/PlayerUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/PluginUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/PluginUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/ServerUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/ServerUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/util/WorldUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/util/WorldUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/github/gilbertokpl/total/vip/VipManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/kotlin/github/gilbertokpl/total/vip/VipManager.kt -------------------------------------------------------------------------------- /src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GilbertoKPL/TotalEssentials/HEAD/src/main/resources/plugin.yml --------------------------------------------------------------------------------