├── jitpack.yml ├── src ├── .gitignore └── com │ └── Zrips │ └── CMI │ ├── commands │ ├── .gitignore │ ├── Cmd.java │ ├── Void.java │ └── list │ │ ├── patrol.java │ │ ├── jump.java │ │ ├── ipbanlist.java │ │ ├── oplist.java │ │ ├── blocknbt.java │ │ ├── endgateway.java │ │ ├── emojipicker.java │ │ ├── spawnereditor.java │ │ ├── editctext.java │ │ ├── ranklist.java │ │ ├── reload.java │ │ ├── sameip.java │ │ ├── banlist.java │ │ ├── colorpicker.java │ │ ├── loom.java │ │ ├── migratedatabase.java │ │ ├── releasepet.java │ │ ├── serverlist.java │ │ ├── solve.java │ │ ├── checkexp.java │ │ ├── unmutechat.java │ │ ├── editwarp.java │ │ ├── me.java │ │ ├── seen.java │ │ ├── servertime.java │ │ ├── spawner.java │ │ ├── burn.java │ │ ├── checkcommand.java │ │ ├── feed.java │ │ ├── getbook.java │ │ ├── warpgroups.java │ │ ├── afk.java │ │ ├── checkban.java │ │ ├── colors.java │ │ ├── entityinfo.java │ │ ├── hunger.java │ │ ├── dback.java │ │ ├── findbiome.java │ │ ├── invload.java │ │ ├── removewarp.java │ │ ├── reply.java │ │ ├── stonecutter.java │ │ ├── version.java │ │ ├── itemnbt.java │ │ ├── near.java │ │ ├── smithingtable.java │ │ ├── tps.java │ │ ├── afkcheck.java │ │ ├── giftpet.java │ │ ├── ext.java │ │ ├── mutechat.java │ │ ├── recipe.java │ │ ├── sc.java │ │ ├── shakeitoff.java │ │ ├── tpdeny.java │ │ ├── votetop.java │ │ ├── anvil.java │ │ ├── entitynbt.java │ │ ├── fly.java │ │ ├── invlist.java │ │ ├── iteminfo.java │ │ ├── tpaall.java │ │ ├── tree.java │ │ ├── unban.java │ │ ├── unmute.java │ │ ├── warnings.java │ │ ├── air.java │ │ ├── aliaseditor.java │ │ ├── dispose.java │ │ ├── falldistance.java │ │ ├── head.java │ │ ├── homes.java │ │ ├── invremove.java │ │ ├── openbook.java │ │ ├── pay.java │ │ ├── playtimetop.java │ │ ├── realname.java │ │ ├── setworth.java │ │ ├── suicide.java │ │ ├── tpaccept.java │ │ ├── votes.java │ │ ├── disableenchant.java │ │ ├── sendall.java │ │ ├── setfirstspawn.java │ │ ├── clearender.java │ │ ├── grindstone.java │ │ ├── kitcdreset.java │ │ └── prewards.java │ ├── events │ ├── EventAnnotation.java │ ├── CMIPvEEndEventAsync.java │ ├── CMIPvPEndEventAsync.java │ ├── CMIPlayerVanishEvent.java │ ├── CMIPlayerUnVanishEvent.java │ ├── CMIPvEStartEventAsync.java │ ├── CMIPvPStartEventAsync.java │ ├── CMIWarpRemoveEvent.java │ ├── CMIWarpCreateEvent.java │ ├── CMIUserCancellableEvent.java │ ├── CMIConfigReloadEvent.java │ ├── CMICancellableEvent.java │ ├── CMIUserEvent.java │ ├── CMIPlayerEvent.java │ ├── CMIPlayerUnBanEvent.java │ ├── CMIUserHomeCreateEvent.java │ ├── CMIUserHomeRemoveEvent.java │ ├── CMIAsyncConsoleMessageEvent.java │ ├── CMIPlayerSitEvent.java │ ├── CMIIpUnBanEvent.java │ ├── CMIPortalUseEvent.java │ ├── CMIPlayerChatFilterCapsEvent.java │ ├── CMIPlayerWarnEvent.java │ ├── CMIPlayerChatFilterEvent.java │ ├── CMIPlayerNickNameChangeEvent.java │ ├── CMISelectionEvent.java │ ├── CMIPlayerJailEvent.java │ ├── CMIPlayerUnjailEvent.java │ ├── CMIChunkChangeEvent.java │ ├── CMIEvent.java │ ├── CMIAfkKickEvent.java │ ├── CMIPlayerOpenArmorStandEditorEvent.java │ ├── CMISelectionVisualizationEvent.java │ ├── CMIUserKitAcquireEvent.java │ ├── CMIPlayerKickEvent.java │ ├── CMIChequeUsageEvent.java │ ├── CMIPlayerCancellableEvent.java │ ├── CMIChequeCreationEvent.java │ ├── CMIIpBanEvent.java │ ├── CMIPlayerTeleportRequestEvent.java │ ├── CMIPlayerBanEvent.java │ └── CMIAfkEnterEvent.java │ ├── Modules │ ├── Search │ │ ├── CMIDataResultBase.java │ │ ├── SearchType.java │ │ ├── SearchTypePlayerBase.java │ │ ├── SearchTypeContentsBase.java │ │ ├── SearchTypeBase.java │ │ ├── CMIWorldSearchPlaceType.java │ │ ├── SearchTypeMaxHealth.java │ │ ├── SearchTypeGodMode.java │ │ ├── SearchTypeFlyMode.java │ │ ├── SearchTypeGameMode.java │ │ ├── CMIDataResultPlayerBase.java │ │ ├── CMIDataResultItem.java │ │ ├── CMIDataResultValue.java │ │ ├── CMIDataResultLocationBlock.java │ │ ├── SearchTypeItemLore.java │ │ ├── SearchTypeItemName.java │ │ ├── SearchTypeItemAmount.java │ │ ├── SearchTypeItemModelData.java │ │ ├── SearchTypeItemExact.java │ │ ├── SearchTypeItemMaterial.java │ │ └── SearchTypeItemStack.java │ ├── Collision │ │ ├── CollisionManager.java │ │ └── CollisionListener.java │ ├── Display │ │ ├── CMIDisplayTransform.java │ │ ├── CMIDisplayType.java │ │ ├── CMIInteractionEntity.java │ │ ├── CMIBillboard.java │ │ └── CMITextAlignment.java │ ├── Fireworks │ │ ├── CMIFireWorkExplosion.java │ │ ├── CMIFirework.java │ │ └── firework.java │ ├── Ranks │ │ ├── rankPlaceholderAction.java │ │ ├── rankPlaceholderType.java │ │ ├── JobsManager.java │ │ ├── AureliumManager.java │ │ ├── AuraSkillsManager.java │ │ ├── McMMOManager.java │ │ └── InformTimer.java │ ├── PlayerCombat │ │ └── CombatDamageType.java │ ├── ConsoleFilter │ │ ├── CMIConsoleMessageType.java │ │ └── CMIConsoleRecord.java │ ├── Holograms │ │ ├── CMIHologramHoveringPosition.java │ │ ├── CMIHoloLineType.java │ │ ├── Animations │ │ │ ├── CMIHologramAnimationType.java │ │ │ └── CMIHologramFadeInAnimation.java │ │ ├── CMIHologramStopHoverEvent.java │ │ └── CMIHologramStartHoverEvent.java │ ├── CmdCost │ │ └── CMICommandCostUsage.java │ ├── Hooks │ │ └── CMIHookSubType.java │ ├── Worlds │ │ ├── UpdateOnWorldLoad.java │ │ ├── WorldManager.java │ │ └── CMIWorldListener.java │ ├── TabList │ │ ├── CMITabSortingOrder.java │ │ └── CMITabSortingType.java │ ├── BungeeCord │ │ └── CMIBungeeType.java │ ├── Placeholders │ │ ├── MVdWPlaceholderAPIHook.java │ │ └── PlaceholderCache.java │ ├── Region │ │ └── RegionListener.java │ ├── Vanish │ │ ├── VanishListener1_21.java │ │ ├── VanishActionState.java │ │ ├── VanishListener1_19.java │ │ ├── VanishActionStateBoolean.java │ │ └── VanishActionStateInt.java │ ├── DataBase │ │ ├── .gitignore │ │ ├── DBClassLoader.java │ │ └── DBConnectionPool.java │ ├── Kits │ │ ├── Clickery.java │ │ └── KitListener.java │ ├── PlayTimeRewards │ │ ├── PlayTimeRewardsListener.java │ │ ├── PTROneTime.java │ │ ├── PlaytimeClaimCache.java │ │ └── PTRRepeat.java │ ├── Teleportations │ │ ├── CMITeleportCondition.java │ │ ├── CMIRunningRandomTeleports.java │ │ ├── PositionRelativeData.java │ │ └── DangerousTp.java │ ├── Patrol │ │ └── PatrolManager.java │ ├── ModuleHandling │ │ ├── CMIModuleManager.java │ │ └── CMIModuleClass.java │ ├── Anvil │ │ ├── AnvilManager.java │ │ └── AnvilUnlimitedListener.java │ ├── DeathMessages │ │ └── CMIDeathType.java │ ├── Portals │ │ └── RandomLoc.java │ ├── AttachedCommands │ │ ├── itemCooldown.java │ │ └── CustomNBTListener1_8.java │ ├── ChatFormat │ │ └── ChatColorListener.java │ ├── MirrorV2 │ │ ├── CMIMirrorFlipInformation.java │ │ ├── CMIRotationAngle.java │ │ ├── CMIMirrorBlockInformationV2.java │ │ ├── CMIMirrorModeV2.java │ │ └── CMIMirrorListenerV2.java │ ├── TagName │ │ └── TagNameManager.java │ ├── ChatFilter │ │ └── MessageLog.java │ ├── Homes │ │ ├── HomeWorldLimit.java │ │ ├── HomeListener1_11.java │ │ └── HomeListener.java │ ├── Particl │ │ └── Vectors.java │ ├── GeoIP │ │ └── Country.java │ ├── Alias │ │ ├── AliasTabCompListener_1_13_older.java │ │ ├── Allias.java │ │ ├── onPreprocessCommand.java │ │ ├── AliasTabCompListener_1_14_never.java │ │ └── onServerPreprocessCommand.java │ ├── LightFix │ │ └── LightFix.java │ ├── ViewRange │ │ ├── ChunkChange.java │ │ └── ViewRangeListener.java │ ├── DiscordSRV │ │ └── DiscordSRVManager.java │ ├── FlightCharge │ │ ├── freeFall.java │ │ └── traveledDistance.java │ ├── Permissions │ │ └── PermissionInterface.java │ ├── ReplaceBlock │ │ └── ReplaceBlock.java │ ├── Skin │ │ └── SkinListener.java │ ├── Mirror │ │ ├── Rotation.java │ │ └── MirrorListener.java │ ├── DynMap │ │ └── DynMapManager.java │ ├── ChatTag │ │ └── TagListener.java │ ├── Enchants │ │ └── EnchantListener.java │ ├── CmdCooldown │ │ └── CooldownListener.java │ ├── Animations │ │ ├── AnimationListener.java │ │ └── AnimationListenerLegacy.java │ ├── Elytra │ │ └── ElytraExploitListener1_13.java │ ├── Selection │ │ └── SelectionListener.java │ ├── SpawnerCharge │ │ └── SpawnerProximityListener.java │ ├── Notify │ │ └── Notification.java │ ├── ChunkPreview │ │ └── ChunkPreview.java │ ├── CustomText │ │ └── CTextPage.java │ ├── PlayTime │ │ └── CMIPlayTimeFormat.java │ ├── EventActions │ │ └── EventActionListener1_12.java │ ├── FindBiome │ │ └── FindBiomeManager.java │ ├── Recipes │ │ └── recipeInformation.java │ └── NickName │ │ └── NickNameListener.java │ ├── Containers │ ├── CommandAliasType.java │ ├── UserDataUpdateType.java │ ├── CMISorting.java │ ├── LocationType.java │ ├── ActionType.java │ ├── Direction.java │ ├── BasicRecipe.java │ ├── CMISounds.java │ ├── CMIFileAppender.java │ ├── CMIColorTypes.java │ ├── CMIInteractType.java │ ├── CMIItemRepair.java │ ├── CMIReplyResponder.java │ ├── CMISunMover.java │ ├── ChunkInfo.java │ ├── CMICounter.java │ ├── CMIUserAlert.java │ ├── CMIEvent.java │ ├── CMITextCleaner.java │ ├── PlayerNote.java │ ├── RegionFiles.java │ ├── CMIMessageReplies.java │ ├── ScanFindPlace.java │ ├── worldFlyState.java │ ├── CMIPlayerGlowData.java │ ├── CMIEquipmentSlot.java │ └── CMIRay.java │ ├── AllListeners │ ├── ProtocolEvent.java │ ├── ProtocolEvent18.java │ ├── DecoratedPotListener.java │ ├── ArmorChangeListener1_9.java │ ├── versionCheck.java │ ├── DamageControlListener.java │ ├── FirstJoinListener.java │ ├── LaunchPadListener1_9.java │ ├── PlayerListeners1_8.java │ └── HatListeners.java │ ├── utils │ ├── ServerLinksManager.java │ ├── UUIDFetcher.java │ ├── HDConverter.java │ ├── CMINBTListType.java │ ├── CMIDiskUsage.java │ ├── FileDownloader.java │ ├── UnloadChunks.java │ ├── ChunkFix.java │ ├── importSettings.java │ ├── Lag.java │ └── DateFormat.java │ └── CMIOnEnable.java ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.m2e.core.prefs └── org.eclipse.jdt.core.prefs ├── README.md ├── resources └── LICENSE ├── .gitignore └── .project /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk21 3 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /JobCommand.class 2 | /JobsCommands.class 3 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/.gitignore: -------------------------------------------------------------------------------- 1 | /JobCommand.class 2 | /JobsCommands.class 3 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/EventAnnotation.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | encoding/src=UTF-8 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/CMIDataResultBase.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public class CMIDataResultBase { 4 | } 5 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Collision/CollisionManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Collision; 2 | 3 | public class CollisionManager { 4 | } 5 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Display/CMIDisplayTransform.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Display; 2 | 3 | public class CMIDisplayTransform { 4 | } 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CMI-API 2 | Public API for CMI plugin 3 | 4 | ### Misc. 5 | More information and examples [zrips.net/cmi/api](https://www.zrips.net/cmi/api/) 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Fireworks/CMIFireWorkExplosion.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Fireworks; 2 | 3 | public class CMIFireWorkExplosion { 4 | } 5 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CommandAliasType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public enum CommandAliasType { 4 | base, subbase, custom; 5 | } 6 | -------------------------------------------------------------------------------- /resources/LICENSE: -------------------------------------------------------------------------------- 1 | No code usage in any other plugin than those maintained by Zrips or without his specific permission. 2 | 3 | Copyright (C) 2022 4 | 5 | Zrips#9691 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Ranks/rankPlaceholderAction.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Ranks; 2 | 3 | public enum rankPlaceholderAction { 4 | more, less, equal; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Display/CMIDisplayType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Display; 2 | 3 | public enum CMIDisplayType { 4 | Text, Block, Item, Interaction; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Ranks/rankPlaceholderType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Ranks; 2 | 3 | public enum rankPlaceholderType { 4 | number, string, invalid; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/UserDataUpdateType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public enum UserDataUpdateType { 4 | prefix, suffix, group, nameColor, displayname; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/PlayerCombat/CombatDamageType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.PlayerCombat; 2 | 3 | public enum CombatDamageType { 4 | Player, Mob, Environmental; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ConsoleFilter/CMIConsoleMessageType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ConsoleFilter; 2 | 3 | public enum CMIConsoleMessageType { 4 | ERROR, CHAT, COMMAND; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Holograms/CMIHologramHoveringPosition.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Holograms; 2 | 3 | public enum CMIHologramHoveringPosition { 4 | None, Left, Right; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/CmdCost/CMICommandCostUsage.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.CmdCost; 2 | 3 | public enum CMICommandCostUsage { 4 | Cant, Can, NoMoney, CostBypass, ReqConfirm; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Holograms/CMIHoloLineType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Holograms; 2 | 3 | public enum CMIHoloLineType { 4 | plainText, placeholder, icon, staticIcon, image; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Hooks/CMIHookSubType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Hooks; 2 | 3 | public enum CMIHookSubType { 4 | PlayerVaults, PlayerVaultsX, PlayerVaultsNBT, VaultPermissions; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Collision/CollisionListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Collision; 2 | 3 | import org.bukkit.event.Listener; 4 | 5 | public class CollisionListener implements Listener { 6 | } 7 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Holograms/Animations/CMIHologramAnimationType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Holograms.Animations; 2 | 3 | public enum CMIHologramAnimationType { 4 | Scale, Opacity, TextOpacity; 5 | } 6 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Worlds/UpdateOnWorldLoad.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Worlds; 2 | 3 | import org.bukkit.World; 4 | 5 | public class UpdateOnWorldLoad { 6 | public void update(World world) { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/ProtocolEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import com.Zrips.CMI.CMI; 4 | 5 | public class ProtocolEvent { 6 | public static void includeViewRange(CMI plugin) { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/ServerLinksManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | public class ServerLinksManager { 4 | public static void save() { 5 | } 6 | 7 | public static void load() { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/ProtocolEvent18.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import com.Zrips.CMI.CMI; 4 | 5 | public class ProtocolEvent18 { 6 | public static void includeViewRange18(CMI plugin) { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/UUIDFetcher.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import java.util.UUID; 4 | 5 | public class UUIDFetcher { 6 | public static UUID getUUID(String name) { 7 | return null; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/TabList/CMITabSortingOrder.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.TabList; 2 | 3 | public enum CMITabSortingOrder { 4 | ASC, DESC; 5 | 6 | public static CMITabSortingOrder getByName(String name) { 7 | return null; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/HDConverter.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | public class HDConverter { 6 | public HDConverter() { 7 | } 8 | 9 | public static void convert(CommandSender sender) { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/BungeeCord/CMIBungeeType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.BungeeCord; 2 | 3 | public enum CMIBungeeType { 4 | BungeeCord, Velocity, Unknown; 5 | 6 | static CMIBungeeType getByName(String networkType) { 7 | return null; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Placeholders/MVdWPlaceholderAPIHook.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Placeholders; 2 | 3 | import com.Zrips.CMI.CMI; 4 | 5 | public class MVdWPlaceholderAPIHook { 6 | public static boolean hook(CMI plugin) { 7 | return false; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMISorting.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.util.Map; 4 | 5 | public class CMISorting { 6 | public static Map sortByValueDescending(Map unsortedMap) { 7 | return null; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPvEEndEventAsync.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPvEEndEventAsync extends CMIPlayerEvent { 6 | public CMIPvEEndEventAsync(Player player) { 7 | super(player, true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPvPEndEventAsync.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPvPEndEventAsync extends CMIPlayerEvent { 6 | public CMIPvPEndEventAsync(Player player) { 7 | super(player, true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerVanishEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPlayerVanishEvent extends CMIPlayerCancellableEvent { 6 | public CMIPlayerVanishEvent(Player player) { 7 | super(player); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerUnVanishEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPlayerUnVanishEvent extends CMIPlayerCancellableEvent { 6 | public CMIPlayerUnVanishEvent(Player player) { 7 | super(player); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPvEStartEventAsync.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPvEStartEventAsync extends CMIPlayerCancellableEvent { 6 | public CMIPvEStartEventAsync(Player player) { 7 | super(player, true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPvPStartEventAsync.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPvPStartEventAsync extends CMIPlayerCancellableEvent { 6 | public CMIPvPStartEventAsync(Player player) { 7 | super(player, true); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Region/RegionListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Region; 2 | 3 | import org.bukkit.event.Listener; 4 | 5 | import com.Zrips.CMI.CMI; 6 | 7 | public class RegionListener implements Listener { 8 | private CMI plugin; 9 | 10 | public RegionListener(CMI plugin) { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Vanish/VanishListener1_21.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Vanish; 2 | 3 | import org.bukkit.event.Listener; 4 | 5 | import com.Zrips.CMI.CMI; 6 | 7 | public class VanishListener1_21 implements Listener { 8 | private CMI plugin; 9 | 10 | public VanishListener1_21(CMI plugin) { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/LocationType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public enum LocationType { 4 | INVENTORY("Inventory"), ENDERCHEST("Enderchest"); 5 | 6 | private String name; 7 | 8 | private LocationType(String name) { 9 | } 10 | 11 | public String getName() { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/DataBase/.gitignore: -------------------------------------------------------------------------------- 1 | /JobsConnection.class 2 | /JobsConnectionPool.class 3 | /JobsDAO.class 4 | /JobsDAOData.class 5 | /JobsDAOH2$JobsDAOH2SQLiteImporter.class 6 | /JobsDAOH2.class 7 | /JobsDAOMySQL.class 8 | /JobsDAOSQLite.class 9 | /JobsDriver.class 10 | /JobsDrivers.class 11 | /JobsDAO$1.class 12 | /JobsDAO$2.class 13 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Holograms/Animations/CMIHologramFadeInAnimation.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Holograms.Animations; 2 | 3 | public class CMIHologramFadeInAnimation extends CMIHologramAnimation { 4 | public CMIHologramFadeInAnimation(CMIHologramValueChanger scale, CMIHologramValueChanger opacity, CMIHologramValueChanger textOpacity) { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/ActionType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public enum ActionType { 4 | NORMAL("Normal"), ENDER("Ender"), CHECKING("Checking"), NONE("NONE"); 5 | 6 | private String name; 7 | 8 | private ActionType(String name) { 9 | } 10 | 11 | public String getName() { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/Direction.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public enum Direction { 4 | SOUTH("South"), WEST("West"), NORTH("North"), EAST("East"); 5 | 6 | private String direction; 7 | 8 | private Direction(String direction) { 9 | } 10 | 11 | public String getDirection() { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Kits/Clickery.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Kits; 2 | 3 | public class Clickery { 4 | private long time; 5 | private int times; 6 | private int speed; 7 | 8 | public Clickery() { 9 | } 10 | 11 | private void addClick() { 12 | } 13 | 14 | public int getSpeed() { 15 | return 0; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/PlayTimeRewards/PlayTimeRewardsListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.PlayTimeRewards; 2 | 3 | import org.bukkit.event.Listener; 4 | 5 | import com.Zrips.CMI.CMI; 6 | 7 | public class PlayTimeRewardsListener implements Listener { 8 | private CMI plugin; 9 | 10 | public PlayTimeRewardsListener(CMI plugin) { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Teleportations/CMITeleportCondition.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Teleportations; 2 | 3 | public enum CMITeleportCondition { 4 | Good, BadFloor, Void, Suffocation, Fall, Unknown, Plugin, UnsafeTeleportation, NoPermission, MissingWorld; 5 | 6 | public static String getBadLocations() { 7 | return null; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIWarpRemoveEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Modules.Warps.CmiWarp; 4 | 5 | public class CMIWarpRemoveEvent extends CMIEvent { 6 | private CmiWarp warp; 7 | 8 | public CMIWarpRemoveEvent(CmiWarp warp) { 9 | } 10 | 11 | public CmiWarp getWarp() { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/Cmd.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | 7 | import net.Zrips.CMILib.FileHandler.ConfigReader; 8 | 9 | public interface Cmd { 10 | public Boolean perform(CMI plugin, CommandSender sender, String[] args); 11 | 12 | void getExtra(ConfigReader c); 13 | } 14 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Patrol/PatrolManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Patrol; 2 | 3 | import com.Zrips.CMI.CMI; 4 | import com.Zrips.CMI.Containers.CMIUser; 5 | 6 | public class PatrolManager { 7 | private CMI plugin; 8 | 9 | public PatrolManager(CMI plugin) { 10 | } 11 | 12 | public CMIUser getNextUser() { 13 | return null; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/PlayTimeRewards/PTROneTime.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.PlayTimeRewards; 2 | 3 | public class PTROneTime extends PlayTimeReward { 4 | public PTROneTime(String name) { 5 | super(name); 6 | } 7 | 8 | public Long getPayFor() { 9 | return null; 10 | } 11 | 12 | public void setPayFor(Long payFor) { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public enum SearchType { 4 | ITEM, GM, GOD, MAXHP, FLY; 5 | 6 | private String name; 7 | 8 | private SearchType(String name) { 9 | } 10 | 11 | private SearchType() { 12 | } 13 | 14 | public String getName() { 15 | return null; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIWarpCreateEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Modules.Warps.CmiWarp; 4 | 5 | public class CMIWarpCreateEvent extends CMICancellableEvent { 6 | private CmiWarp warp; 7 | 8 | public CMIWarpCreateEvent(CmiWarp warp) { 9 | } 10 | 11 | public CmiWarp getWarp() { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/TabList/CMITabSortingType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.TabList; 2 | 3 | public enum CMITabSortingType { 4 | Group, CustomGroup, Name, NickName, Balance, World; 5 | 6 | public static CMITabSortingType getByName(String name) { 7 | return null; 8 | } 9 | 10 | public static String toStringList() { 11 | return null; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ModuleHandling/CMIModuleManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ModuleHandling; 2 | 3 | public class CMIModuleManager { 4 | private static String fileName; 5 | 6 | public static void load() { 7 | } 8 | 9 | public static void registerListeners() { 10 | } 11 | 12 | public static void switchInFile(CMIModule module, boolean state) { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypePlayerBase.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.Set; 4 | 5 | import javax.annotation.Nonnull; 6 | 7 | import org.bukkit.entity.Player; 8 | 9 | public class SearchTypePlayerBase extends SearchTypeBase { 10 | @Nonnull 11 | public Set checkPlayer(Player player) { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Vanish/VanishActionState.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Vanish; 2 | 3 | public class VanishActionState { 4 | @Override 5 | public String toString() { 6 | return null; 7 | } 8 | 9 | public VanishActionState fromString(String value) { 10 | return null; 11 | } 12 | 13 | public boolean is() { 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIUserCancellableEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | 5 | public class CMIUserCancellableEvent extends CMICancellableEvent { 6 | private final CMIUser user = null; 7 | 8 | public CMIUserCancellableEvent(CMIUser user) { 9 | } 10 | 11 | public CMIUser getUser() { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIConfigReloadEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | public class CMIConfigReloadEvent extends CMIEvent { 6 | private final CommandSender sender = null; 7 | 8 | public CMIConfigReloadEvent(CommandSender sender) { 9 | } 10 | 11 | public CommandSender getSender() { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Worlds/WorldManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Worlds; 2 | 3 | import java.util.regex.Pattern; 4 | 5 | import org.bukkit.scheduler.BukkitTask; 6 | 7 | import com.Zrips.CMI.CMI; 8 | 9 | public class WorldManager { 10 | private CMI plugin; 11 | public static Pattern regionPattern; 12 | BukkitTask task; 13 | 14 | public WorldManager(CMI plugin) { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Anvil/AnvilManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Anvil; 2 | 3 | import org.bukkit.inventory.ItemStack; 4 | 5 | import com.Zrips.CMI.CMI; 6 | 7 | public class AnvilManager { 8 | CMI plugin; 9 | 10 | public AnvilManager(CMI plugin) { 11 | } 12 | 13 | public int getRepairCost(ItemStack source, ItemStack source2, ItemStack result) { 14 | return 0; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # BlueJ files 8 | *.ctxt 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.war 16 | *.ear 17 | *.zip 18 | *.tar.gz 19 | *.rar 20 | 21 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 22 | hs_err_pid* 23 | /bin/ 24 | /target/ 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ConsoleFilter/CMIConsoleRecord.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ConsoleFilter; 2 | 3 | public class CMIConsoleRecord { 4 | String message; 5 | long time; 6 | 7 | public CMIConsoleRecord(String message, long time) { 8 | } 9 | 10 | public String getMessage() { 11 | return null; 12 | } 13 | 14 | public long getTime() { 15 | return 0; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeContentsBase.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.Set; 4 | 5 | import javax.annotation.Nonnull; 6 | 7 | import org.bukkit.inventory.ItemStack; 8 | 9 | public class SearchTypeContentsBase extends SearchTypeBase { 10 | @Nonnull 11 | public Set checkContent(ItemStack[] contents) { 12 | return null; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeBase.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public class SearchTypeBase { 4 | private SearchType type; 5 | 6 | public SearchType getType() { 7 | return null; 8 | } 9 | 10 | public SearchTypeBase setType(SearchType type) { 11 | return null; 12 | } 13 | 14 | public String getSearchTypeName() { 15 | return null; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Teleportations/CMIRunningRandomTeleports.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Teleportations; 2 | 3 | public class CMIRunningRandomTeleports { 4 | private long time; 5 | 6 | public CMIRunningRandomTeleports() { 7 | } 8 | 9 | public long getEndTime() { 10 | return 0; 11 | } 12 | 13 | public CMIRunningRandomTeleports setTime(long time) { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/DeathMessages/CMIDeathType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.DeathMessages; 2 | 3 | public enum CMIDeathType { 4 | Arrows, Cactus, Drowning, Suffocation, Elytra, Explosions, Falling, FallingBlocks, Fire, FireBall, EndCrystal, FireworkRockets, Lava, Lightning, MagmaBlock, Player, Block, Tnt, Mob, PotionsOfHarming, 5 | Projectile, Entity, Starving, Thorns, Trident, SplashPotion, Void, WitherEffect, Custom, Suicide; 6 | } 7 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMICancellableEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.event.Cancellable; 4 | 5 | public class CMICancellableEvent extends CMIEvent implements Cancellable { 6 | private boolean cancel; 7 | 8 | @Override 9 | public final void setCancelled(boolean cancel) { 10 | } 11 | 12 | @Override 13 | public final boolean isCancelled() { 14 | return false; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIUserEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | 5 | public class CMIUserEvent extends CMIEvent { 6 | private final CMIUser user = null; 7 | 8 | public CMIUserEvent(CMIUser user, boolean async) { 9 | super(async); 10 | } 11 | 12 | public CMIUserEvent(CMIUser user) { 13 | } 14 | 15 | public CMIUser getUser() { 16 | return null; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPlayerEvent extends CMIEvent { 6 | private final Player player = null; 7 | 8 | public CMIPlayerEvent(Player player, boolean async) { 9 | super(async); 10 | } 11 | 12 | public CMIPlayerEvent(Player player) { 13 | } 14 | 15 | public Player getPlayer() { 16 | return null; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled 5 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 6 | org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore 7 | org.eclipse.jdt.core.compiler.release=disabled 8 | org.eclipse.jdt.core.compiler.source=1.8 9 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Portals/RandomLoc.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Portals; 2 | 3 | public class RandomLoc { 4 | double x; 5 | double y; 6 | double z; 7 | 8 | public RandomLoc(double x, double y, double z) { 9 | } 10 | 11 | public double getX() { 12 | return 0.0; 13 | } 14 | 15 | public double getY() { 16 | return 0.0; 17 | } 18 | 19 | public double getZ() { 20 | return 0.0; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/BasicRecipe.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.inventory.ItemStack; 4 | 5 | public class BasicRecipe { 6 | private ItemStack result; 7 | private ItemStack input; 8 | 9 | public BasicRecipe(ItemStack result, ItemStack input) { 10 | } 11 | 12 | public ItemStack getResult() { 13 | return null; 14 | } 15 | 16 | public ItemStack getInput() { 17 | return null; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMISounds.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.util.HashMap; 4 | import java.util.List; 5 | 6 | import javax.annotation.Nonnull; 7 | 8 | import org.bukkit.Sound; 9 | 10 | public class CMISounds { 11 | private static HashMap soundsByname; 12 | private static List soundNames; 13 | 14 | @Nonnull 15 | public static List getSoundNames() { 16 | return null; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Display/CMIInteractionEntity.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Display; 2 | 3 | import org.bukkit.Location; 4 | 5 | public class CMIInteractionEntity extends CMIDisplay { 6 | public CMIInteractionEntity(Location loc) { 7 | super(CMIDisplayType.Interaction, loc); 8 | } 9 | 10 | @Override 11 | public void setWidth(double width) { 12 | } 13 | 14 | @Override 15 | public void setHeight(double height) { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerUnBanEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.command.CommandSender; 4 | import org.bukkit.entity.Player; 5 | 6 | public class CMIPlayerUnBanEvent extends CMIPlayerCancellableEvent { 7 | private CommandSender by; 8 | 9 | public CMIPlayerUnBanEvent(CommandSender by, Player player) { 10 | super(player); 11 | } 12 | 13 | public CommandSender getBannedBy() { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIUserHomeCreateEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | import com.Zrips.CMI.Modules.Homes.CmiHome; 5 | 6 | public class CMIUserHomeCreateEvent extends CMIUserCancellableEvent { 7 | private CmiHome home; 8 | 9 | public CMIUserHomeCreateEvent(CMIUser user, CmiHome home) { 10 | super(user); 11 | } 12 | 13 | public CmiHome getHome() { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIUserHomeRemoveEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | import com.Zrips.CMI.Modules.Homes.CmiHome; 5 | 6 | public class CMIUserHomeRemoveEvent extends CMIUserCancellableEvent { 7 | private CmiHome home; 8 | 9 | public CMIUserHomeRemoveEvent(CMIUser user, CmiHome home) { 10 | super(user); 11 | } 12 | 13 | public CmiHome getHome() { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIFileAppender.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.io.FileWriter; 4 | import java.time.format.DateTimeFormatter; 5 | 6 | public class CMIFileAppender { 7 | private FileWriter writer; 8 | private static final DateTimeFormatter formatter = null; 9 | 10 | public CMIFileAppender(String filePath) { 11 | } 12 | 13 | public void appendData(Object data) { 14 | } 15 | 16 | public void close() { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/AttachedCommands/itemCooldown.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.AttachedCommands; 2 | 3 | public class itemCooldown { 4 | private Long clickedOn; 5 | private Integer id; 6 | 7 | public Long getClickedOn() { 8 | return null; 9 | } 10 | 11 | public void setClickedOn(Long clickedOn) { 12 | } 13 | 14 | public Integer getId() { 15 | return null; 16 | } 17 | 18 | public void setId(Integer id) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ChatFormat/ChatColorListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ChatFormat; 2 | 3 | import org.bukkit.event.Listener; 4 | import org.bukkit.event.player.AsyncPlayerChatEvent; 5 | 6 | import com.Zrips.CMI.CMI; 7 | 8 | public class ChatColorListener implements Listener { 9 | private CMI plugin; 10 | 11 | public ChatColorListener(CMI plugin) { 12 | } 13 | 14 | private void cleanPublicChatFromColors(AsyncPlayerChatEvent event) { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/MirrorV2/CMIMirrorFlipInformation.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.MirrorV2; 2 | 3 | import java.util.Set; 4 | 5 | import net.Zrips.CMILib.Container.CMIBlock.FlipDirection; 6 | 7 | public class CMIMirrorFlipInformation { 8 | Set flip; 9 | 10 | public CMIMirrorFlipInformation add(FlipDirection direction) { 11 | return null; 12 | } 13 | 14 | public Set get() { 15 | return null; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIAsyncConsoleMessageEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | public final class CMIAsyncConsoleMessageEvent extends CMIEvent { 4 | private String message; 5 | private long time; 6 | 7 | public CMIAsyncConsoleMessageEvent(String message, long time) { 8 | super(true); 9 | } 10 | 11 | public String getMessage() { 12 | return null; 13 | } 14 | 15 | public long getTime() { 16 | return 0; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerSitEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.Modules.Animations.AnimationManager.Chair; 6 | 7 | public class CMIPlayerSitEvent extends CMIPlayerCancellableEvent { 8 | private Chair chair; 9 | 10 | public CMIPlayerSitEvent(Player player, Chair chair) { 11 | super(player); 12 | } 13 | 14 | public Chair getChair() { 15 | return null; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/CMINBTListType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | public enum CMINBTListType { 4 | END(0), BYTE(1), SHORT(2), INT(3), LONG(4), FLOAT(5), DOUBLE(6), BYTE_(7), STRING(8), LIST(9), COMPOUND(10), INT_(11), LONG_(12); 5 | 6 | private int id; 7 | 8 | CMINBTListType(int id) { 9 | } 10 | 11 | public int getId() { 12 | return 0; 13 | } 14 | 15 | public static String getType(int id) { 16 | return null; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIColorTypes.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public enum CMIColorTypes { 4 | publicmessage(true), privatemessage(true), me(true), nickname(true), signs(false), books(true), itemname(true), itemlore(true); 5 | 6 | private boolean clean; 7 | 8 | CMIColorTypes(boolean clean) { 9 | } 10 | 11 | public boolean isClean() { 12 | return false; 13 | } 14 | 15 | public void setClean(boolean clean) { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/TagName/TagNameManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.TagName; 2 | 3 | import com.Zrips.CMI.CMI; 4 | 5 | public class TagNameManager { 6 | private CMI plugin; 7 | 8 | public TagNameManager(CMI plugin) { 9 | } 10 | 11 | public void loadConfig() { 12 | } 13 | 14 | private static String Color(String input) { 15 | return null; 16 | } 17 | 18 | public enum TeamAction { 19 | CREATE, UPDATE, DESTROY; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/CMIDiskUsage.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import java.nio.file.FileStore; 4 | 5 | public class CMIDiskUsage { 6 | private static FileStore FileSystem; 7 | 8 | public static long getUsed() { 9 | return 0; 10 | } 11 | 12 | public static long getUsable() { 13 | return 0; 14 | } 15 | 16 | public static void update() { 17 | } 18 | 19 | public static long getTotal() { 20 | return 0; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Anvil/AnvilUnlimitedListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Anvil; 2 | 3 | import java.util.HashMap; 4 | import java.util.UUID; 5 | 6 | import org.bukkit.event.Listener; 7 | import org.bukkit.inventory.ItemStack; 8 | 9 | import com.Zrips.CMI.CMI; 10 | 11 | public class AnvilUnlimitedListener implements Listener { 12 | private CMI plugin; 13 | HashMap instaBuild; 14 | 15 | public AnvilUnlimitedListener(CMI plugin) { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Placeholders/PlaceholderCache.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Placeholders; 2 | 3 | public class PlaceholderCache { 4 | private long validUntil; 5 | private String value; 6 | 7 | public long getValidUntil() { 8 | return 0; 9 | } 10 | 11 | public void setValidUntil(long validUntil) { 12 | } 13 | 14 | public String getValue() { 15 | return null; 16 | } 17 | 18 | public void setValue(String value) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/PlayTimeRewards/PlaytimeClaimCache.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.PlayTimeRewards; 2 | 3 | public class PlaytimeClaimCache { 4 | private long lastUpdate; 5 | private int count; 6 | 7 | public long getLastUpdate() { 8 | return 0; 9 | } 10 | 11 | public void setLastUpdate(long lastUpdate) { 12 | } 13 | 14 | public int getCount() { 15 | return 0; 16 | } 17 | 18 | public void setCount(int count) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIIpUnBanEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | public class CMIIpUnBanEvent extends CMICancellableEvent { 6 | private CommandSender by; 7 | private String ip; 8 | 9 | public CMIIpUnBanEvent(CommandSender by, String ip) { 10 | } 11 | 12 | public CommandSender getBannedBy() { 13 | return null; 14 | } 15 | 16 | public String getIp() { 17 | return null; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPortalUseEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.Modules.Portals.CMIPortal; 6 | 7 | public class CMIPortalUseEvent extends CMIPlayerCancellableEvent { 8 | private final CMIPortal portal = null; 9 | 10 | public CMIPortalUseEvent(Player player, CMIPortal portal) { 11 | super(player); 12 | } 13 | 14 | public CMIPortal getPortal() { 15 | return null; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIInteractType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.entity.Player; 4 | import org.bukkit.event.block.Action; 5 | 6 | public enum CMIInteractType { 7 | LeftClick, RightClick, LeftShiftClick, RightShiftClick; 8 | 9 | public static CMIInteractType getByName(String name) { 10 | return null; 11 | } 12 | 13 | public static CMIInteractType getFromAction(Action action, Player player) { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIItemRepair.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.util.List; 4 | 5 | import org.bukkit.inventory.ItemStack; 6 | 7 | public class CMIItemRepair { 8 | public static double getRepairCost(List items) { 9 | return 0.0; 10 | } 11 | 12 | public static double getRepairCost(ItemStack item) { 13 | return 0.0; 14 | } 15 | 16 | private static double format(double number) { 17 | return 0.0; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/FileDownloader.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import java.util.List; 4 | 5 | public class FileDownloader { 6 | static final List VALID_TYPES = null; 7 | static final List VALID_SOURCES = null; 8 | 9 | public FileDownloader() { 10 | } 11 | 12 | public void downloadUsingStream(String urlStr, String file) { 13 | } 14 | 15 | public void afterDownload() { 16 | } 17 | 18 | public void failedDownload() { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ChatFilter/MessageLog.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ChatFilter; 2 | 3 | import java.util.HashMap; 4 | 5 | public class MessageLog { 6 | private HashMap messages; 7 | private int range; 8 | 9 | public MessageLog(int range) { 10 | } 11 | 12 | public void addMessage(String message) { 13 | } 14 | 15 | private void removeOld() { 16 | } 17 | 18 | public HashMap getMessages() { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Homes/HomeWorldLimit.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Homes; 2 | 3 | import java.util.List; 4 | 5 | public class HomeWorldLimit { 6 | private List worlds; 7 | private int limit; 8 | 9 | public List getWorlds() { 10 | return null; 11 | } 12 | 13 | public void setWorlds(List worlds) { 14 | } 15 | 16 | public int getLimit() { 17 | return 0; 18 | } 19 | 20 | public void setLimit(int limit) { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Particl/Vectors.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Particl; 2 | 3 | import org.bukkit.util.Vector; 4 | 5 | public class Vectors { 6 | Vector p1; 7 | Vector p2; 8 | 9 | public Vectors() { 10 | } 11 | 12 | public void setp1(Vector state) { 13 | } 14 | 15 | public Vector getp1() { 16 | return null; 17 | } 18 | 19 | public void setp2(Vector state) { 20 | } 21 | 22 | public Vector getp2() { 23 | return null; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/GeoIP/Country.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.GeoIP; 2 | 3 | public class Country { 4 | private String code; 5 | private String name; 6 | 7 | public Country(String code, String name) { 8 | } 9 | 10 | public String getCode() { 11 | return null; 12 | } 13 | 14 | public String getName() { 15 | return null; 16 | } 17 | 18 | public void setCode(String code) { 19 | } 20 | 21 | public void setName(String name) { 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/Void.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | 7 | import net.Zrips.CMILib.FileHandler.ConfigReader; 8 | 9 | public class Void implements Cmd { 10 | @Override 11 | public void getExtra(ConfigReader c) { 12 | } 13 | 14 | @Override 15 | @CAnnotation(others = false) 16 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 17 | return null; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerChatFilterCapsEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMIPlayerChatFilterCapsEvent extends CMIPlayerCancellableEvent { 6 | private String message; 7 | 8 | public CMIPlayerChatFilterCapsEvent(Player player, String message) { 9 | super(player); 10 | } 11 | 12 | public String getMessage() { 13 | return null; 14 | } 15 | 16 | public void setMessage(String message) { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerWarnEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | import com.Zrips.CMI.Modules.Warnings.CMIPlayerWarning; 5 | 6 | public class CMIPlayerWarnEvent extends CMIUserCancellableEvent { 7 | private CMIPlayerWarning warning; 8 | 9 | public CMIPlayerWarnEvent(CMIUser user, CMIPlayerWarning warning) { 10 | super(user); 11 | } 12 | 13 | public CMIPlayerWarning getWarning() { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Alias/AliasTabCompListener_1_13_older.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Alias; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerChatTabCompleteEvent; 7 | 8 | public class AliasTabCompListener_1_13_older implements Listener { 9 | @EventHandler(priority = EventPriority.NORMAL) 10 | public void PlayerChatTabCompleteEvent(PlayerChatTabCompleteEvent event) { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/LightFix/LightFix.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.LightFix; 2 | 3 | import java.util.UUID; 4 | import java.util.concurrent.ConcurrentHashMap; 5 | 6 | import com.Zrips.CMI.CMI; 7 | 8 | public class LightFix { 9 | public ConcurrentHashMap LFInfo; 10 | private CMI plugin; 11 | 12 | public LightFix(CMI plugin) { 13 | } 14 | 15 | public void start(LightFixInfo scan) { 16 | } 17 | 18 | private void loadChunk(LightFixInfo info) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Ranks/JobsManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Ranks; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class JobsManager { 6 | public JobsManager() { 7 | } 8 | 9 | public static boolean isJobCorrect(String name) { 10 | return false; 11 | } 12 | 13 | public static String getRealJobName(String name) { 14 | return null; 15 | } 16 | 17 | public static int getJobsLevel(Player player, String jobName) { 18 | return 0; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ViewRange/ChunkChange.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ViewRange; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.Listener; 5 | 6 | import com.Zrips.CMI.CMI; 7 | import com.Zrips.CMI.events.CMIChunkChangeEvent; 8 | 9 | public class ChunkChange implements Listener { 10 | private CMI plugin; 11 | 12 | public ChunkChange(CMI plugin) { 13 | } 14 | 15 | @EventHandler 16 | public void onChunkChangeMove(CMIChunkChangeEvent event) { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/UnloadChunks.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import java.util.concurrent.ConcurrentHashMap; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.Containers.UCInfo; 7 | 8 | public class UnloadChunks { 9 | public ConcurrentHashMap ucinfo; 10 | private CMI plugin; 11 | 12 | public UnloadChunks(CMI plugin) { 13 | } 14 | 15 | public void loadRegionFile(UCInfo scan) { 16 | } 17 | 18 | private void loadChunk(UCInfo scan) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerChatFilterEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.Modules.ChatFilter.RuleResponse; 6 | 7 | public class CMIPlayerChatFilterEvent extends CMIPlayerCancellableEvent { 8 | private RuleResponse response; 9 | 10 | public CMIPlayerChatFilterEvent(Player player, RuleResponse response) { 11 | super(player); 12 | } 13 | 14 | public RuleResponse getResponse() { 15 | return null; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerNickNameChangeEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | 5 | public class CMIPlayerNickNameChangeEvent extends CMIUserCancellableEvent { 6 | private String nickname; 7 | 8 | public CMIPlayerNickNameChangeEvent(CMIUser user, String nickname) { 9 | super(user); 10 | } 11 | 12 | public String getNickName() { 13 | return null; 14 | } 15 | 16 | public void setNickName(String nickname) { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIReplyResponder.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public class CMIReplyResponder { 4 | private String name; 5 | private Long time; 6 | 7 | public CMIReplyResponder(String name, Long time) { 8 | } 9 | 10 | public String getName() { 11 | return null; 12 | } 13 | 14 | public void setName(String name) { 15 | } 16 | 17 | public Long getTime() { 18 | return null; 19 | } 20 | 21 | public void setTime(Long time) { 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Holograms/CMIHologramStopHoverEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Holograms; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.events.CMIPlayerEvent; 6 | 7 | public final class CMIHologramStopHoverEvent extends CMIPlayerEvent { 8 | private CMIHologram hologram; 9 | 10 | public CMIHologramStopHoverEvent(Player player, CMIHologram holo) { 11 | super(player, true); 12 | } 13 | 14 | public CMIHologram getHologram() { 15 | return null; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMISelectionEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.Modules.Portals.CuboidArea; 6 | 7 | public class CMISelectionEvent extends CMIPlayerEvent { 8 | private CuboidArea area; 9 | 10 | public CMISelectionEvent(Player player, CuboidArea area) { 11 | super(player); 12 | } 13 | 14 | public CuboidArea getArea() { 15 | return null; 16 | } 17 | 18 | public void setArea(CuboidArea area) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/DecoratedPotListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.Listener; 5 | import org.bukkit.event.player.PlayerInteractEvent; 6 | 7 | import com.Zrips.CMI.CMI; 8 | 9 | public class DecoratedPotListener implements Listener { 10 | private CMI plugin; 11 | 12 | public DecoratedPotListener(CMI plugin) { 13 | } 14 | 15 | @EventHandler 16 | public void onInteractBeeHive(PlayerInteractEvent event) { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMISunMover.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import net.Zrips.CMILib.Version.Schedulers.CMITask; 4 | 5 | public class CMISunMover { 6 | private CMITask task; 7 | private String moving; 8 | 9 | public CMITask getTimeMoverTask() { 10 | return null; 11 | } 12 | 13 | public void setTimeMoverTask(CMITask task) { 14 | } 15 | 16 | public String getMoving() { 17 | return null; 18 | } 19 | 20 | public void setMoving(String moving) { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/ChunkInfo.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.World; 4 | 5 | public class ChunkInfo { 6 | private int x; 7 | private int z; 8 | private World w; 9 | 10 | public ChunkInfo(int x, int z) { 11 | } 12 | 13 | public int getX() { 14 | return 0; 15 | } 16 | 17 | public int getZ() { 18 | return 0; 19 | } 20 | 21 | public World getW() { 22 | return null; 23 | } 24 | 25 | public void setW(World w) { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/DiscordSRV/DiscordSRVManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.DiscordSRV; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.CMI; 6 | 7 | public class DiscordSRVManager { 8 | private CMI plugin; 9 | private String channelName; 10 | 11 | public DiscordSRVManager(CMI plugin) { 12 | } 13 | 14 | public void sendDiscordDeathMessage(Player player, String deathMessage) { 15 | } 16 | 17 | public void sendDiscordMessage(Player player, String message) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/MirrorV2/CMIRotationAngle.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.MirrorV2; 2 | 3 | public class CMIRotationAngle { 4 | private float pitch; 5 | private float yaw; 6 | 7 | public CMIRotationAngle(float pitch, float yaw) { 8 | } 9 | 10 | public float getPitch() { 11 | return 0.0f; 12 | } 13 | 14 | public float getYaw() { 15 | return 0.0f; 16 | } 17 | 18 | public void setPitch(float pitch) { 19 | } 20 | 21 | public void setYaw(float yaw) { 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Display/CMIBillboard.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Display; 2 | 3 | import org.bukkit.entity.Display.Billboard; 4 | 5 | public enum CMIBillboard { 6 | VERTICAL, CENTER, FIXED, HORIZONTAL; 7 | 8 | private Billboard bukkitBoard = null; 9 | 10 | public Billboard getBillboard() { 11 | return null; 12 | } 13 | 14 | public static CMIBillboard getByName(String name) { 15 | return null; 16 | } 17 | 18 | public CMIBillboard next() { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerJailEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | import com.Zrips.CMI.Modules.Jail.CMIJailCell; 5 | 6 | public class CMIPlayerJailEvent extends CMIUserCancellableEvent { 7 | private CMIJailCell cell; 8 | 9 | public CMIPlayerJailEvent(CMIUser user, CMIJailCell cell) { 10 | super(user); 11 | } 12 | 13 | public CMIJailCell getCell() { 14 | return null; 15 | } 16 | 17 | public void setCell(CMIJailCell cell) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Ranks/AureliumManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Ranks; 2 | 3 | import org.bukkit.command.CommandSender; 4 | import org.bukkit.entity.Player; 5 | 6 | public class AureliumManager { 7 | public static boolean isSkillCorrect(String name) { 8 | return false; 9 | } 10 | 11 | public static String getRealSkillName(CommandSender sender, String name) { 12 | return null; 13 | } 14 | 15 | public static int getSkillLevel(Player player, String skill) { 16 | return 0; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/ArmorChangeListener1_9.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.Listener; 5 | import org.bukkit.event.player.PlayerSwapHandItemsEvent; 6 | 7 | import com.Zrips.CMI.CMI; 8 | 9 | public class ArmorChangeListener1_9 implements Listener { 10 | private CMI plugin; 11 | 12 | public ArmorChangeListener1_9(CMI plugin) { 13 | } 14 | 15 | @EventHandler 16 | public void playerInteractEvent(PlayerSwapHandItemsEvent event) { 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMICounter.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.util.HashMap; 4 | import java.util.UUID; 5 | 6 | public class CMICounter { 7 | private static HashMap> counters; 8 | 9 | public static boolean isJoinedCounter(UUID uuid) { 10 | return false; 11 | } 12 | 13 | public static void setJoinedCounter(UUID uuid, boolean joinedCounter) { 14 | } 15 | 16 | public static HashMap getCounter(UUID uuid) { 17 | return null; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/FlightCharge/freeFall.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.FlightCharge; 2 | 3 | public class freeFall { 4 | private Float fallDistance; 5 | private Boolean jump; 6 | 7 | public Float getFallDistance() { 8 | return null; 9 | } 10 | 11 | public freeFall setFallDistance(Float fallDistance) { 12 | return null; 13 | } 14 | 15 | public Boolean getJump() { 16 | return null; 17 | } 18 | 19 | public freeFall setJump(Boolean jump) { 20 | return null; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerUnjailEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | import com.Zrips.CMI.Modules.Jail.CMIJailCell; 5 | 6 | public class CMIPlayerUnjailEvent extends CMIEvent { 7 | private CMIUser user; 8 | private CMIJailCell cell; 9 | 10 | public CMIPlayerUnjailEvent(CMIUser user, CMIJailCell cell) { 11 | } 12 | 13 | public CMIUser getUser() { 14 | return null; 15 | } 16 | 17 | public CMIJailCell getCell() { 18 | return null; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Display/CMITextAlignment.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Display; 2 | 3 | import org.bukkit.entity.TextDisplay.TextAlignment; 4 | 5 | public enum CMITextAlignment { 6 | LEFT, CENTER, RIGHT; 7 | 8 | private TextAlignment bukkitBoard = null; 9 | 10 | public TextAlignment getTextAlignment() { 11 | return null; 12 | } 13 | 14 | public static CMITextAlignment getByName(String name) { 15 | return null; 16 | } 17 | 18 | public CMITextAlignment next() { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Permissions/PermissionInterface.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Permissions; 2 | 3 | import java.util.UUID; 4 | 5 | import org.bukkit.entity.Player; 6 | 7 | public interface PermissionInterface { 8 | String getMainGroup(Player player); 9 | 10 | String getPrefix(Player player); 11 | 12 | String getSufix(Player player); 13 | 14 | String getNameColor(Player player); 15 | 16 | String getMainGroup(String world, UUID uuid); 17 | 18 | String getPrefix(UUID uuid); 19 | 20 | String getSufix(UUID uuid); 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Ranks/AuraSkillsManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Ranks; 2 | 3 | import org.bukkit.command.CommandSender; 4 | import org.bukkit.entity.Player; 5 | 6 | public class AuraSkillsManager { 7 | 8 | public static boolean isSkillCorrect(String name) { 9 | return false; 10 | } 11 | 12 | public static String getRealSkillName(CommandSender sender, String name) { 13 | return null; 14 | } 15 | 16 | public static int getSkillLevel(Player player, String skillName) { 17 | return 0; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/CMIWorldSearchPlaceType.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public enum CMIWorldSearchPlaceType { 4 | ContainerHolder, Unknown; 5 | 6 | private String place; 7 | private String pref; 8 | private String cmd; 9 | 10 | private CMIWorldSearchPlaceType() { 11 | } 12 | 13 | public String getPlace() { 14 | return null; 15 | } 16 | 17 | public String getPref() { 18 | return null; 19 | } 20 | 21 | public String getCmd() { 22 | return null; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeMaxHealth.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.Set; 4 | 5 | import org.bukkit.entity.Player; 6 | 7 | public class SearchTypeMaxHealth extends SearchTypePlayerBase { 8 | double health; 9 | 10 | public SearchTypeMaxHealth(int health) { 11 | } 12 | 13 | @Override 14 | public Set checkPlayer(Player player) { 15 | return null; 16 | } 17 | 18 | @Override 19 | public String getSearchTypeName() { 20 | return null; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ReplaceBlock/ReplaceBlock.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ReplaceBlock; 2 | 3 | import java.util.concurrent.ConcurrentHashMap; 4 | import java.util.regex.Pattern; 5 | 6 | import com.Zrips.CMI.CMI; 7 | 8 | public class ReplaceBlock { 9 | public Pattern regionPattern; 10 | public ConcurrentHashMap BRInfo; 11 | private CMI plugin; 12 | 13 | public ReplaceBlock(CMI plugin) { 14 | } 15 | 16 | public void start(BRInfo scan) { 17 | } 18 | 19 | private void loadChunk(BRInfo scan) { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeGodMode.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.Set; 4 | 5 | import org.bukkit.entity.Player; 6 | 7 | public class SearchTypeGodMode extends SearchTypePlayerBase { 8 | boolean godMode; 9 | 10 | public SearchTypeGodMode(boolean godMode) { 11 | } 12 | 13 | @Override 14 | public Set checkPlayer(Player player) { 15 | return null; 16 | } 17 | 18 | @Override 19 | public String getSearchTypeName() { 20 | return null; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeFlyMode.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.Set; 4 | 5 | import org.bukkit.entity.Player; 6 | 7 | public class SearchTypeFlyMode extends SearchTypePlayerBase { 8 | boolean allowFlight; 9 | 10 | public SearchTypeFlyMode(boolean allowFlight) { 11 | } 12 | 13 | @Override 14 | public Set checkPlayer(Player player) { 15 | return null; 16 | } 17 | 18 | @Override 19 | public String getSearchTypeName() { 20 | return null; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/DataBase/DBClassLoader.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.DataBase; 2 | 3 | import java.io.File; 4 | import java.io.IOException; 5 | import java.net.URL; 6 | import java.net.URLClassLoader; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class DBClassLoader extends URLClassLoader { 11 | public DBClassLoader(CMI core) { 12 | super(new URL[0], core.getClass().getClassLoader()); 13 | } 14 | 15 | public void addFile(File f) throws IOException { 16 | } 17 | 18 | @Override 19 | public void addURL(URL url) { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Skin/SkinListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Skin; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerLoginEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class SkinListener implements Listener { 11 | private CMI plugin; 12 | 13 | public SkinListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.LOWEST) 17 | public void onPlayerLogin(PlayerLoginEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIUserAlert.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public class CMIUserAlert { 4 | private long until; 5 | private String reason; 6 | 7 | public CMIUserAlert(long until) { 8 | } 9 | 10 | public CMIUserAlert(long until, String reason) { 11 | } 12 | 13 | public long getUntil() { 14 | return 0; 15 | } 16 | 17 | public void setUntil(long until) { 18 | } 19 | 20 | public String getReason() { 21 | return null; 22 | } 23 | 24 | public void setReason(String reason) { 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIChunkChangeEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.Chunk; 4 | import org.bukkit.entity.Player; 5 | 6 | public class CMIChunkChangeEvent extends CMIPlayerCancellableEvent { 7 | private Chunk oldChunk; 8 | private Chunk newChunk; 9 | 10 | public CMIChunkChangeEvent(Player player, Chunk oldChunk, Chunk newChunk) { 11 | super(player); 12 | } 13 | 14 | public Chunk getOldChunk() { 15 | return null; 16 | } 17 | 18 | public Chunk getNewChunk() { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.event.Event; 4 | import org.bukkit.event.HandlerList; 5 | 6 | public class CMIEvent extends Event { 7 | private static final HandlerList handlers = null; 8 | 9 | public CMIEvent() { 10 | } 11 | 12 | public CMIEvent(boolean async) { 13 | super(async); 14 | } 15 | 16 | public static HandlerList getHandlerList() { 17 | return null; 18 | } 19 | 20 | @Override 21 | public HandlerList getHandlers() { 22 | return null; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/PlayTimeRewards/PTRRepeat.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.PlayTimeRewards; 2 | 3 | public class PTRRepeat extends PlayTimeReward { 4 | private boolean stackRewards; 5 | 6 | public PTRRepeat(String name) { 7 | super(name); 8 | } 9 | 10 | public Long getPayEvery() { 11 | return null; 12 | } 13 | 14 | public void setPayEvery(Long payEvery) { 15 | } 16 | 17 | public boolean isStackRewards() { 18 | return false; 19 | } 20 | 21 | public void setStackRewards(boolean stackRewards) { 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIAfkKickEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import java.util.List; 4 | 5 | import org.bukkit.entity.Player; 6 | 7 | public class CMIAfkKickEvent extends CMIPlayerCancellableEvent { 8 | private List kickTrigerCommands; 9 | 10 | public CMIAfkKickEvent(Player player, List kickTrigerCommands) { 11 | super(player); 12 | } 13 | 14 | public List getKickTrigerCommands() { 15 | return null; 16 | } 17 | 18 | public void setKickTrigerCommands(List kickTrigerCommands) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/versionCheck.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerJoinEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class versionCheck implements Listener { 11 | private CMI plugin; 12 | 13 | public versionCheck(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) 17 | public void onJoin(PlayerJoinEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Alias/Allias.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Alias; 2 | 3 | import org.bukkit.command.Command; 4 | import org.bukkit.command.CommandSender; 5 | 6 | import com.Zrips.CMI.Containers.CommandAlias; 7 | import com.Zrips.CMI.Containers.CommandReg; 8 | 9 | public class Allias extends CommandReg { 10 | public Allias(String command, CommandAlias alias) { 11 | super(command, alias); 12 | } 13 | 14 | @Override 15 | public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { 16 | return false; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Mirror/Rotation.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Mirror; 2 | 3 | import org.bukkit.Material; 4 | 5 | public class Rotation { 6 | private Material mat; 7 | private short data; 8 | 9 | public Rotation() { 10 | } 11 | 12 | public Rotation(Material mat, short data) { 13 | } 14 | 15 | public Material getMat() { 16 | return null; 17 | } 18 | 19 | public void setMat(Material mat) { 20 | } 21 | 22 | public short getData() { 23 | return 0; 24 | } 25 | 26 | public void setData(short data) { 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeGameMode.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.Set; 4 | 5 | import org.bukkit.GameMode; 6 | import org.bukkit.entity.Player; 7 | 8 | public class SearchTypeGameMode extends SearchTypePlayerBase { 9 | GameMode mode; 10 | 11 | public SearchTypeGameMode(GameMode mode) { 12 | } 13 | 14 | @Override 15 | public Set checkPlayer(Player player) { 16 | return null; 17 | } 18 | 19 | @Override 20 | public String getSearchTypeName() { 21 | return null; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/DynMap/DynMapManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.DynMap; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.Containers.CMIUser; 7 | 8 | public class DynMapManager { 9 | private CMI plugin; 10 | 11 | public DynMapManager(CMI plugin) { 12 | } 13 | 14 | public void init() { 15 | } 16 | 17 | public void processPlayer(Player player) { 18 | } 19 | 20 | public void processPlayer(CMIUser user) { 21 | } 22 | 23 | public void sentMessage(Player player, String message) { 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Kits/KitListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Kits; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerJoinEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class KitListener implements Listener { 11 | private CMI plugin; 12 | 13 | public KitListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) 17 | public void onPlayerFirstLogin(PlayerJoinEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/DamageControlListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.entity.EntityDamageEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class DamageControlListener implements Listener { 11 | private CMI plugin; 12 | 13 | public DamageControlListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.LOW) 17 | public void EntityDamageEvent(EntityDamageEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerOpenArmorStandEditorEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.ArmorStand; 4 | import org.bukkit.entity.Player; 5 | 6 | public class CMIPlayerOpenArmorStandEditorEvent extends CMIPlayerCancellableEvent { 7 | private ArmorStand armorStand; 8 | 9 | public CMIPlayerOpenArmorStandEditorEvent(Player player, ArmorStand armorStand) { 10 | super(player); 11 | } 12 | 13 | public ArmorStand getArmorStand() { 14 | return null; 15 | } 16 | 17 | public void setArmorStand(ArmorStand armorStand) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/ChunkFix.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import java.util.concurrent.ConcurrentHashMap; 4 | import java.util.regex.Pattern; 5 | 6 | import com.Zrips.CMI.CMI; 7 | import com.Zrips.CMI.Containers.FixChunkInfo; 8 | 9 | public class ChunkFix { 10 | public Pattern regionPattern; 11 | public ConcurrentHashMap ChunkFix; 12 | private CMI plugin; 13 | 14 | public ChunkFix(CMI plugin) { 15 | } 16 | 17 | public void loadRegionFile(FixChunkInfo scan) { 18 | } 19 | 20 | private void loadChunk(FixChunkInfo scan) { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/FirstJoinListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerJoinEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class FirstJoinListener implements Listener { 11 | CMI plugin; 12 | 13 | public FirstJoinListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true) 17 | public void onPlayerFirstLogin(PlayerJoinEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ChatTag/TagListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ChatTag; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerChatTabCompleteEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class TagListener implements Listener { 11 | private CMI plugin; 12 | 13 | public TagListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.NORMAL) 17 | public void PlayerChatTabCompleteEvent(PlayerChatTabCompleteEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Enchants/EnchantListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Enchants; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.inventory.InventoryCloseEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class EnchantListener implements Listener { 11 | private CMI plugin; 12 | 13 | public EnchantListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.MONITOR) 17 | public void InventoryCloseEvent(InventoryCloseEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Ranks/McMMOManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Ranks; 2 | 3 | import java.util.Set; 4 | 5 | import org.bukkit.entity.Player; 6 | 7 | public class McMMOManager { 8 | private static Set correctSkills; 9 | 10 | public McMMOManager() { 11 | } 12 | 13 | public static boolean isSkillCorrect(String name) { 14 | return false; 15 | } 16 | 17 | public static String getRealSkillName(String name) { 18 | return null; 19 | } 20 | 21 | public static int getSkillLevel(Player player, String skill) { 22 | return 0; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/LaunchPadListener1_9.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.entity.EntityToggleGlideEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class LaunchPadListener1_9 implements Listener { 11 | private CMI plugin; 12 | 13 | public LaunchPadListener1_9(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.MONITOR) 17 | public void EntityToggleGlideEvent(EntityToggleGlideEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/CmdCooldown/CooldownListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.CmdCooldown; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerCommandPreprocessEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class CooldownListener implements Listener { 11 | private CMI plugin; 12 | 13 | public CooldownListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.HIGH) 17 | public void onCommand(PlayerCommandPreprocessEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Fireworks/CMIFirework.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Fireworks; 2 | 3 | import java.util.Set; 4 | import java.util.regex.Pattern; 5 | 6 | import org.bukkit.FireworkEffect; 7 | 8 | public class CMIFirework { 9 | int count; 10 | int power; 11 | boolean shootAtAngle; 12 | private Set explosions; 13 | private static String prefix; 14 | private static String suffix; 15 | static Pattern p; 16 | static Pattern c; 17 | static Pattern ex; 18 | 19 | public CMIFirework() { 20 | } 21 | 22 | public CMIFirework(String text) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/CMIDataResultPlayerBase.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.UUID; 4 | 5 | public class CMIDataResultPlayerBase extends CMIDataResultBase { 6 | CMIPlayerSearchPlaceType type; 7 | UUID uuid; 8 | 9 | public CMIDataResultPlayerBase(CMIPlayerSearchPlaceType type, UUID uuid) { 10 | } 11 | 12 | public CMIPlayerSearchPlaceType getType() { 13 | return null; 14 | } 15 | 16 | public UUID getUniqueId() { 17 | return null; 18 | } 19 | 20 | public String getValueOutput() { 21 | return null; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/PlayerListeners1_8.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerInteractAtEntityEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class PlayerListeners1_8 implements Listener { 11 | private CMI plugin; 12 | 13 | public PlayerListeners1_8(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.HIGHEST) 17 | public void PlayerInteractMinecart(PlayerInteractAtEntityEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Alias/onPreprocessCommand.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Alias; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerCommandPreprocessEvent; 7 | 8 | public class onPreprocessCommand implements Listener { 9 | @EventHandler(priority = EventPriority.LOW) 10 | public void onCommand(PlayerCommandPreprocessEvent event) { 11 | } 12 | 13 | @EventHandler(priority = EventPriority.MONITOR) 14 | public void onCommandSpy(PlayerCommandPreprocessEvent event) { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Animations/AnimationListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Animations; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerQuitEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class AnimationListener implements Listener { 11 | private CMI plugin; 12 | 13 | public AnimationListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.LOW, ignoreCancelled = true) 17 | public void onPlayerQuitRiding(PlayerQuitEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Homes/HomeListener1_11.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Homes; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerBedEnterEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class HomeListener1_11 implements Listener { 11 | private CMI plugin; 12 | 13 | public HomeListener1_11(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) 17 | public void onEnderChestClick(PlayerBedEnterEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/CMIDataResultItem.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.UUID; 4 | 5 | public class CMIDataResultItem extends CMIDataResultValue { 6 | String identifier; 7 | 8 | public CMIDataResultItem(CMIPlayerSearchPlaceType type, UUID uuid, int amount) { 9 | super(type, uuid, amount); 10 | } 11 | 12 | public String getSubIdentifier() { 13 | return null; 14 | } 15 | 16 | public void setSubIdentifier(String identifier) { 17 | } 18 | 19 | @Override 20 | public String getValueOutput() { 21 | return null; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Animations/AnimationListenerLegacy.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Animations; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.spigotmc.event.entity.EntityDismountEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class AnimationListenerLegacy implements Listener { 11 | private CMI plugin; 12 | 13 | public AnimationListenerLegacy(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.NORMAL) 17 | public void VehicleExitEvent(EntityDismountEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Elytra/ElytraExploitListener1_13.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Elytra; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerRiptideEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class ElytraExploitListener1_13 implements Listener { 11 | private CMI plugin; 12 | 13 | public ElytraExploitListener1_13(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.HIGHEST) 17 | public void onElytraFlightTrident(PlayerRiptideEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Selection/SelectionListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Selection; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerInteractEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class SelectionListener implements Listener { 11 | private CMI plugin; 12 | 13 | public SelectionListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.LOWEST, ignoreCancelled = true) 17 | public void onSelection(PlayerInteractEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/CMIDataResultValue.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.UUID; 4 | 5 | public class CMIDataResultValue extends CMIDataResultPlayerBase { 6 | int amount; 7 | 8 | public CMIDataResultValue(CMIPlayerSearchPlaceType type, UUID uuid, int amount) { 9 | super(type, uuid); 10 | } 11 | 12 | public int getAmount() { 13 | return 0; 14 | } 15 | 16 | public CMIDataResultValue addAmount(int amount) { 17 | return null; 18 | } 19 | 20 | @Override 21 | public String getValueOutput() { 22 | return null; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/SpawnerCharge/SpawnerProximityListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.SpawnerCharge; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.block.BlockPlaceEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class SpawnerProximityListener implements Listener { 11 | private CMI plugin; 12 | 13 | public SpawnerProximityListener(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.NORMAL) 17 | public void BlockPlaceEventRange(BlockPlaceEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Vanish/VanishListener1_19.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Vanish; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.block.BlockReceiveGameEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class VanishListener1_19 implements Listener { 11 | private CMI plugin; 12 | 13 | public VanishListener1_19(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true) 17 | public void onBlockReceiveGameEvent(BlockReceiveGameEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/importSettings.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import java.util.HashMap; 4 | 5 | import com.Zrips.CMI.utils.EssentialsConverter.importType; 6 | 7 | public class importSettings { 8 | private HashMap map; 9 | 10 | public importSettings set(importType type, boolean state) { 11 | return null; 12 | } 13 | 14 | public boolean is(importType type) { 15 | return false; 16 | } 17 | 18 | public HashMap getMap() { 19 | return null; 20 | } 21 | 22 | public void setMap(HashMap map) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Ranks/InformTimer.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Ranks; 2 | 3 | public class InformTimer { 4 | private Long nextCheck; 5 | private Long timesInformed; 6 | 7 | public InformTimer() { 8 | } 9 | 10 | public InformTimer(long nextCheck) { 11 | } 12 | 13 | public Long getNextCheck() { 14 | return null; 15 | } 16 | 17 | public void setNextCheck(Long nextCheck) { 18 | } 19 | 20 | public Long getTimesInformed() { 21 | return null; 22 | } 23 | 24 | public void resetTimesInformed() { 25 | } 26 | 27 | public void addTimesInformed() { 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Vanish/VanishActionStateBoolean.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Vanish; 2 | 3 | public class VanishActionStateBoolean extends VanishActionState { 4 | boolean state; 5 | 6 | public VanishActionStateBoolean() { 7 | } 8 | 9 | public VanishActionStateBoolean(boolean state) { 10 | } 11 | 12 | @Override 13 | public String toString() { 14 | return null; 15 | } 16 | 17 | @Override 18 | public VanishActionStateBoolean fromString(String value) { 19 | return null; 20 | } 21 | 22 | @Override 23 | public boolean is() { 24 | return false; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/CMIDataResultLocationBlock.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import net.Zrips.CMILib.Container.CMIVectorInt3D; 4 | import net.Zrips.CMILib.Items.CMIMaterial; 5 | 6 | public class CMIDataResultLocationBlock extends CMIDataResultLocationBase { 7 | CMIMaterial type; 8 | 9 | public CMIDataResultLocationBlock(CMIMaterial type, CMIVectorInt3D vector, int amount) { 10 | super(vector, amount); 11 | } 12 | 13 | public CMIMaterial getType() { 14 | return null; 15 | } 16 | 17 | @Override 18 | public String getValueOutput() { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CMI-API 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | org.eclipse.m2e.core.maven2Builder 15 | 16 | 17 | 18 | 19 | 20 | org.eclipse.m2e.core.maven2Nature 21 | org.eclipse.jdt.core.javanature 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/AttachedCommands/CustomNBTListener1_8.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.AttachedCommands; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerInteractAtEntityEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class CustomNBTListener1_8 implements Listener { 11 | private CMI plugin; 12 | 13 | public CustomNBTListener1_8(CMI plugin) { 14 | } 15 | 16 | @EventHandler(priority = EventPriority.NORMAL) 17 | public void playerInteractAtEntityCommand(PlayerInteractAtEntityEvent event) { 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.block.Block; 4 | import org.bukkit.block.Sign; 5 | import org.bukkit.entity.Player; 6 | import org.bukkit.event.block.BlockPlaceEvent; 7 | 8 | public class CMIEvent { 9 | public static BlockPlaceEvent createSignEvent(Block block, Sign sign, Player player) { 10 | return null; 11 | } 12 | 13 | public static BlockPlaceEvent placeSignEvent(Block block, Sign sign, Player player) { 14 | return null; 15 | } 16 | 17 | public static BlockPlaceEvent placeBlockEvent(Block block, Player player) { 18 | return null; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Notify/Notification.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Notify; 2 | 3 | import java.util.List; 4 | 5 | public class Notification { 6 | private String notifyier; 7 | private List mesages; 8 | 9 | public Notification(String notifyier) { 10 | } 11 | 12 | public String getNotifyier() { 13 | return null; 14 | } 15 | 16 | public void setNotifyier(String notifyier) { 17 | } 18 | 19 | public List getMesages() { 20 | return null; 21 | } 22 | 23 | public void setMesages(List mesages) { 24 | } 25 | 26 | public void addMesage(String mesage) { 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMISelectionVisualizationEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.Modules.Selection.Visualizer; 6 | 7 | public class CMISelectionVisualizationEvent extends CMIPlayerCancellableEvent { 8 | private Visualizer visualizer; 9 | 10 | @Deprecated 11 | public CMISelectionVisualizationEvent(Player player) { 12 | super(player); 13 | } 14 | 15 | public CMISelectionVisualizationEvent(Player player, Visualizer visualizer) { 16 | super(player); 17 | } 18 | 19 | public Visualizer getVisualizer() { 20 | return null; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIUserKitAcquireEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import com.Zrips.CMI.Containers.CMIUser; 4 | import com.Zrips.CMI.Modules.Kits.Kit; 5 | 6 | public class CMIUserKitAcquireEvent extends CMIUserCancellableEvent { 7 | private Kit kit; 8 | private boolean giveItems; 9 | 10 | public CMIUserKitAcquireEvent(CMIUser user, Kit kit, boolean giveItems) { 11 | super(user); 12 | } 13 | 14 | public Kit getKit() { 15 | return null; 16 | } 17 | 18 | public boolean isGiveItems() { 19 | return false; 20 | } 21 | 22 | public void setGiveItems(boolean giveItems) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ChunkPreview/ChunkPreview.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ChunkPreview; 2 | 3 | import java.util.UUID; 4 | import java.util.concurrent.ConcurrentHashMap; 5 | 6 | import com.Zrips.CMI.CMI; 7 | import com.Zrips.CMI.Containers.ChunkPreviewInfo; 8 | 9 | public class ChunkPreview { 10 | public ConcurrentHashMap Info; 11 | private CMI plugin; 12 | 13 | public ChunkPreview(CMI plugin) { 14 | } 15 | 16 | public void clearCache(UUID uuid) { 17 | } 18 | 19 | public void loadRegionFile(ChunkPreviewInfo scan) { 20 | } 21 | 22 | private void loadChunk(ChunkPreviewInfo scan) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeItemLore.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public class SearchTypeItemLore extends SearchTypeItem { 4 | String lore; 5 | 6 | public SearchTypeItemLore(String lore) { 7 | super(null); 8 | } 9 | 10 | public SearchTypeItemLore(SearchTypeItem parent, String lore) { 11 | super(parent); 12 | } 13 | 14 | public String getLore() { 15 | return null; 16 | } 17 | 18 | @Override 19 | protected boolean isValid() { 20 | return false; 21 | } 22 | 23 | @Override 24 | public String getSearchTypeName() { 25 | return null; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeItemName.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public class SearchTypeItemName extends SearchTypeItem { 4 | String name; 5 | 6 | public SearchTypeItemName(String name) { 7 | super(null); 8 | } 9 | 10 | public SearchTypeItemName(SearchTypeItem parent, String name) { 11 | super(parent); 12 | } 13 | 14 | public String getName() { 15 | return null; 16 | } 17 | 18 | @Override 19 | protected boolean isValid() { 20 | return false; 21 | } 22 | 23 | @Override 24 | public String getSearchTypeName() { 25 | return null; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/patrol.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class patrol implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&ePatrol", regVar = { 0 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerKickEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import java.util.UUID; 4 | 5 | import org.bukkit.command.CommandSender; 6 | 7 | public class CMIPlayerKickEvent extends CMICancellableEvent { 8 | private String reason; 9 | private CommandSender by; 10 | private UUID banned; 11 | 12 | public CMIPlayerKickEvent(CommandSender by, UUID banned, String reason) { 13 | } 14 | 15 | public String getReason() { 16 | return null; 17 | } 18 | 19 | public CommandSender getBannedBy() { 20 | return null; 21 | } 22 | 23 | public UUID getBanned() { 24 | return null; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMITextCleaner.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | public class CMITextCleaner { 6 | private static int cicles; 7 | 8 | public static String cleanFromColorCodes(Object p, String msg, CMIColorTypes type, boolean clean) { 9 | return null; 10 | } 11 | 12 | public static String cleanFromColorCodes(Object p, String msg, CMIColorTypes type, boolean clean, boolean forceClean) { 13 | return null; 14 | } 15 | 16 | private static boolean hasColorPermission(Player player, CMIColorTypes type, String color, boolean wildCard) { 17 | return false; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeItemAmount.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public class SearchTypeItemAmount extends SearchTypeItem { 4 | int stackSize; 5 | 6 | public SearchTypeItemAmount(int stackSize) { 7 | super(null); 8 | } 9 | 10 | public SearchTypeItemAmount(SearchTypeItem parent, int stackSize) { 11 | super(parent); 12 | } 13 | 14 | public int getStackSize() { 15 | return 0; 16 | } 17 | 18 | @Override 19 | protected boolean isValid() { 20 | return false; 21 | } 22 | 23 | @Override 24 | public String getSearchTypeName() { 25 | return null; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Teleportations/PositionRelativeData.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Teleportations; 2 | 3 | import org.bukkit.Location; 4 | 5 | public class PositionRelativeData { 6 | private int localX; 7 | private int localZ; 8 | private int maxWorldY; 9 | private int minWorldY; 10 | 11 | public PositionRelativeData(Location loc) { 12 | } 13 | 14 | public int getLocalX() { 15 | return 0; 16 | } 17 | 18 | public int getLocalZ() { 19 | return 0; 20 | } 21 | 22 | public int getMaxWorldY() { 23 | return 0; 24 | } 25 | 26 | public int getMinWorldY() { 27 | return 0; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/jump.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class jump implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eJump to target block", regVar = { 0 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/Lag.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | import java.util.List; 4 | 5 | public class Lag implements Runnable { 6 | private List TicksList; 7 | 8 | public int getTicks() { 9 | return 0; 10 | } 11 | 12 | public double getTPS() { 13 | return 0.0; 14 | } 15 | 16 | public double getTPS(int seconds) { 17 | return 0.0; 18 | } 19 | 20 | public List getLastTimes(int range) { 21 | return null; 22 | } 23 | 24 | @Override 25 | public void run() { 26 | } 27 | 28 | public static double getProcessCpuLoad() throws Exception { 29 | return 0.0; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/ipbanlist.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class ipbanlist implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eBan ip list", regVar = { 0, 1 }, consoleVar = { 0, 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/CustomText/CTextPage.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.CustomText; 2 | 3 | import java.util.List; 4 | 5 | public class CTextPage { 6 | private String label; 7 | private List lines; 8 | 9 | public CTextPage() { 10 | } 11 | 12 | public CTextPage(List lines) { 13 | } 14 | 15 | public String getLabel() { 16 | return null; 17 | } 18 | 19 | public CTextPage setLabel(String label) { 20 | return null; 21 | } 22 | 23 | public List getLines() { 24 | return null; 25 | } 26 | 27 | public CTextPage setLines(List lines) { 28 | return null; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/PlayTime/CMIPlayTimeFormat.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.PlayTime; 2 | 3 | public class CMIPlayTimeFormat { 4 | static showType forceShowDays; 5 | static showType forceShowHours; 6 | static showType forceShowMinutes; 7 | static showType forceShowSeconds; 8 | static String daysFormat; 9 | static String hoursFormat; 10 | static String minutesFormat; 11 | static String secondsFormat; 12 | 13 | public static void update() { 14 | } 15 | 16 | public static String formatPlaytimePlaceholder(long ticks) { 17 | return null; 18 | } 19 | 20 | enum showType { 21 | full, partial, normal; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Vanish/VanishActionStateInt.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Vanish; 2 | 3 | public class VanishActionStateInt extends VanishActionState { 4 | int value; 5 | 6 | public VanishActionStateInt() { 7 | } 8 | 9 | public VanishActionStateInt(int value) { 10 | } 11 | 12 | @Override 13 | public String toString() { 14 | return null; 15 | } 16 | 17 | @Override 18 | public VanishActionStateInt fromString(String value) { 19 | return null; 20 | } 21 | 22 | @Override 23 | public boolean is() { 24 | return false; 25 | } 26 | 27 | public int getValue() { 28 | return 0; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/oplist.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class oplist implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck operator player list", regVar = { 0 }, consoleVar = { 0 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/PlayerNote.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public class PlayerNote { 4 | private String sender; 5 | private long time; 6 | private String note; 7 | 8 | public PlayerNote(String sender, Long time, String note) { 9 | } 10 | 11 | public String getSender() { 12 | return null; 13 | } 14 | 15 | public void setSender(String sender) { 16 | } 17 | 18 | public Long getTime() { 19 | return null; 20 | } 21 | 22 | public void setTime(Long time) { 23 | } 24 | 25 | public String getNote() { 26 | return null; 27 | } 28 | 29 | public void setNote(String note) { 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/RegionFiles.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.io.File; 4 | import java.io.IOException; 5 | import java.io.RandomAccessFile; 6 | 7 | public class RegionFiles { 8 | private static final int SECTOR_BYTES = 0; 9 | private static final int SECTOR_INTS = 0; 10 | private RandomAccessFile file; 11 | private final int offsets = 0; 12 | 13 | public RegionFiles(File path) { 14 | } 15 | 16 | private int getOffset(int x, int z) { 17 | return 0; 18 | } 19 | 20 | public boolean hasChunk(int x, int z) { 21 | return false; 22 | } 23 | 24 | public void close() throws IOException { 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/MirrorV2/CMIMirrorBlockInformationV2.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.MirrorV2; 2 | 3 | import org.bukkit.Location; 4 | import org.bukkit.World; 5 | import org.bukkit.util.Vector; 6 | 7 | public class CMIMirrorBlockInformationV2 { 8 | private Vector vector; 9 | private Object data; 10 | 11 | CMIMirrorBlockInformationV2(Vector vector, Object data) { 12 | } 13 | 14 | public Location getLoc(World world) { 15 | return null; 16 | } 17 | 18 | public void setVector(Vector vector) { 19 | } 20 | 21 | public Object getData() { 22 | return null; 23 | } 24 | 25 | public void setData(Object data) { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeItemModelData.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | public class SearchTypeItemModelData extends SearchTypeItem { 4 | int modelData; 5 | 6 | public SearchTypeItemModelData(int modelData) { 7 | super(null); 8 | } 9 | 10 | public SearchTypeItemModelData(SearchTypeItem parent, int modelData) { 11 | super(parent); 12 | } 13 | 14 | public int getModelData() { 15 | return 0; 16 | } 17 | 18 | @Override 19 | protected boolean isValid() { 20 | return false; 21 | } 22 | 23 | @Override 24 | public String getSearchTypeName() { 25 | return null; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ViewRange/ViewRangeListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ViewRange; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerJoinEvent; 7 | import org.bukkit.event.player.PlayerTeleportEvent; 8 | 9 | public class ViewRangeListener implements Listener { 10 | @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) 11 | public void onLogIn(PlayerJoinEvent event) { 12 | } 13 | 14 | @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) 15 | public void onJoin(PlayerTeleportEvent event) { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/blocknbt.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class blocknbt implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eShow block NBT information", regVar = { 0 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/endgateway.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class endgateway implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eToggle end gateway beam", regVar = { 0 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIMessageReplies.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.util.HashMap; 4 | 5 | public class CMIMessageReplies { 6 | private static HashMap replyMapBySender; 7 | private static HashMap replyMapByReceiver; 8 | 9 | public static String getMessageReplyTo(String sender) { 10 | return null; 11 | } 12 | 13 | public static void removeMessageReplyTo(String sender) { 14 | } 15 | 16 | public static void addMessageReplyTo(String target, String sender) { 17 | } 18 | 19 | public static void addMessageReplyToBySender(String target, String sender) { 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/emojipicker.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class emojipicker implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&ePick emoji", args = "", tab = {}, explanation = {}, consoleVar = { 666 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Alias/AliasTabCompListener_1_14_never.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Alias; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerCommandSendEvent; 7 | import org.bukkit.event.server.TabCompleteEvent; 8 | 9 | public class AliasTabCompListener_1_14_never implements Listener { 10 | @EventHandler(priority = EventPriority.HIGHEST) 11 | public void onPlayerCommandSendEvent(PlayerCommandSendEvent event) { 12 | } 13 | 14 | @EventHandler(priority = EventPriority.HIGHEST) 15 | public void PlayerChatTabCompleteEvent(TabCompleteEvent event) { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/DataBase/DBConnectionPool.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.DataBase; 2 | 3 | import java.sql.SQLException; 4 | 5 | public class DBConnectionPool { 6 | private DBConnection connection; 7 | private String url; 8 | private String username; 9 | private String password; 10 | 11 | public DBConnectionPool(String driverName, String url, String username, String password) throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException { 12 | } 13 | 14 | public synchronized DBConnection getConnection() throws SQLException { 15 | return null; 16 | } 17 | 18 | public synchronized void closeConnection() { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/spawnereditor.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class spawnereditor implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 100, info = "&eEdit spawner", regVar = { 0, 1 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/CMIOnEnable.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI; 2 | 3 | import java.util.List; 4 | 5 | public class CMIOnEnable { 6 | static List logo; 7 | static List SpigotLogo; 8 | static List FoliaError; 9 | private static int requiredCMILibVersion; 10 | private static final String slastCMILibVersion = null; 11 | private static final String srequiredCMILibVersion = null; 12 | public static int cmiLibId; 13 | 14 | public static void defaultLocaleDownloader() { 15 | } 16 | 17 | private static void libCheck() { 18 | } 19 | 20 | private static void libDownloader() { 21 | } 22 | 23 | public static void init(CMI plugin) { 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/editctext.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class editctext implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCustom text editor", regVar = { -66 }, consoleVar = { 666 }, others = false, multiTab = { "[ctext]" }) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/ranklist.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class ranklist implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eList of possible ranks", regVar = { 0, 1 }, consoleVar = { 0, 1 }, modules = "ranks", others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/reload.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class reload implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eReloads plugins config and locale files", regVar = { 0 }, consoleVar = { 0 }, others = false, alias = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/sameip.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class sameip implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&eList players logged in from same ip", regVar = { 0 }, consoleVar = { 0 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Alias/onServerPreprocessCommand.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Alias; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.server.RemoteServerCommandEvent; 7 | import org.bukkit.event.server.ServerCommandEvent; 8 | 9 | public class onServerPreprocessCommand implements Listener { 10 | @EventHandler(priority = EventPriority.NORMAL) 11 | public void onConsoleCommand(ServerCommandEvent event) { 12 | } 13 | 14 | @EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true) 15 | public void RemoteServerCommandEvent(RemoteServerCommandEvent event) { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Fireworks/firework.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Fireworks; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class firework implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eShoot firework", args = "", tab = { "" }, regVar = { -66 }, consoleVar = { 2, 3 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/banlist.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class banlist implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eBan list", args = "(-s)", multiTab = { "-s" }, regVar = { 0, 1, 2 }, consoleVar = { 0, 1, 3 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIChequeUsageEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | import org.bukkit.inventory.ItemStack; 5 | 6 | public class CMIChequeUsageEvent extends CMIPlayerCancellableEvent { 7 | private ItemStack cheque; 8 | private double price; 9 | 10 | public CMIChequeUsageEvent(Player player, ItemStack cheque, double price) { 11 | super(player); 12 | } 13 | 14 | public double getPrice() { 15 | return 0.0; 16 | } 17 | 18 | public void setPrice(double price) { 19 | } 20 | 21 | public ItemStack getCheque() { 22 | return null; 23 | } 24 | 25 | public void setCheque(ItemStack cheque) { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerCancellableEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | import org.bukkit.event.Cancellable; 5 | 6 | public class CMIPlayerCancellableEvent extends CMIPlayerEvent implements Cancellable { 7 | private boolean cancel; 8 | 9 | public CMIPlayerCancellableEvent(Player player, boolean async) { 10 | super(player, async); 11 | } 12 | 13 | public CMIPlayerCancellableEvent(Player player) { 14 | super(player); 15 | } 16 | 17 | @Override 18 | public final void setCancelled(boolean cancel) { 19 | } 20 | 21 | @Override 22 | public final boolean isCancelled() { 23 | return false; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/EventActions/EventActionListener1_12.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.EventActions; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.player.PlayerAdvancementDoneEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class EventActionListener1_12 implements Listener { 11 | private CMI plugin; 12 | static boolean existingMethod; 13 | 14 | public EventActionListener1_12(CMI plugin) { 15 | } 16 | 17 | @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) 18 | public void PlayerAdvancementDoneEvent(PlayerAdvancementDoneEvent event) { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/FindBiome/FindBiomeManager.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.FindBiome; 2 | 3 | import java.util.UUID; 4 | import java.util.concurrent.ConcurrentHashMap; 5 | 6 | import org.bukkit.entity.Player; 7 | 8 | import com.Zrips.CMI.CMI; 9 | 10 | public class FindBiomeManager { 11 | public ConcurrentHashMap FindBiomeInfo; 12 | private CMI plugin; 13 | 14 | public FindBiomeManager(CMI plugin) { 15 | } 16 | 17 | public boolean stop(Player player) { 18 | return false; 19 | } 20 | 21 | public void start(FindBiomeInfo scan) { 22 | } 23 | 24 | @SuppressWarnings("deprecation") 25 | private void loadChunk(FindBiomeInfo scan) { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/colorpicker.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class colorpicker implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&ePick hex color", args = "(hex/colorname)", tab = {}, explanation = {}, consoleVar = { 666 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/loom.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class loom implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eOpen loom", args = "(playerName)", tab = { "playername", "%%-s" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/migratedatabase.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class migratedatabase implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eChanges database system and migrates all data", regVar = { 666 }, consoleVar = { 0 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/releasepet.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class releasepet implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eRelease your tamed pet", args = "(-s)", tab = { "-s" }, regVar = { 0, 1 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/serverlist.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class serverlist implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eShow server list", args = "", tab = {}, explanation = {}, regVar = { -666 }, consoleVar = { -666 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/solve.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class solve implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 110, info = "&eSolve equation", args = "[equation]", explanation = {}, regVar = { 1 }, consoleVar = { 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIChequeCreationEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | import org.bukkit.inventory.ItemStack; 5 | 6 | public class CMIChequeCreationEvent extends CMIPlayerCancellableEvent { 7 | private ItemStack cheque; 8 | private double price; 9 | 10 | public CMIChequeCreationEvent(Player player, ItemStack cheque, double price) { 11 | super(player); 12 | } 13 | 14 | public double getPrice() { 15 | return 0.0; 16 | } 17 | 18 | public void setPrice(double price) { 19 | } 20 | 21 | public ItemStack getCheque() { 22 | return null; 23 | } 24 | 25 | public void setCheque(ItemStack cheque) { 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIIpBanEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | public class CMIIpBanEvent extends CMICancellableEvent { 6 | private CommandSender by; 7 | private String ip; 8 | private Long until; 9 | private String reason; 10 | 11 | public CMIIpBanEvent(CommandSender by, String ip, String reason, Long until) { 12 | } 13 | 14 | public CommandSender getBannedBy() { 15 | return null; 16 | } 17 | 18 | public String getIp() { 19 | return null; 20 | } 21 | 22 | public Long getUntil() { 23 | return null; 24 | } 25 | 26 | public String getReason() { 27 | return null; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/checkexp.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class checkexp implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck players exp", args = "(playerName)", tab = { "playername" }, regVar = { 0, 1 }, consoleVar = { 1 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/unmutechat.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class unmutechat implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 240, info = "&eUnmute public chat", args = "(-s)", tab = {}, regVar = { 0, 1 }, consoleVar = { 0, 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/ScanFindPlace.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | public enum ScanFindPlace { 4 | CHEST("Chest"), TRAPPED_CHEST("Traped chest"), FURNACE("Furnace"), DROPPER("Dropper"), DISPENSER("Dispenser"), ITEM_FRAME("Item frame"), HOPPER("Hopper"), BREWING_STAND("Brewing stand"), HORSE( 5 | "Horse"), ENTITY("Entity"), MINECART_CHEST("Minecart chest"), MINECART_HOPPER("Minecart hopper"), ARMOR_STAND("Armor stand"), SHULKER_BOX("Shulker box"), SHULKER_INCEPTION( 6 | "Shulker box inside [type]"), UNKNOWN("Unknown"); 7 | 8 | private String name; 9 | 10 | private ScanFindPlace(String name) { 11 | } 12 | 13 | public String getName() { 14 | return null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/editwarp.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class editwarp implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eEdit warps", args = "(warpName) (newName)", tab = { "playerwarps" }, regVar = { 0, 1, 2 }, consoleVar = { 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/me.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class me implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eSends special message to all players", args = "[message]", regVar = { -100 }, consoleVar = { -100 }, others = false, ignoreHelpPage = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/seen.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class seen implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck when player was last seen", args = "[playerName/uuid]", tab = { "playername" }, regVar = { 1 }, consoleVar = { 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/servertime.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class servertime implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 257, info = "&eShow server time", args = "", tab = {}, explanation = {}, regVar = { 0 }, consoleVar = { 0 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/spawner.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class spawner implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 100, info = "&eSets spawner", args = "[EntityType]", tab = { "EntityType" }, regVar = { 1 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/utils/DateFormat.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.utils; 2 | 3 | public class DateFormat { 4 | public static String MiliToDate(long currentTime) { 5 | return null; 6 | } 7 | 8 | public static String MiliToDate(long currentTime, String format) { 9 | return null; 10 | } 11 | 12 | public static String MiliToDateShort(long currentTime) { 13 | return null; 14 | } 15 | 16 | public static String MiliToHours(long currentTime) { 17 | return null; 18 | } 19 | 20 | public static int[] splitToComponentDate(Long biggys) { 21 | return null; 22 | } 23 | 24 | public static int[] splitToComponentTimes(Long biggys) { 25 | return null; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/burn.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class burn implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eBurn a player", args = "(playerName) (time) (-s)", tab = { "playername" }, regVar = { 0, 1, 2, 3 }, consoleVar = { 1, 2, 3 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/checkcommand.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class checkcommand implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eSearch for possible commands by keyword", args = "(key word)", regVar = { 0, 1, 2 }, consoleVar = { 0, 1, 2 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/feed.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class feed implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eFeed player", args = "(playerName/all) (-s)", tab = { "playername%%all", "-s%%" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/getbook.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class getbook implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eGet book", args = "[cTextName] (playerName)", tab = { "ctext", "playerName" }, regVar = { -66 }, consoleVar = { 2, 3 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/warpgroups.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class warpgroups implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 115, info = "&eLists warp groups", args = "", tab = {}, explanation = {}, regVar = { 0 }, consoleVar = { 0 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/MirrorV2/CMIMirrorModeV2.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.MirrorV2; 2 | 3 | public class CMIMirrorModeV2 { 4 | private boolean enabled; 5 | private CMIMirrorTypeV2 type; 6 | private int sections; 7 | 8 | public CMIMirrorModeV2(CMIMirrorTypeV2 type) { 9 | } 10 | 11 | public int getSections() { 12 | return 0; 13 | } 14 | 15 | public void setSections(int sections) { 16 | } 17 | 18 | public CMIMirrorTypeV2 getType() { 19 | return null; 20 | } 21 | 22 | public void setType(CMIMirrorTypeV2 type) { 23 | } 24 | 25 | public boolean isEnabled() { 26 | return false; 27 | } 28 | 29 | public void setEnabled(boolean enabled) { 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeItemExact.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import org.bukkit.inventory.ItemStack; 4 | 5 | public class SearchTypeItemExact extends SearchTypeItem { 6 | ItemStack searchedItem; 7 | 8 | public SearchTypeItemExact(ItemStack item) { 9 | super(null); 10 | } 11 | 12 | public SearchTypeItemExact(SearchTypeItem parent, ItemStack item) { 13 | super(parent); 14 | } 15 | 16 | public ItemStack getSearchedItem() { 17 | return null; 18 | } 19 | 20 | @Override 21 | protected boolean isValid() { 22 | return false; 23 | } 24 | 25 | @Override 26 | public String getSearchTypeName() { 27 | return null; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeItemMaterial.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import org.bukkit.Material; 4 | 5 | public class SearchTypeItemMaterial extends SearchTypeItem { 6 | Material material; 7 | 8 | public SearchTypeItemMaterial(Material material) { 9 | super(null); 10 | } 11 | 12 | public SearchTypeItemMaterial(SearchTypeItem parent, Material material) { 13 | super(parent); 14 | } 15 | 16 | public Material getMaterial() { 17 | return null; 18 | } 19 | 20 | @Override 21 | protected boolean isValid() { 22 | return false; 23 | } 24 | 25 | @Override 26 | public String getSearchTypeName() { 27 | return null; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/afk.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class afk implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eToggle afk mode. Reason could be provided", args = "(-p:playerName) (reason) (-s)", tab = { "playername", "-s" }, modules = { "afk" }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/checkban.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class checkban implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck players ban status", args = "(playerName)", tab = { "bannedplayername" }, regVar = { 0, 1 }, consoleVar = { 0, 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/colors.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class colors implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eShows all possible colors", args = "(playerName)", tab = { "playername" }, regVar = { 0, 1 }, consoleVar = { 1 }, alias = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/entityinfo.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class entityinfo implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck entity information", args = "(playername)", multiTab = { "[playername]" }, regVar = { 0, 1 }, consoleVar = { 1 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/hunger.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class hunger implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eSet players hunger", args = "[playerName] [amount] (-s)", tab = { "playername" }, regVar = { 1, 2, 3 }, consoleVar = { 2, 3 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Holograms/CMIHologramStartHoverEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Holograms; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.Modules.Portals.CMIPlaneIntersection; 6 | import com.Zrips.CMI.events.CMIPlayerEvent; 7 | 8 | public final class CMIHologramStartHoverEvent extends CMIPlayerEvent { 9 | private CMIHologram hologram; 10 | private CMIPlaneIntersection pos; 11 | 12 | public CMIHologramStartHoverEvent(Player player, CMIHologram holo, CMIPlaneIntersection pos) { 13 | super(player, true); 14 | } 15 | 16 | public CMIHologram getHologram() { 17 | return null; 18 | } 19 | 20 | public CMIPlaneIntersection getPos() { 21 | return null; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/dback.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class dback implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eReturns to death location", args = "(playerName) (-s)", tab = { "playername", "-s%%" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/findbiome.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class findbiome implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eFinds nearest biome by name", args = "&3(biomeName/stop/stopall)", tab = { "biome" }, regVar = { 1 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/invload.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class invload implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eLoad saved inventory", args = "(sourceName) (targetName) [id/last]", regVar = { 1, 2, 3 }, consoleVar = { 2, 3 }, alias = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/removewarp.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class removewarp implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eRemove warp", args = "(warpName)", tab = { "warps" }, regVar = { 0, 1 }, consoleVar = { 1 }, customAlias = { "delwarp" }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/reply.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class reply implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eReply to last message sender", args = "[message]", regVar = { -100 }, consoleVar = { -100 }, customAlias = "r", ignoreHelpPage = true, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/stonecutter.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class stonecutter implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eOpen stonecutter", args = "(playerName) (-s)", tab = { "playername", "%%-s" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/version.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class version implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 9999, info = "&eShow plugin version", args = "", tab = {}, explanation = {}, regVar = { 0 }, consoleVar = { 0 }, others = false, alias = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/itemnbt.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class itemnbt implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eShow item NBT information", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/near.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class near implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&eCheck who is near you", args = "(distance)", tab = { "100%%" }, explanation = {}, regVar = { 0, 1 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/smithingtable.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class smithingtable implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eOpen smithing table", args = "(playerName)", tab = { "playername", "%%-s" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/tps.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class tps implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 257, info = "&eCheck servers tps status", args = "(-spikes)", tab = { "-spikes" }, explanation = {}, regVar = { 0, 1 }, consoleVar = { 0, 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerTeleportRequestEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import org.bukkit.entity.Player; 4 | 5 | import com.Zrips.CMI.Modules.Teleportations.TeleportManager.TpAction; 6 | 7 | public class CMIPlayerTeleportRequestEvent extends CMIPlayerCancellableEvent { 8 | private Player whoAccepts; 9 | private TpAction action; 10 | 11 | public CMIPlayerTeleportRequestEvent(Player whoOffers, Player whoAccepts, TpAction action) { 12 | super(whoOffers); 13 | } 14 | 15 | public Player getWhoOffers() { 16 | return null; 17 | } 18 | 19 | public Player getWhoAccepts() { 20 | return null; 21 | } 22 | 23 | public TpAction getAction() { 24 | return null; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Worlds/CMIWorldListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Worlds; 2 | 3 | import java.util.Set; 4 | import java.util.concurrent.ConcurrentHashMap; 5 | 6 | import org.bukkit.event.EventHandler; 7 | import org.bukkit.event.Listener; 8 | import org.bukkit.event.world.WorldLoadEvent; 9 | 10 | import com.Zrips.CMI.CMI; 11 | 12 | public class CMIWorldListener implements Listener { 13 | private CMI plugin; 14 | static ConcurrentHashMap> locations; 15 | 16 | public CMIWorldListener(CMI plugin) { 17 | } 18 | 19 | public static void delayRecheck(String world, UpdateOnWorldLoad upd) { 20 | } 21 | 22 | @EventHandler 23 | public void onWorldLoad(WorldLoadEvent event) { 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/afkcheck.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class afkcheck implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck players afk status", args = "[playerName/all]", tab = { "playername%%all" }, regVar = { 1 }, consoleVar = { 1 }, modules = { "afk" }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/giftpet.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class giftpet implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eGift your tamed pet to another player", args = "[playerName] (-s)", tab = { "playername", "-s" }, regVar = { 1, 2 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/FlightCharge/traveledDistance.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.FlightCharge; 2 | 3 | import org.bukkit.Location; 4 | 5 | import com.Zrips.CMI.Containers.CMIUser; 6 | 7 | public class traveledDistance { 8 | private CMIUser user; 9 | private Location loc; 10 | private Long time; 11 | 12 | traveledDistance(CMIUser user) { 13 | } 14 | 15 | public boolean toSoonToCheck() { 16 | return false; 17 | } 18 | 19 | public void updateLocation() { 20 | } 21 | 22 | public Double getDistanceTraveled() { 23 | return null; 24 | } 25 | 26 | public Long sinceLastUpdate() { 27 | return null; 28 | } 29 | 30 | public CMIUser getUser() { 31 | return null; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/ModuleHandling/CMIModuleClass.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.ModuleHandling; 2 | 3 | import net.Zrips.CMILib.Version.Version; 4 | 5 | public class CMIModuleClass { 6 | private Class listener; 7 | private Version from; 8 | private Version to; 9 | 10 | public CMIModuleClass(Class listener) { 11 | } 12 | 13 | public CMIModuleClass(Class listener, Version from) { 14 | } 15 | 16 | public CMIModuleClass(Class listener, Version from, Version to) { 17 | } 18 | 19 | public Version getFrom() { 20 | return null; 21 | } 22 | 23 | public Version getTo() { 24 | return null; 25 | } 26 | 27 | public Class getListener() { 28 | return null; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/ext.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class ext implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 120, info = "&eExtinguish a player", args = "(playerName) (-s)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/mutechat.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class mutechat implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&ePrevent public messages", args = "(time) (-s) (reason)", tab = {}, explanation = { "Examples: ", "/cmi mutechat 1m", "/cmi mutechat 1h " }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/recipe.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class recipe implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck item recipe", args = "(itemName) (-c)", tab = { "itemname", "playername", "-c" }, regVar = { 0, 1, 2, 3, 4 }, consoleVar = { 1, 2, 3, 4 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/sc.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class sc implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 65, info = "&eStarts sign copy process", args = "(playerName)", tab = { "playername" }, regVar = { 0, 1 }, consoleVar = { 666 }, customAlias = "!scopy", others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/shakeitoff.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class shakeitoff implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 47, info = "&eDismount any entity riding you or target player", args = "(playerName) (-s)", regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/tpdeny.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class tpdeny implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 40, info = "&eDeny teleport request", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/votetop.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class votetop implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&eCheck top vote list", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIPlayerBanEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import java.util.UUID; 4 | 5 | import org.bukkit.command.CommandSender; 6 | 7 | public class CMIPlayerBanEvent extends CMIEvent { 8 | private String reason; 9 | private Long until; 10 | private CommandSender by; 11 | private UUID banned; 12 | 13 | public CMIPlayerBanEvent(CommandSender by, UUID banned, String reason, Long until) { 14 | } 15 | 16 | public String getReason() { 17 | return null; 18 | } 19 | 20 | public Long getUntil() { 21 | return null; 22 | } 23 | 24 | public CommandSender getBannedBy() { 25 | return null; 26 | } 27 | 28 | public UUID getBanned() { 29 | return null; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/worldFlyState.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.GameMode; 4 | 5 | public class worldFlyState { 6 | private boolean state; 7 | private boolean temp; 8 | private GameMode mode; 9 | 10 | public worldFlyState(GameMode mode, boolean state, boolean temp) { 11 | } 12 | 13 | public boolean isFlyEnabled() { 14 | return false; 15 | } 16 | 17 | public void setFlyEnabled(boolean state) { 18 | } 19 | 20 | public boolean isTemp() { 21 | return false; 22 | } 23 | 24 | public void setTemp(boolean temp) { 25 | } 26 | 27 | public GameMode getGameMode() { 28 | return null; 29 | } 30 | 31 | public void setMode(GameMode mode) { 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Mirror/MirrorListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Mirror; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.block.BlockBreakEvent; 7 | import org.bukkit.event.block.BlockPlaceEvent; 8 | 9 | import com.Zrips.CMI.CMI; 10 | 11 | public class MirrorListener implements Listener { 12 | private CMI plugin; 13 | 14 | public MirrorListener(CMI plugin) { 15 | } 16 | 17 | @EventHandler(priority = EventPriority.MONITOR) 18 | public void BlockPlaceEvent(BlockPlaceEvent event) { 19 | } 20 | 21 | @EventHandler(priority = EventPriority.MONITOR) 22 | public void BlockBreakEvent(BlockBreakEvent event) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Recipes/recipeInformation.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Recipes; 2 | 3 | import net.Zrips.CMILib.Recipes.CMIRecipeCraftData; 4 | 5 | public class recipeInformation { 6 | private boolean exact; 7 | private String customId; 8 | private CMIRecipeCraftData craftData; 9 | 10 | public boolean isExact() { 11 | return false; 12 | } 13 | 14 | public void setExact(boolean exact) { 15 | } 16 | 17 | public String getCustomId() { 18 | return null; 19 | } 20 | 21 | public void setCustomId(String customId) { 22 | } 23 | 24 | public CMIRecipeCraftData getCraftData() { 25 | return null; 26 | } 27 | 28 | public void setCraftData(CMIRecipeCraftData craftData) { 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/anvil.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class anvil implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 121, info = "&eOpen anvil", args = "(playerName) (-s)", tab = { "playername", "%%-s" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/entitynbt.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class entitynbt implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eCheck entity nbt information", args = "(playername) (-console)", multiTab = { "[playername] -console" }, regVar = { 0, 1, 2 }, consoleVar = { 1 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/fly.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class fly implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eSet players fly true or false", args = "[playerName] (true/false) (-s)", tab = { "playername", "true%%false" }, regVar = { 0, 1, 2, 3 }, consoleVar = { 1, 2, 3 }, others = true) 18 | public Boolean perform(CMI pl, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/invlist.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class invlist implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 230, info = "&eShow saved inventories list", args = "(playerName)", tab = { "playername" }, regVar = { 0, 1 }, consoleVar = { 666 }, alias = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/iteminfo.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class iteminfo implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 47, info = "&eShow item information", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/tpaall.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class tpaall implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 40, info = "&eAsk all online players to teleport to your location", args = "", tab = { "" }, explanation = {}, regVar = { 0 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/tree.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class tree implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 65, info = "&eSpawn tree where you are looking", args = "(TreeType) (-p:[playerName])", tab = { "treeType" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/unban.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class unban implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&eUnban player or ip", args = "[playerName/ip] (-s)", tab = { "playername" }, explanation = {}, regVar = { 1, 2 }, consoleVar = { 1, 2 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/unmute.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class unmute implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 240, info = "&eUnmute player", args = "[playerName] (-s)", tab = { "mutedplayername" }, explanation = {}, regVar = { 1, 2 }, consoleVar = { 1, 2 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/warnings.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class warnings implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&eCheck player warnings", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/AllListeners/HatListeners.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.AllListeners; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.inventory.InventoryClickEvent; 7 | 8 | import com.Zrips.CMI.CMI; 9 | import com.Zrips.CMI.events.CMIArmorChangeEvent; 10 | 11 | public class HatListeners implements Listener { 12 | private CMI plugin; 13 | 14 | public HatListeners(CMI plugin) { 15 | } 16 | 17 | @EventHandler(priority = EventPriority.NORMAL) 18 | public void armorChangeEvent(CMIArmorChangeEvent event) { 19 | } 20 | 21 | @EventHandler(priority = EventPriority.NORMAL) 22 | public void hatPlacement(InventoryClickEvent event) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIPlayerGlowData.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import java.util.HashMap; 4 | import java.util.UUID; 5 | 6 | import org.bukkit.ChatColor; 7 | 8 | public class CMIPlayerGlowData { 9 | private ChatColor glow; 10 | private static HashMap glowData; 11 | 12 | public CMIPlayerGlowData(ChatColor glow) { 13 | } 14 | 15 | public ChatColor getGlow() { 16 | return null; 17 | } 18 | 19 | public void setGlow(ChatColor glow) { 20 | } 21 | 22 | public static ChatColor getGlow(UUID uuid) { 23 | return null; 24 | } 25 | 26 | public static void setGlow(UUID uuid, ChatColor glow) { 27 | } 28 | 29 | public static void applyGlow(UUID uuid) { 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Search/SearchTypeItemStack.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Search; 2 | 3 | import java.util.Set; 4 | 5 | import org.bukkit.inventory.ItemStack; 6 | 7 | public class SearchTypeItemStack extends SearchTypeItem { 8 | ItemStack searchedItem; 9 | Set searchTypes; 10 | Set criteria; 11 | 12 | public SearchTypeItemStack(ItemStack item, Set criteria) { 13 | super(null); 14 | } 15 | 16 | public ItemStack getSearchedItem() { 17 | return null; 18 | } 19 | 20 | @Override 21 | protected boolean isValid() { 22 | return false; 23 | } 24 | 25 | @Override 26 | public String getSearchTypeName() { 27 | return null; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/air.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class air implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 110, info = "&eSet players air", args = "[playerName] [amount] (-s)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2, 3 }, consoleVar = { 2, 3 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/aliaseditor.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class aliaseditor implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 70, info = "&eAlias editor", args = "(new) (alias-cmd)", tab = { "new%%customalias" }, explanation = {}, regVar = { -66 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/dispose.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class dispose implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eDispose of unneeded items", args = "(playerName)", tab = { "playerName" }, regVar = { 0, 1 }, consoleVar = { 1 }, customAlias = { "trash" }, alias = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/falldistance.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class falldistance implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eSet players falldistance", args = "(playerName) (number) (-s)", tab = { "playername", "-s" }, regVar = { 0, 1, 2, 3 }, consoleVar = { 1, 2, 3 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/head.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class head implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eGet players head", args = "[sourceName] (targetName) (-s) (amount)", tab = { "allIGNPlayername", "playername" }, regVar = { 0, 1, 2, 3 }, consoleVar = { 2, 3 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/homes.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class homes implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eA list of homes that you can click to teleport to.", args = "(playerName/near:[range])", tab = { "playername" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/invremove.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class invremove implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eRemove saved inventories for player", args = "(playerName) [id/all/last]", tab = { "playername" }, regVar = { 1, 2 }, consoleVar = { 2 }, alias = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/openbook.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class openbook implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eOpen book gui", args = "(cText) (playerName) (fileName.txt)", tab = { "ctext", "playerName" }, regVar = { -66 }, consoleVar = { 2, 3, 4 }, paccess = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/pay.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class pay implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&ePerform money transaction", args = "[playerName] [amount] (-s)", tab = { "playername" }, regVar = { 0, 2, 3 }, consoleVar = { 666 }, alias = true, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/playtimetop.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class playtimetop implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 110, info = "&eShows top list of player total play time", args = "[page]", tab = {}, explanation = {}, regVar = { 0, 1 }, consoleVar = { 0, 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/realname.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class realname implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 240, info = "&eCheck players real name", args = "(playerName/nickName)", tab = { "nickNames" }, explanation = {}, regVar = { 0, 1 }, consoleVar = { 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/setworth.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class setworth implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eChange item worth", args = "(itemname) -s:(sellPrice)", multiTab = { "[itemname],-s:1", "-s:1,-b:0.5" }, regVar = { 0, 1, 2, 3 }, consoleVar = { 2, 3 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/suicide.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class suicide implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 110, info = "&eKill your self", args = "[playerName] (-s)", tab = { "playername", "-s" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/tpaccept.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class tpaccept implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 40, info = "&eAccept teleport request", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 666 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/votes.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class votes implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 180, info = "&eCheck players vote count", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1 }, consoleVar = { 1 }, alias = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/NickName/NickNameListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.NickName; 2 | 3 | import org.bukkit.entity.Player; 4 | import org.bukkit.event.EventHandler; 5 | import org.bukkit.event.EventPriority; 6 | import org.bukkit.event.Listener; 7 | import org.bukkit.event.player.PlayerLoginEvent; 8 | 9 | import com.Zrips.CMI.CMI; 10 | 11 | public class NickNameListener implements Listener { 12 | private CMI plugin; 13 | 14 | public NickNameListener(CMI plugin) { 15 | } 16 | 17 | @EventHandler(priority = EventPriority.MONITOR) 18 | public void PlayerLoginEvent(PlayerLoginEvent event) { 19 | } 20 | 21 | @Deprecated 22 | public static String processGradientChat(Player player, String message) { 23 | return null; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/disableenchant.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class disableenchant implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eDisable enchantment", args = "(enchant/id) (disable/enable)", tab = { "enchant", "disable%%enable" }, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/sendall.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class sendall implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&eSend all online players to target server", args = "[serverName]", tab = { "bungeeserver" }, explanation = {}, regVar = { 1 }, consoleVar = { 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/setfirstspawn.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class setfirstspawn implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 240, info = "&eSets first spawn point", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1 }, consoleVar = { 1 }, others = false) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/clearender.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class clearender implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 125, info = "&eClear players ender chest", args = "[playerName] (-s)", tab = { "playerName" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/grindstone.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class grindstone implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 121, info = "&eOpen grindstone", args = "(playerName) (-s)", tab = { "playername", "%%-s" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/kitcdreset.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class kitcdreset implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(info = "&eReset kit timer", args = "(kitName) (playerName/all)", tab = { "kit", "playername%%all" }, modules = { "kits" }, regVar = { 0, 1, 2 }, consoleVar = { 0, 2 }, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/commands/list/prewards.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.commands.list; 2 | 3 | import org.bukkit.command.CommandSender; 4 | 5 | import com.Zrips.CMI.CMI; 6 | import com.Zrips.CMI.commands.CAnnotation; 7 | import com.Zrips.CMI.commands.Cmd; 8 | 9 | import net.Zrips.CMILib.FileHandler.ConfigReader; 10 | 11 | public class prewards implements Cmd { 12 | @Override 13 | public void getExtra(ConfigReader c) { 14 | } 15 | 16 | @Override 17 | @CAnnotation(priority = 48, info = "&eCheck playtime rewards", args = "(playerName)", tab = { "playername" }, explanation = {}, regVar = { 0, 1, 2 }, consoleVar = { 1, 2 }, alias = true, others = true) 18 | public Boolean perform(CMI plugin, CommandSender sender, String[] args) { 19 | return null; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/events/CMIAfkEnterEvent.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.events; 2 | 3 | import java.util.List; 4 | 5 | import org.bukkit.entity.Player; 6 | 7 | public class CMIAfkEnterEvent extends CMIPlayerCancellableEvent { 8 | private List awayTrigerCommands; 9 | private AfkType type; 10 | 11 | public CMIAfkEnterEvent(Player player, List awayTrigerCommands, AfkType afkType) { 12 | super(player); 13 | } 14 | 15 | public List getAwayTrigerCommands() { 16 | return null; 17 | } 18 | 19 | public void setAwayTrigerCommands(List awayTrigerCommands) { 20 | } 21 | 22 | public AfkType getType() { 23 | return null; 24 | } 25 | 26 | public enum AfkType { 27 | auto, manual; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIEquipmentSlot.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.event.player.PlayerInteractAtEntityEvent; 4 | import org.bukkit.event.player.PlayerInteractEvent; 5 | import org.bukkit.inventory.EquipmentSlot; 6 | 7 | public enum CMIEquipmentSlot { 8 | NONE, CHEST, FEET, HAND, HEAD, LEGS, OFF_HAND; 9 | 10 | public static CMIEquipmentSlot get(String name) { 11 | return null; 12 | } 13 | 14 | public static CMIEquipmentSlot get(EquipmentSlot slot) { 15 | return null; 16 | } 17 | 18 | public static CMIEquipmentSlot get(PlayerInteractAtEntityEvent event) { 19 | return null; 20 | } 21 | 22 | public static CMIEquipmentSlot get(PlayerInteractEvent event) { 23 | return null; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Containers/CMIRay.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Containers; 2 | 3 | import org.bukkit.entity.Player; 4 | import org.bukkit.util.Vector; 5 | 6 | public class CMIRay { 7 | private Vector origin; 8 | private Vector direction; 9 | 10 | public CMIRay(Vector origin, Vector direction) { 11 | } 12 | 13 | public CMIRay(Player player) { 14 | } 15 | 16 | public Vector getOrigin() { 17 | return null; 18 | } 19 | 20 | public Vector getDirection() { 21 | return null; 22 | } 23 | 24 | public double origin(int i) { 25 | return 0.0; 26 | } 27 | 28 | public double direction(int i) { 29 | return 0.0; 30 | } 31 | 32 | public Vector getPoint(double distance) { 33 | return null; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Homes/HomeListener.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Homes; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.block.BlockBreakEvent; 7 | import org.bukkit.event.player.PlayerInteractEvent; 8 | 9 | import com.Zrips.CMI.CMI; 10 | 11 | public class HomeListener implements Listener { 12 | private CMI plugin; 13 | 14 | public HomeListener(CMI plugin) { 15 | } 16 | 17 | @EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true) 18 | public void onEnderChestClick(PlayerInteractEvent event) { 19 | } 20 | 21 | @EventHandler(priority = EventPriority.MONITOR) 22 | public void bedBreak(BlockBreakEvent event) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/MirrorV2/CMIMirrorListenerV2.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.MirrorV2; 2 | 3 | import org.bukkit.event.EventHandler; 4 | import org.bukkit.event.EventPriority; 5 | import org.bukkit.event.Listener; 6 | import org.bukkit.event.block.BlockBreakEvent; 7 | import org.bukkit.event.block.BlockPlaceEvent; 8 | 9 | import com.Zrips.CMI.CMI; 10 | 11 | public class CMIMirrorListenerV2 implements Listener { 12 | private CMI plugin; 13 | 14 | public CMIMirrorListenerV2(CMI plugin) { 15 | } 16 | 17 | @EventHandler(priority = EventPriority.MONITOR) 18 | public void BlockPlaceEvent(BlockPlaceEvent event) { 19 | } 20 | 21 | @EventHandler(priority = EventPriority.MONITOR) 22 | public void BlockBreakEvent(BlockBreakEvent event) { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/com/Zrips/CMI/Modules/Teleportations/DangerousTp.java: -------------------------------------------------------------------------------- 1 | package com.Zrips.CMI.Modules.Teleportations; 2 | 3 | import java.util.UUID; 4 | 5 | import org.bukkit.Location; 6 | 7 | public class DangerousTp { 8 | private UUID uuid; 9 | private Location location; 10 | private Long time; 11 | 12 | public DangerousTp(UUID uuid, Location location) { 13 | } 14 | 15 | public UUID getUuid() { 16 | return null; 17 | } 18 | 19 | public void setUuid(UUID uuid) { 20 | } 21 | 22 | public Location getLocation() { 23 | return null; 24 | } 25 | 26 | public void setLocation(Location location) { 27 | } 28 | 29 | public Long getTime() { 30 | return null; 31 | } 32 | 33 | public void setTime(Long time) { 34 | } 35 | } 36 | --------------------------------------------------------------------------------