⭐WAssistant⭐ - Commands & Custom Messages icon

⭐WAssistant⭐ - Commands & Custom Messages -----

Adds different commands, and outputs some messages.



Assistant is your gaming assistant, you can customize it for yourself in the plugin configuration.
Commands:
  • /heal - Restores health to the player who sent the command.

  • /feed - Restores hunger to the player who sent the command.

  • /fly - Enables or disables flight mode to the player who sent the command.

  • /gamemode (0,1,2,3) - Sets the game mode to the player who sent the command.
Permissions:
  • wa.command.heal - Permission to command /heal

  • wa.command.feed - Permission to command /feed

  • wa.command.fly - Permission to command /fly

  • wa.command.gamemode - Permission to command /gamemode

  • wa.event.join - Permission to message when a player logs on to the server.

  • wa.event.quit - Permission to message when the player logs out of the server.

  • wa.event.death - Permission to send messages when a player dies.
Code (YAML):
##########################################################################
#░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░#
#░░██╗░░░░░░░██╗░█████╗░░░░░█████╗░░█████╗░███╗░░██╗███████╗██╗░██████╗░░#
#░░██║░░██╗░░██║██╔══██╗░░░██╔══██╗██╔══██╗████╗░██║██╔════╝██║██╔════╝░░#
#░░╚██╗████╗██╔╝███████║░░░██║░░╚═╝██║░░██║██╔██╗██║█████╗░░██║██║░░██╗░░#
#░░░████╔═████║░██╔══██║░░░██║░░██╗██║░░██║██║╚████║██╔══╝░░██║██║░░╚██╗░#
#░░░╚██╔╝░╚██╔╝░██║░░██║░░░╚█████╔╝╚█████╔╝██║░╚███║██║░░░░░██║╚██████╔╝░#
#░░░░╚═╝░░░╚═╝░░╚═╝░░╚═╝░░░░╚════╝░░╚════╝░╚═╝░░╚══╝╚═╝░░░░░╚═╝░╚═════╝░░#
#░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░#
##########################################################################

# Translated by Woodpecker_
# If you find errors in the translation, write in private messages to SpigotMC

# Plugin messages
messages
:
  permission
:
    # A message in the Chat when the player does not have enough rights to the plugin command
    chat
: "&eW&6A &8| &cYou don't have permission!"
    # A message in the ActionBar when the player does not have enough rights to the plugin command
    actionbar
: "&4✘ &cNo permission &4✘"

  commands
:
    heal
:
      # Message on successful execution of the /heal command
      healing
: "&eW&6A &8| &7Health has been &arestored&7!"
      # The message when the command is delayed, ({time} is replaced by the delay time)
      cooldown
: "&eW&6A &8| &7This command will be available in &f{time} seconds&7!"
      # Error message when executing the /heal command
      error
: "&eW&6A &8| &cAn error has occurred! &7Perhaps you already have full health."
    feed
:
      # Message on successful execution of the command /feed
      feeding
: "&eW&6A &8| &7Your hunger has been &arestored&7!"
      # The message when the command is delayed, ({time} is replaced by the delay time)
      cooldown
: "&eW&6A &8| &7This command will be available in &f{time} seconds&7!"
      # Error message when executing the /feed command
      error
: "&eW&6A &8| &cAn error has occurred! &7Maybe you're not hungry anymore."
    fly
:
      # Message when the flight mode is turned on /fly
      enabled
: "&eW&6A &8| &7You have set the flight mode to &eENABLED &7for yourself!"
      # Message when the flight mode is disabled /fly
      disabled
: "&eW&6A &8| &7You have set the flight mode to &cDISABLED &7for yourself!"
    gamemode
:
      # Message when changing the game mode to survival
      survival
: "&eW&6A &8| &7You have set a &6SURVIVAL &7game mode for yourself!"
      # A message when changing the game mode to creative
      creative
: "&eW&6A &8| &7You have set a &bCREATIVE &7game mode for yourself!"
      # Message when changing game mode to adventure
      adventure
: "&eW&6A &8| &7You have set a &dADVENTURE &7game mode for yourself!"
      # Message when changing the game mode to spectator
      spectator
: "&eW&6A &8| &7You have set a &aSPECTATOR &7game mode for yourself!"
      # A message when an argument is entered incorrectly after the /gamemode command
      error
