spicynugget80 wrote: ↑Fri May 23, 2025 3:23 am
can anybody tell me the command to change gems owned please ,because my characters now missing some of its UI and cannot interact with the rest that is still visible on the screen.
This will change the amount of gems you own.
bEngine.gameAttributes.h.GemsOwned=Amount
reided wrote: ↑Fri May 23, 2025 12:30 am
does anyone have any idea of how to reset / edit some things on the tome ?
Items in the slab are stored in "cards" [1] and are not automatically sorted but kept in the order you found them. So use bEngine.getGameAttribute("Cards")[1] to see what place and id item you want to delete.
delete bEngine.getGameAttribute("Cards")[1][X]
This will delete the slab entry [X] which is the id of your item, so if godshard ore was your 183rd item you need to write delete bEngine.getGameAttribute("Cards")[1][183].
BUT even if you delete the item from the Cards array the slab will still have the same number of items found as before deletion. Meaning if you have 1283 items found and you deleted the godshard ore entry, you also need to change bEngine.getGameAttribute("Cards")[1].length=
length.
First check the length with bEngine.getGameAttribute("Cards")[1].length and then use bEngine.getGameAttribute("Cards")[1]=1282.
The biggest problem is just figuring out what entry is what [X].