Skip to content
Luis Benavides-Naranjo edited this page Mar 15, 2024 · 1 revision

BlobLib allows performing actions by passing an actor.

Fields

  • All Actions have fields. If a required field is missing in the configuration, it will log it in console.
  • ❌ = Required
  • ✅ = Optional

  • Type [❌]
    1. # your Action key would be the name of your file. If your file is "creative.yml", then your key would be "creative"
      Type: CONSOLE_COMMAND # will perform the action as a console executing a command
      Command: gamemode creative %actor%
      Creative: # your Action key would be "Creative".
        Type: CONSOLE_COMMAND # will perform the action as a console executing a command
        Command: gamemode creative %actor%
      Gamemode:
        Creative: # your Action key would be "Gamemode.Creative".
          Type: CONSOLE_COMMAND # will perform the action as a console executing a command
          Command: gamemode creative %actor%
  • Command [❌]
    1. # your Action key would be the name of your file. If your file is "creative.yml", then your key would be "creative"
      Type: CONSOLE_COMMAND
      Command: gamemode creative %actor% # %actor% is the name of the actor.
      Creative: # your Action key would be "Creative".
        Type: CONSOLE_COMMAND
        Command: gamemode creative %actor% # %actor% is the name of the actor.
      Gamemode:
        Creative: # your Action key would be "Gamemode.Creative".
          Type: CONSOLE_COMMAND
          Command: gamemode creative %actor% # %actor% is the name of the actor.