Beltion: Arch of Equilibrium: Editing the Save Game File

Home » Video Game Saves » Beltion: Arch of Equilibrium: Editing the Save Game File
1 minute
178

By Jonny Gamer

Beltion: Arch of Equilibrium: Editing the Save Game File

Find the folder with your saved game (by default: C: \ Users \ Username \ Documents \ My Games \ Beltion \ saves \), and select the desired save. In the save folder, find the globalGameState.lua file and open it with notepad. By editing it, you can change many parameters, but do it carefully.

Beltion: Arch of Equilibrium: Editing the Save Game File Free Download

Attention! Make a backup copy of the modified file first

in lines:

[“type”] = “money”,
[“isEnable”] = false,
[“counts”] = 10,

10 is the amount of gold. By changing the number, you will receive the desired amount of money. For example:

[“type”] = “money”,
[“isEnable”] = false,
[“counts”] = 1000000,

– will give you 100,000 gold.

In lines:

GameScene.createObject (“Avatar”, “CharacterMale”, {
[“usePathFinder”] = true,
[“stats”] = {
[“spRegeneration”] = 2,
[“maxHp”] = 100,
[“sp”] = 100,
[“maxSp”] = 100,
[“hp”] = 100,
},

[“spRegeneration”] = 2, – mana regeneration
[“maxHp”] = 100, – the maximum amount of health
[“sp”] = 100 – current amount of mana
[“maxSp”] = 100 – the maximum amount of mana
[“hp”] = 100, – current amount of health

By changing these parameters, you will significantly strengthen your hero. For example:

GameScene.createObject (“Avatar”, “CharacterMale”, {
[“usePathFinder”] = true,
[“stats”] = {
[“spRegeneration”] = 10,
[“maxHp”] = 1000,
[“sp”] = 1000,
[“maxSp”] = 1000,
[“hp”] = 1000,

will give you increased mana regeneration, 1000 maximum and current health, 1000 maximum and available mana.

[“freeXpAmount”] = – responsible for free experience available for distribution
[“globalXpAmount”] = – total experience gained for the game

    How do you rate Beltion: Arch of Equilibrium: Editing the Save Game File ?

    Your email address will not be published. Required fields are marked *