Skip to main content

Upgrading to QuickEconomy 1.1

Table of Contents

Installing the new version
#

  1. Start by going to the plugin Modrith page.
  2. Download the latest 1.1.x version for you Minecraft version.
  3. Replace the 1.0.x plugin file with the newly downloaded one.
  4. Start your server.
  5. Done

Migrating from file to database
#

  1. After starting your server with the new version, all accounts in the file plugins/QuickEconomy/balance.yml should be converted to using UUID as identifier. Close the server. Then open the file and doublecheck this.
  2. Open config.yml in the same directory as balance.yml. It should look something like this:
exchangeRate: 10 # Coins/diamond

# Database
database:
  enabled: false
  type: mysql
  host: localhost
  port: 3306
  database: minecraft_db
  username: user
  password: pass
# Shops
shop:
  emptyShopOwnerMessage: true
  emptyShopListJoin: true
# Players
player:
  welcomeMessage: true
  op:
    updateMessage: true
  1. Replace the database configuration with your own. But keep enabled as false.
  2. Start your server and run the command /quickeconomy migrate. Note: You need the permission quickeconomy.migrate to use this command as a player.
  3. Check the console for errors.

Enabling database on a new server
#

If you want to use a database as the storage method for QuickEconomy on a server which hasn’t used the plugin before, all you have to do is follow steps 2 and 3 from the section above but set enabled: true.