diff --git a/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java b/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java index b4b1510..778ea2a 100644 --- a/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java +++ b/src/main/java/io/github/znetworkw/znpcservers/configuration/ConfigurationValue.java @@ -22,35 +22,35 @@ public enum ConfigurationValue { LINE_SPACING("config", 0.3D, Double.class), ANIMATION_RGB("config", Boolean.FALSE, Boolean.class), NO_PERMISSION("messages", "&cYou do not have permission to execute this command.", String.class), - SUCCESS("messages", "&aDone!", String.class), - INCORRECT_USAGE("messages", "&cThe arguements you specified are not valid, do &f/znpcs help&c for assistance and examples.", String.class), + SUCCESS("messages", "&aSuccess!", String.class), + INCORRECT_USAGE("messages", "&cThe arguments you specified are invalid. Type &f/znpcs help&c for examples.", String.class), COMMAND_NOT_FOUND("messages", "&cThe command you specified does not exist!", String.class), - COMMAND_ERROR("messages", "&cThere was an error executing the command, see the console for more information.", String.class), - INVALID_NUMBER("messages", "&cHey!, The inserted number/id does not look like a number, please use integer values only!", String.class), - NPC_NOT_FOUND("messages", "&cHey!, I couldn't find a npc with this id!", String.class), - TOO_FEW_ARGUMENTS("messages", "&cThis command does not have enough arguements, do &f/znpcs help&c for assistance and examples.", String.class), - PATH_START("messages", "&aDone, now walk where you want the npc to walk towards, when finished type &f/znpcs path exit", String.class), - EXIT_PATH("messages", "&cYou have exited the waypoint creation.", String.class), + COMMAND_ERROR("messages", "&cAn error occurred when executing this command. See console for more information.", String.class), + INVALID_NUMBER("messages", "&cThe ID you have specified is invalid. Please use positive integers only!", String.class), + NPC_NOT_FOUND("messages", "&cNo NPCs could be found with this ID!", String.class), + TOO_FEW_ARGUMENTS("messages", "&cThis command does not contain enough arguments. Type &f/znpcs help&c or view our documentation for a list/examples of existing arguments.", String.class), + PATH_START("messages", "&aSuccess! Move to create a path for your NPC. When finished, type &f/znpcs path exit&c to exit path creation.", String.class), + EXIT_PATH("messages", "&cYou have exited path creation.", String.class), PATH_FOUND("messages", "&cThere is already a path with this name.", String.class), - NPC_FOUND("messages", "&cThere is already an NPC with this id.", String.class), - NO_PATH_FOUND("messages", "&cNo path found.", String.class), - NO_SKIN_FOUND("messages", "&cSkin not found.", String.class), - NO_NPC_FOUND("messages", "&cNo npc found.", String.class), - NO_ACTION_FOUND("messages", "&cThis action was not valid! Check the wiki for valid action types.", String.class), - METHOD_NOT_FOUND("messages", "&cThis method was not found! Check the wiki for valid action types.", String.class), - INVALID_NAME_LENGTH("messages", "&cThe name you specified is too short or long, it must be in the range of (3 to 16) characters.", String.class), - UNSUPPORTED_ENTITY("messages", "&cThis entity type not available for your current version.", String.class), + NPC_FOUND("messages", "&cThere is already an NPC with this ID.", String.class), + NO_PATH_FOUND("messages", "&cThe path you have specified does not exist.", String.class), + NO_SKIN_FOUND("messages", "&cThe skin username/URL you have specified does not exist or is invalid.", String.class), + NO_NPC_FOUND("messages", "&cThe NPC you have specified does not exist.", String.class), + NO_ACTION_FOUND("messages", "&cThis action does not exist! Type &f/znpcs help&c or view our documentation for a list/examples of existing action types.", String.class), + METHOD_NOT_FOUND("messages", "&cThis method does not exist! Type &f/znpcs help&c or view our documentation for a list/examples of existing methods.", String.class), + INVALID_NAME_LENGTH("messages", "&cThe name you specified either too short or long. Please enter a positive integer of (3 to 16) characters.", String.class), + UNSUPPORTED_ENTITY("messages", "&cThis entity type not available in your current server version.", String.class), PATH_SET_INCORRECT_USAGE("messages", "&eUsage: &aset ", String.class), - ACTION_ADD_INCORRECT_USAGE("messages", "&eUsage: &a ", String.class), + ACTION_ADD_INCORRECT_USAGE("messages", "&eUsage: &a ", String.class), ACTION_DELAY_INCORRECT_USAGE("messages", "&eUsage: &a ", String.class), - CONVERSATION_SET_INCORRECT_USAGE("messages", "&cUsage: ", String.class), - NO_CONVERSATION_FOUND("messages", "&cThis conversation was not found.", String.class), + CONVERSATION_SET_INCORRECT_USAGE("messages", "&cUsage: ", String.class), + NO_CONVERSATION_FOUND("messages", "&cThe conversation you have specified does not exist!", String.class), CONVERSATION_FOUND("messages", "&cThere is already a conversation with this name.", String.class), - INVALID_SIZE("messages", "&cThe position cannot exceed the limit.", String.class), - FETCHING_SKIN("messages", "&aFetching skin for name: &f%s&a, wait...", String.class), + INVALID_SIZE("messages", "&cThe position you have specified cannot exceed the limit.", String.class), + FETCHING_SKIN("messages", "&aFetching skin for name: &f%s&a, please wait...", String.class), CANT_GET_SKIN("messages", "&cCould not fetch skin for name: %s.", String.class), - GET_SKIN("messages", "&aSkin fetched!", String.class), - CONVERSATION_LIST("conversations", new ArrayList<>(), Conversation.class); + GET_SKIN("messages", "&aSkin successfully fetched!", String.class), + CONVERSATION_LIST("Conversations", new ArrayList<>(), Conversation.class); public static final Map> VALUES_BY_NAME;