: "&eW&6A &8| &cWrong argument!"

  actionbar
:
    commands
:
      heal
:
        # A message in the ActionBar when the /heal command is executed successfully
        healing
: "&2✔ &aHave you taken your medication &2✔"
        # A message in the ActionBar when the execution of the /heal command is delayed
        cooldown
: "&e⌛ &6Delay &e⌛"
        # A message in the ActionBar when the /heal command execution failed
        error
: "&4✘ &cError &4✘"
      feed
:
        # A message in the ActionBar when the /feed command is executed successfully
        feeding
: "&2✔ &aYou have eaten successfully &2✔"
        # A message in the ActionBar when the command execution is delayed /feed
        cooldown
: "&e⌛ &6Delay &e⌛"
        # A message in the ActionBar when the command execution failed /feed
        error
: "&4✘ &cError &4✘"
      fly
:
        # A message in the ActionBar when the flight mode is turned on /fly
        enabled
: "&2✔ &7Now you're flying &2✔"
        # A message in the ActionBar when the flight mode is disabled /fly
        disabled
: "&2✔ &7You don't fly anymore &2✔"
      gamemode
:
        # A message in the ActionBar when changing the game mode to survival (/gamemode survival)
        survival
: "&2✔ &7Game mode changed &2✔"
        # A message in the ActionBar when changing the game mode to creative (/gamemode creative)
        creative
: "&2✔ &7Game mode changed &2✔"
        # A message in the ActionBar when changing the game mode to adventure (/gamemode adventure)
        adventure
: "&2✔ &7Game mode changed &2✔"
        # A message in the ActionBar when changing the game mode to spectator (/gamemode spectator)
        spectator
: "&2✔ &7Game mode changed &2✔"
        # A message in the ActionBar when the command execution failed /gamemode
        error
: "&4✘ &cError &4✘"

  events
:
    # The message when the player logs on to the server, ({player} is replaced by the player's nickname)
    join
: "&7[&2+&7] &a{player} &7joined!"
    # The message when the player exits the server, ({player} is replaced by the player's nickname)
    quit
: "&7[&4-&7] &c{player} &7quit!"
    # The message when the player dies, ({player} is replaced by the player's nickname)
    death
: "&7[&c☠&7] &f{player} &7died!"

# Config version 1.0.0

#####################################################################################################################################
#░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░#
#░░░█████╗░██████╗░███████╗░█████╗░████████╗███████╗██████╗░░░░██████╗░██╗░░░██╗░░░░██╗░░░░░░░██╗░█████╗░░█████╗░██████╗░██╗░░░██╗░░#
#░░██╔══██╗██╔══██╗██╔════╝██╔══██╗╚══██╔══╝██╔════╝██╔══██╗░░░██╔══██╗╚██╗░██╔╝░░░░██║░░██╗░░██║██╔══██╗██╔══██╗██╔══██╗╚██╗░██╔╝░░#
#░░██║░░╚═╝██████╔╝█████╗░░███████║░░░██║░░░█████╗░░██║░░██║░░░██████╦╝░╚████╔╝░░░░░╚██╗████╗██╔╝██║░░██║██║░░██║██║░░██║░╚████╔╝░░░#
#░░██║░░██╗██╔══██╗██╔══╝░░██╔══██║░░░██║░░░██╔══╝░░██║░░██║░░░██╔══██╗░░╚██╔╝░░░░░░░████╔═████║░██║░░██║██║░░██║██║░░██║░░╚██╔╝░░░░#
#░░╚█████╔╝██║░░██║███████╗██║░░██║░░░██║░░░███████╗██████╔╝░░░██████╦╝░░░██║░░░░░░░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝██████╔╝░░░██║░░░░░#
#░░░╚════╝░╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░░░╚═╝░░░╚══════╝╚═════╝░░░░╚═════╝░░░░╚═╝░░░░░░░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░╚═════╝░░░░╚═╝░░░░░#
#░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░#[
#####################################################################################################################################

There will be more information here soon.

If you have any ideas to improve the plugin, you can write to me in Discord: _Woody_#7574​
Resource Information
Author:
----------
Total Downloads: 40
First Release: Jan 3, 2022
Last Update: Jan 3, 2022
Category: ---------------
All-Time Rating:
1 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings