BAMobCoins icon

BAMobCoins -----

Easy to use plugin for adding another aspect of currency to your server!



New messages in Messages.yml
As per request I have added more options to the Messages.yml file. For this version to work you will have to delete your current Messages.yml so that a new one can be generated or add the following sections in manually.

Code (YAML):

Global
:
    Never_Joined
: '&7That player has never joined the server!'
    Whole_Number
: '&7Please enter a whole number.'
    Non_Player
: '&7You must be a player to run this command.'
    # %COMMAND% - Will be replaced by the command format
    Insufficient_Permission
: '&cInsufficient Permission! You don''t have access to %COMMAND%.' #<------ THIS LINE
    Unknown_Command
: '&cUnknown command. Type /BAMobCoins help for assistance with commands.' #<------ THIS LINE
 
Code (YAML):

Help
: #<------ THIS ENTIRE SECTION IS NEW
  # %VERSION% - Will be replaced by the plugins version
  - '&7 ------------- [ &6BAMobCoins V %VERSION% Help &7]-------------'
  - '&6/BAMobCoins &8
: &7Opens the shop GUI.'
  - '&6/BAMobCoins balance &8
: &7See your balance.'
  - '&6/BAMobCoins balance <players ign> &8
: &7See other players balance.'
  - '&6/BAMobCoins pay <players ign> <amount> &8
: &7Pay another player from your balance.'
  - '&6/BAMobCoins add <players ign> <amount> &8
: &7Adds MobCoins to a players balance.'
  - '&6/BAMobCoins set <players ign> <amount> &8
: &7Set a players balance.'
  - '&6/BAMobCoins remove <players ign> <amount> &8
: &7Removes MobCoins from a players balance.'
  - '&6/BAMobCoins withdraw <amount> &8
: &7Withdraw MobCoins from your balance into an item.'
  - '&6/BAMobCoins reload &8
: &7Reloads the plugins config files.'
  - '&6/BAMobCoins help &8
: &7Sends the help message listing commands.'
 

Below is the entire Messages.yml with indication as to where the new sections go if you need more clarification.

Code (YAML):

#
#  All messages have the prefix infront of them.
#
Messages
:
  Global
:
    Never_Joined
: '&7That player has never joined the server!'
    Whole_Number
: '&7Please enter a whole number.'
    Non_Player
: '&7You must be a player to run this command.'
    # %COMMAND% - Will be replaced by the command format
    Insufficient_Permission
: '&cInsufficient Permission! You don''t have access to %COMMAND%.'#<--------------------- NEW LINE
    Unknown_Command
: '&cUnknown command. Type /BAMobCoins help for assistance with commands.' #<--------------------- NEW LINE
  Balance
:
  # %BALANCE% - Will be replaced by the players balance.
    # %PLAYER% - Will be replaced by the players name whos balance is being checked.
    Your_Balance
: '&bYour balance is, &a %BALANCE%.'
    Other_Balance
: '&b %PLAYER%''s balance is %BALANCE%.'
  Pay
:
  # %AMOUNT% - Will be replaced by the amount sent.
    # %SENDER% - Will be replaced by the name of the player sending the coins.
    # %RECEIVER% - Will be replaced by the name of the player receiving the coins.
    Sender
: '&7You payed %RECEIVER% %AMOUNT% Mob Coins!'
    Receiver
: '&7You were paided %AMOUNT% Mob Coins by %SENDER%'
    Self
: '&7You can''t pay yourself!'
    Zero
: '&7You cannot send 0 Mob Coins to %RECEIVER%!'
    Not_Enough
: '&7You do not have enough Mob Coins!'
  Add
:
  # %AMOUNT% - Will be replaced by the amount sent.
    # %PLAYER% - Will be replaced by the players name receiving the coins.
    Admin_Message
: '&bYou have added &a %AMOUNT% &bmobcoins to %PLAYER%''s balance.'
    Player_Message
: '&bYou have received &a %AMOUNT% &bmobcoins.'
    Zero
: '&7You cannot add 0 to %PLAYER%''s balance!'
  Set
:
  # %AMOUNT% - Will be replaced by the amount sent.
    # %PLAYER% - Will be replaced by the players name receiving the coins.
    Admin_Message
: '&7You set %PLAYER%''s balance to %AMOUNT%.'
    Player_Message
: '&7Your balance has been set to %AMOUNT%.'
  Remove
:
  # %AMOUNT% - Will be replaced by the amount sent
    # %PLAYER% - Will be replaced by the players name receiving the coins.
    Admin_Message
: '&7You have removed %AMOUNT% from %PLAYER%''s balance.'
    Player_Message
: '&7 %AMOUNT% Mob Coins have been removed from your balance.'
    Zero
: '&7You cannot remove 0 Mob Coins from %PLAYER%''s balance.'
  GiveItem
:
  # %PLAYER% - Will be replaced by the players name receiving the coins.
    # %ITEM% - Will be replaced with the name of the item being given.
    Admin_Message
: '&7You gave %PLAYER% %ITEM%.'
    Player_Message
: '&7You have been given %ITEM%.'
    Unfound_Item
: '&7Could not find %ITEM%. Please ensure you are entering the correct name.'
  Shop
:
  # %ITEM% - Will be replaced by the item bought.
    # %PRICE% - Will be replaced by the price of the item.
    Bought_Item
: '&7You bought %ITEM% for %PRICE%.'
    Not_Enough
: '&7You don''t have %PRICE% to buy %ITEM%'
  Coin
:
  # %AMOUNT% - The amount of coins
    Withdraw
: '&7You have withdrawn %AMOUNT%!'
    Deposit
: '&7You have deposited %AMOUNT%!'
    Zero
: '&7You can''t withdraw 0 Mob Coins!'
  Reload
:
    Admin_Message
: '&7Config and messages &areloaded.'
  Help
: #<-------------------------------------------------------------------------------------------------- NEW SECTION
  # %VERSION% - Will be replaced by the plugins version
  - '&7 ------------- [ &6BAMobCoins V %VERSION% Help &7]-------------'
  - '&6/BAMobCoins &8
: &7Opens the shop GUI.'
  - '&6/BAMobCoins balance &8
: &7See your balance.'
  - '&6/BAMobCoins balance <players ign> &8
: &7See other players balance.'
  - '&6/BAMobCoins pay <players ign> <amount> &8
: &7Pay another player from your balance.'
  - '&6/BAMobCoins add <players ign> <amount> &8
: &7Adds MobCoins to a players balance.'
  - '&6/BAMobCoins set <players ign> <amount> &8
: &7Set a players balance.'
  - '&6/BAMobCoins remove <players ign> <amount> &8
: &7Removes MobCoins from a players balance.'
  - '&6/BAMobCoins withdraw <amount> &8
: &7Withdraw MobCoins from your balance into an item.'
  - '&6/BAMobCoins reload &8
: &7Reloads the plugins config files.'
  - '&6/BAMobCoins help &8
: &7Sends the help message listing commands.'
 
----------, Apr 19, 2019
Resource Information
Author:
----------
Total Downloads: 2,597
First Release: Mar 19, 2019
Last Update: Dec 9, 2020
Category: ---------------
All-Time Rating:
12 ratings
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings