Uses of Class
io.github.lucfr1746.llibrary.action.Action
Packages that use Action
Package
Description
-
Uses of Action in io.github.lucfr1746.llibrary.action
Methods in io.github.lucfr1746.llibrary.action that return ActionModifier and TypeMethodDescriptionRetrieves an Action instance based on an input string.Methods in io.github.lucfr1746.llibrary.action that return types with arguments of type ActionModifier and TypeMethodDescriptionActionLoader.getActions(List<String> inputs) Retrieves a list of Action instances based on a list of input strings.Method parameters in io.github.lucfr1746.llibrary.action with type arguments of type ActionModifier and TypeMethodDescriptionvoidActionLoader.registerAction(String identifier, Function<String, Action> factory) Registers an action with a specific identifier. -
Uses of Action in io.github.lucfr1746.llibrary.action.list
Subclasses of Action in io.github.lucfr1746.llibrary.action.listModifier and TypeClassDescriptionclassRepresents an action that broadcasts a formatted message to all online players.classRepresents an action that broadcasts a sound to all online players.classRepresents an action that broadcasts a message to all players in the same world as the target.classRepresents an action that broadcasts a sound to all players in the same world as the target player.classRepresents an action where a player sends a chat message.classRepresents an action that executes a console command.classRepresents an action that gives experience points to a player.classRepresents an action that gives money to a player using an economy system.classRepresents an action that grants a permission to a player.classRepresents an action that sends a formatted message to a player.classRepresents an action that sends a MiniMessage-formatted message to a player.classRepresents an action that opens a custom GUI menu for a player.classRepresents an action that forces a player to execute a command.classRepresents an action that plays a sound for a player.classRepresents an action that removes experience points from a player.classRepresents an action that deducts money from a player's balance.classRepresents an action that removes a permission from a player. -
Uses of Action in io.github.lucfr1746.llibrary.inventory
Methods in io.github.lucfr1746.llibrary.inventory that return types with arguments of type ActionMethod parameters in io.github.lucfr1746.llibrary.inventory with type arguments of type Action -
Uses of Action in io.github.lucfr1746.llibrary.requirement
Methods in io.github.lucfr1746.llibrary.requirement that return types with arguments of type ActionModifier and TypeMethodDescriptionRequirement.getAcceptHandler()Gets the actions that execute when the requirement is met.Requirement.getDenyHandler()Gets the actions that execute when the requirement is not met.Method parameters in io.github.lucfr1746.llibrary.requirement with type arguments of type ActionModifier and TypeMethodDescriptionRequirement.setAcceptHandler(List<Action> acceptHandler) Sets the actions to execute when the requirement is met.Requirement.setDenyHandler(List<Action> denyHandler) Sets the actions to execute when the requirement is not met.