Recent content by ASDFGHJKLQWE

  1. Help! How to hook List<string> Method ?

    Hello Friends, (Straight to the Topic) Did you guys know how to hook list<string> or list<int> method ? -> Yes, then please tell me ( I will like to know ) On the following example // RVA: 0x1781BF4 Offset: 0x1781BF4 VA: 0x1781BF4 private List<string> GetHeroById() { } Another...
  2. Hooking voids!

    Just use HOOK_LIB("lib", "offset", get_timeScale, old_timeSclae);
  3. Remove Ads mod

    Yes, but need to find correct offset like AddClaimReward or ClaimReward in void
  4. Hooking voids!

    If You are using lgl then void (*old_timeScale) (float value); void get_timeScale(float value) { if (mod) { old_timeScale(2000.00f); return; } old_timeScale(value); }
  5. Help! How to hook if CompilerGeneratedAttribute is given

    🤨Means you have not try to use the hook.
  6. Help! How to hook if CompilerGeneratedAttribute is given

    Did you try or just saying this By seeing. If You have try and not working then . The offset for coin is wrong
  7. Help! How to hook if CompilerGeneratedAttribute is given

    See This Basic Hooking Tutorial - Platinmods.com - Android & iOS MODs, Mobile Games & Apps And You Need to Hook Like this bool coin = false; int (*old_Coin)(void *instance); int get_Coin(void *instance) { if (instance != NULL) { if (coin) { return (int) 999999...
  8. Help! Hex editor for Android

    You can use "MT Manager VIP".
  9. Help! How to hook if CompilerGeneratedAttribute is given

    Thanks for this 😊. (But Not Working)
  10. Help! How to hook if CompilerGeneratedAttribute is given

    How to Hook this [CompilerGeneratedAttribute] // RVA: 0x671F78 Offset: 0x671F78 VA: 0x671F78 // RVA: 0x192A2DC Offset: 0x192A2DC VA: 0x192A2DC public long get_Coins() { }
  11. Help! god mode

    Hi did you know how to hook this it's has complier generator [CompilerGeneratedAttribute] // RVA: 0x3506F0 Offset: 0x3506F0 VA: 0x3506F0 // RVA: 0x17480AC Offset: 0x17480AC VA: 0x17480AC public bool get_AdsDisabled() { }
  12. Help! How to hook

    Thanks but I need the second one
  13. Help! How to hook

    Hello friends can you tell me how to hook this // RVA: 0x25EB32C Offset: 0x25EB32C VA: 0x25EB32C public long get_Diamond() { } And this one // RVA: 0x2F7175C Offset: 0x2F7175C VA: 0x2F7175C private void BuyProductID(string productId) { } Or // RVA: 0x325268C Offset...