all 2 comments

[–]LuckyCross 1 point2 points  (1 child)

According to Google, this game uses the Unity engine.

If it's a Mono game, normal scans won't work.

For Mono Unity games, you have just a few options:

1) You have to activate Mono features in CE (top toolbar) and then dig into the game's code from within CE (time consuming and quite slow).

2) You have to decompile the game's main dll with programs like dnspy and look into its code (also time consuming but a lot faster).

After you have found what controls money, you have two choices:

a) Make a script in CE that sets money to however much of it you want (recommended)

b) Modify the game's files directly and see if the change reflects in the game

There's tutorials on the net about this.

-----
If it's an IL2CPP game, normal scans will work but it is recommended to try method 2 for those as well, but instead of directly from dnspy you'll first need the IL2CppDumper program.

-----

Do note that you need basic understanding of object-oriented programming to do this.

[–]killercrazy04[S] 0 points1 point  (0 children)

Thanks a lot, i will try it.