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 TypeMethodDescriptionvoid
ActionLoader.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 TypeClassDescriptionclass
Represents an action that broadcasts a formatted message to all online players.class
Represents an action that broadcasts a sound to all online players.class
Represents an action that broadcasts a message to all players in the same world as the target.class
Represents an action that broadcasts a sound to all players in the same world as the target player.class
Represents an action where a player sends a chat message.class
Represents an action that executes a console command.class
Represents an action that gives experience points to a player.class
Represents an action that gives money to a player using an economy system.class
Represents an action that grants a permission to a player.class
Represents an action that sends a formatted message to a player.class
Represents an action that sends a MiniMessage-formatted message to a player.class
Represents an action that opens a custom GUI menu for a player.class
Represents an action that forces a player to execute a command.class
Represents an action that plays a sound for a player.class
Represents an action that removes experience points from a player.class
Represents an action that deducts money from a player's balance.class
Represents 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.