Economy Plus Setup for Minecraft Realm
- Published on
- 2 mins read
Setup Economy Plus for Minecraft Realm
First, ensure you have a Minecraft Realm set up. Then follow these steps to set up Economy Plus:
- Buy Economy Plus Plugin: Purchase the Economy Plus plugin from a trusted source or the official Minecraft Marketplace.
- Install the Plugin: Install the Economy Plus plugin to your Minecraft Realm server.
You need the necessary permissions to install plugins on your Minecraft Realm.
Create a scoreboard and timer to update score
Run these commands to set up the objectives:
/scoreboard objectives add money dummy Money
/scoreboard objectives add ecotimer dummy EcoTimer
The timer will update every tick (20 ticks = 1 second). To hide command block output, run:
/gamerule commandBlockOutput false
Command block chain to update score every 1 hour
Set up three command blocks in a chain:
- 1st: repeat, unconditional, always active
/scoreboard players add @a ecotimer 1
- 2nd: chain, conditional, always active
(Triggers after 72000 ticks, which equals 1 hour. Awards 100 money by default; adjust the value as needed.)
/execute as @a[scores={ecotimer=72000..}] run scoreboard players add @s money 100
- 3rd: chain, conditional, always active
/execute as @a[scores={ecotimer=72000..}] run scoreboard players set @s ecotimer 0
Command block chain to convert score to money
Set up another chain of three command blocks:
- 1st: repeat, unconditional, always active
/execute as @a at @s if score @s money matches !0 run scoreboard players operation @a thm_ecp:money_update = @s money
- 2nd: chain, conditional, always active
/execute as @a at @s if score @s money matches !0 run scoreboard players reset @s money
- 3rd: chain, conditional, always active
/scriptevent thm_ecp:update
Let me know if you need any further assistance with the setup or if you have any questions about the Economy Plus plugin! Connect with me on Discord at drepk for more help.