Bunny2001 Posted November 19, 2023 Posted November 19, 2023 link https://play.google.com/store/apps/details?id=com.unicostudio.braintest3&hl=en&gl=US&referrer=utm_source%3Dgoogle%26utm_medium%3Dorganic%26utm_term%3Dbrain+test+3&pcampaignid=APPU_1_9IVaZffoHYKf4-EP5u-E6A8 help me to find out the coin value in this game.
nok1a Posted November 24, 2023 Posted November 24, 2023 On 11/19/2023 at 10:11 PM, Bunny2001 said: link https://play.google.com/store/apps/details?id=com.unicostudio.braintest3&hl=en&gl=US&referrer=utm_source%3Dgoogle%26utm_medium%3Dorganic%26utm_term%3Dbrain+test+3&pcampaignid=APPU_1_9IVaZffoHYKf4-EP5u-E6A8 help me to find out the coin value in this game. Expand tried encrypted search?
Bunny2001 Posted November 25, 2023 Author Posted November 25, 2023 On 11/24/2023 at 6:24 PM, nok1a said: tried encrypted search Expand yeah
Phantom_Combat_Venue Posted November 30, 2023 Posted November 30, 2023 (edited) Hello, you can't find the coins by searching because they are not saved as coins but rather in the following format: public enum MiniGamesRewards.Rewards // TypeDefIndex: 3436 { // Fields public int value__; // 0x0 public const MiniGamesRewards.Rewards None = 0; public const MiniGamesRewards.Rewards VIP = 1; public const MiniGamesRewards.Rewards Coin10 = 2; public const MiniGamesRewards.Rewards Coin25 = 3; public const MiniGamesRewards.Rewards Coin30 = 4; public const MiniGamesRewards.Rewards Coin35 = 5; public const MiniGamesRewards.Rewards Coin40 = 6; public const MiniGamesRewards.Rewards Coin50 = 7; public const MiniGamesRewards.Rewards Coin60 = 8; public const MiniGamesRewards.Rewards Coin75 = 9; public const MiniGamesRewards.Rewards Coin100 = 10; public const MiniGamesRewards.Rewards Coin150 = 11; public const MiniGamesRewards.Rewards Sale10 = 12; public const MiniGamesRewards.Rewards Sale20 = 13; public const MiniGamesRewards.Rewards Sale25 = 14; public const MiniGamesRewards.Rewards Sale50 = 15; public const MiniGamesRewards.Rewards Gem25 = 16; public const MiniGamesRewards.Rewards Gem35 = 17; public const MiniGamesRewards.Rewards Gem50 = 18; public const MiniGamesRewards.Rewards Gem75 = 19; public const MiniGamesRewards.Rewards Gem100 = 20; } and here the function to set the coins: // Methods // RVA: 0x119A3BC Offset: 0x119A3BC VA: 0x119A3BC public void SetReward(MiniGamesRewards.Rewards _reward) { } you can use GG to set the reward Edited November 30, 2023 by Phantom_Combat_Venue
nok1a Posted December 5, 2023 Posted December 5, 2023 On 11/30/2023 at 8:15 PM, Phantom_Combat_Venue said: Hello, you can't find the coins by searching because they are not saved as coins but rather in the following format: public enum MiniGamesRewards.Rewards // TypeDefIndex: 3436 { // Fields public int value__; // 0x0 public const MiniGamesRewards.Rewards None = 0; public const MiniGamesRewards.Rewards VIP = 1; public const MiniGamesRewards.Rewards Coin10 = 2; public const MiniGamesRewards.Rewards Coin25 = 3; public const MiniGamesRewards.Rewards Coin30 = 4; public const MiniGamesRewards.Rewards Coin35 = 5; public const MiniGamesRewards.Rewards Coin40 = 6; public const MiniGamesRewards.Rewards Coin50 = 7; public const MiniGamesRewards.Rewards Coin60 = 8; public const MiniGamesRewards.Rewards Coin75 = 9; public const MiniGamesRewards.Rewards Coin100 = 10; public const MiniGamesRewards.Rewards Coin150 = 11; public const MiniGamesRewards.Rewards Sale10 = 12; public const MiniGamesRewards.Rewards Sale20 = 13; public const MiniGamesRewards.Rewards Sale25 = 14; public const MiniGamesRewards.Rewards Sale50 = 15; public const MiniGamesRewards.Rewards Gem25 = 16; public const MiniGamesRewards.Rewards Gem35 = 17; public const MiniGamesRewards.Rewards Gem50 = 18; public const MiniGamesRewards.Rewards Gem75 = 19; public const MiniGamesRewards.Rewards Gem100 = 20; } and here the function to set the coins: // Methods // RVA: 0x119A3BC Offset: 0x119A3BC VA: 0x119A3BC public void SetReward(MiniGamesRewards.Rewards _reward) { } you can use GG to set the reward Expand Oke, how does it work to edit that method?
kiynox Posted December 5, 2023 Posted December 5, 2023 [ @Phantom_Combat_Venue ] --- Quote you can use GG to set the reward Expand So uhh, I have tried to edit it with regular ARM (MOV) and it crashed. Any suggestion? ---
MercedesFord Posted December 16, 2023 Posted December 16, 2023 On 11/30/2023 at 8:15 PM, Phantom_Combat_Venue said: Hello, you can't find the coins by searching because they are not saved as coins but rather in the following format: public enum MiniGamesRewards.Rewards // TypeDefIndex: 3436 { // Fields public int value__; // 0x0 public const MiniGamesRewards.Rewards None = 0; public const MiniGamesRewards.Rewards VIP = 1; public const MiniGamesRewards.Rewards Coin10 = 2; public const MiniGamesRewards.Rewards Coin25 = 3; public const MiniGamesRewards.Rewards Coin30 = 4; public const MiniGamesRewards.Rewards Coin35 = 5; public const MiniGamesRewards.Rewards Coin40 = 6; public const MiniGamesRewards.Rewards Coin50 = 7; public const MiniGamesRewards.Rewards Coin60 = 8; public const MiniGamesRewards.Rewards Coin75 = 9; public const MiniGamesRewards.Rewards Coin100 = 10; public const MiniGamesRewards.Rewards Coin150 = 11; public const MiniGamesRewards.Rewards Sale10 = 12; public const MiniGamesRewards.Rewards Sale20 = 13; public const MiniGamesRewards.Rewards Sale25 = 14; public const MiniGamesRewards.Rewards Sale50 = 15; public const MiniGamesRewards.Rewards Gem25 = 16; public const MiniGamesRewards.Rewards Gem35 = 17; public const MiniGamesRewards.Rewards Gem50 = 18; public const MiniGamesRewards.Rewards Gem75 = 19; public const MiniGamesRewards.Rewards Gem100 = 20; } and here the function to set the coins: // Methods // RVA: 0x119A3BC Offset: 0x119A3BC VA: 0x119A3BC public void SetReward(MiniGamesRewards.Rewards _reward) { } you can use GG to set the reward I recommend checking the in-game instructions, settings, or any available guides provided by the game developers. Looking into the field of writing for academic purposes?You only need to visit https://www.topwritersreview.com/ website. This website is a treasure trove of in-depth analyses of different writing services, assisting you in making wise decisions. While looking for a trustworthy service, I happened upon it, and it helped me avoid some possible dangers. Avoid going into the world of online writing aids blindly; instead, read Top Writers Review and make informed choices. Give your peers the link so they can take advantage of this great resource. Expand Thanks, I will try it and if I face any issue, I will update you.
THETWINSOFFICIAL Posted December 19, 2023 Posted December 19, 2023 On 12/5/2023 at 9:52 AM, nok1a said: Oke, how does it work to edit that method? Expand ~A8 Mov w0, #20 ~A8 RET
THETWINSOFFICIAL Posted December 19, 2023 Posted December 19, 2023 (edited) On 11/19/2023 at 10:11 PM, Bunny2001 said: link https://play.google.com/store/apps/details?id=com.unicostudio.braintest3&hl=en&gl=US&referrer=utm_source%3Dgoogle%26utm_medium%3Dorganic%26utm_term%3Dbrain+test+3&pcampaignid=APPU_1_9IVaZffoHYKf4-EP5u-E6A8 help me to find out the coin value in this game. Expand For coin Int32 get_Coins(); // 0x13ec768 //64bit game Set ~A8 MOV W0, #0x500000 ~A8 RET For gems Int32 get_Gems(); // 0x13ea550 For hummer Int32 get_Hammers(); // 0x13ec880 For ads removing Bool get_AdsRemoved(); // 0x13e7d88 For last level Int32 get_LastReachedLevel(); // 0x13ecab0 Edited December 19, 2023 by SYLVIA 1
Khadimulislam Posted March 16, 2024 Posted March 16, 2024 On 12/19/2023 at 8:02 AM, THETWINSOFFICIAL said: For coin Int32 get_Coins(); // 0x13ec768 //64bit game Set ~A8 MOV W0, #0x500000 ~A8 RET For gems Int32 get_Gems(); // 0x13ea550 For hummer Int32 get_Hammers(); // 0x13ec880 For ads removing Bool get_AdsRemoved(); // 0x13e7d88 For last level Int32 get_LastReachedLevel(); // 0x13ecab0 Expand Brother can you please tell me how to set this offset using gamegurdian
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now