Use the economy module
The economy module allows players to purchase items with currency. A built-in HUD template is often used to quickly set up an in-game shop.
The economy module is an optional module. To use currency, shops, and other content, you need to load the economy module.
After the economy module has been loaded, you can use economy-related blocks in the Script module category.
You can also add currencies and custom shops using the Economy module.
When uninstalling the economy module, please note that all previously used economy module blocks will become invalid, and all custom shops and currencies will be cleared, which may affect your project.
Currencies and wallets
By default, there is only one default currency in the game. Without additional settings, all Scenes that use currencies are using this default currency.
100 default currencies
New currency
You can create custom currencies in the Economy module.
You can name the new currency, select an icon for it and change its color.
The currency icon can be selected from the pictures included with the project or imported externally.
Custom image
To use the new currency, you need to set the property of the shop item and the currency given to the player to the currency type. See the relevant content below.
Add or delete currencies
Currencies must be stored in the wallet, so you need to create a wallet for the player first.
There is no point in creating multiple wallets, only the wallet created initially will take effect.
Players initially do not have a wallet, but any operation related to the wallet, such as purchasing, opening the built-in shop UI, and displaying the amount of currency, will create a wallet for that player.
Default or custom currencies can be added or removed from the player’s wallet.
Shop
Shop composition
The shop UI shows a shop entity, which is made up of shelves, which are made up of shop items, which are created.
Shop items
To use an item as a shop item, add it to the shop items.
For shop items, you can adjust the properties by setting blocks
You can adjust the selling price, currency type, purchase restrictions, product name, icon, and other properties of the shop item.
You can choose between the default currency and a custom currency. If you choose a custom currency, the buyer must have that currency in their wallet before they can purchase the item.
Shelf
A shelf is a collection of shop items.
After creating a number of shop items, they need to be placed on the shelves:
Shelves can be created and then have their properties modified using blocks.
Shop
A shop is a collection of shelves.
After creating a number of shelves, they are placed in the created shop, and the shop entity can then execute the selling logic normally.
Properties of the shop:
Below the shop, the amount of the currency type bound to the shop that the player has in their wallet is displayed
By default, only the quantity of the default currency owned by default is displayed
Quickly create a shop
You can quickly create a shop in the Economy module, which is more intuitive and faster.
A shelf has already been created for you in the custom shop, and below it you can select the objects that will be your shop items.
Drag an object into the product grid to create a shop item on that shelf.
On the right, you can edit the properties of the selected shop item, including the item’s cover image, name, and selling price.
Under Settings, you can add multiple items to individual shop items so that players get all the items in a group when they buy. For example, when buying a weapon, you can also get the ammunition.
Using shops
There are several ways to display shops in the game.
Vending machines
There is a function object in the level object: Vending machine. Using the vending machine will open the specified shop entity.
The vending machine comes with three default configurations:
- Bound shop: The shop used by this vending machine. The shop can be viewed in the economy module, or created or changed at a specified time after entering the game using blocks.
- Trigger range: The shop button will be activated within a certain distance from the vending machine.
- Show vending machine: Whether the model of the vending machine is displayed on the map.
To use the shop in the block, you need to add a script to the vending machine.
We encapsulate the logic of creating the shop as a function that returns the created shop, and set the shop created by the function as the shop of the vending machine in the vending machine script.
When you approach a vending machine, a shop icon will be activated first, and tapping on it will open the shop UI.
If you need to use a button to open the shop, it is recommended to use the vending machine object directly. You can achieve this by hiding the object’s display and triggering the button shop within a fixed range.
Built-in shop UI
If you need to directly open the shop UI, for example, opening the shop UI directly at the beginning of a game round, or opening the shop immediately after entering a certain area, you need to use the built-in shop UI.
The built-in shop UI can be created by creating a built-in game UI block:
After creating the built-in shop UI, you can set the property of the UI to bind the shop to the created shop entity.
Public and private shops
By default, a public shop is created. No additional processing is required, and all players can purchase from this shop. Once all the shop items have been purchased, other players will no longer be able to purchase items from this shop.
If each player needs to use the same shop individually, you can create a shop for each player.
It is highly recommended to encapsulate the creation of a shop as a method or to store the created shop entity in a public variable.
For example, in the global script, open a shop UI for each player who joins the game:
This way, each player’s UI uses a different instance created from the same shop entity, which achieves the goal of each person having their own shop.
Example
Sell an invincible buff in the shop.
First, we create a script under the player module that manages the player’s buff:
In this script, write a script for an invincible buff that will give the current player invincibility for 5 seconds:
Place a vending machine in the Scene and add a script to it:
Add a method to the script of the vending machine that creates a shop:
In this shop, there is only one shelf with one item, which does not correspond to any actual item.
Use an exclamation mark for the shop item icon, or any icon you like:
The price of the shop item is set to 100 and the created item is stored in a script variable for later use.
This method is called when the vending machine is created to create the shop entity and bind it to the vending machine:
At this time, the shop already has this shop item, but the invincible buff cannot be triggered.
Create an additional shop script to monitor player purchase events:
The variable that stores the shop item is a script variable, and here an external link is used to obtain this variable. You can also obtain the shop item entity by setting a global variable.
Because the event of purchasing an item requires the script to be attached to the shop entity, and the shop is created after the game starts, it needs to be dynamically attached.
Back to the vending machine script, attach the shop script to the created shop entity:
This way the shop is already built, but the player doesn’t have the money to buy the shop items. Create a global script that adds 500 default currency to each player.
Running the game:
Initially, neither of the first two players is invincible:
The shop is open, the shop items are there, and the amount of currency in the player’s wallet is as expected:
The purchase was successful, and the player who made the purchase gained invincibility:
After 5 seconds, the invincibility effect ends:
When you open the shop again, you notice that the money has been reduced by 100 as normal: