Jump to content

1 post in this topic

Recommended Posts

Posted

I'm trying to use the ObscuredInt script to change the minute of this game, but when I add the script nothing happens, the bullets don't change, what's wrong with my script?

 

C++:
int GetObscuredIntABValue(uint64_t location){
    int cryptoKey = *(int *)location;
    int obfuscatedABValue = *(int *)(location + 0x164);


    return obfuscatedABValue ^ cryptoKey;
}

void SetObscuredIntABValue(uint64_t location, int value){
    int cryptoKey = *(int *)location;

    *(int *)(location + 0x164) = value ^ cryptoKey;
}

void (*orig_Update)(void* instance);
void Update(void* instance) {

    if (instance != NULL && hack2)
    {
        SetObscuredIntABValue((uint64_t)instance + 0x164,99999);
    }

    return orig_Update(instance);
}


 MSHookFunction((void *)getAbsoluteAddress(targetLibName,string2Offset(OBFUSCATE_KEY("0x52BA74",'?'))),(void *) Update,(void **)&orig_Update);

 

this for field ammo,clips

 

// Token: 0x04003198 RID: 12696

    [Token(Token = "0x4003198")]

    [FieldOffset(Offset = "0x158")]

    public ObscuredIntAB bullets;



    // Token: 0x04003199 RID: 12697

    [Token(Token = "0x4003199")]

    [FieldOffset(Offset = "0x164")]

    public ObscuredIntAB clips;

 

this for script encription

 

using System;
using Il2CppDummyDll;

namespace kube.cheat
{
    // Token: 0x020007C2 RID: 1986
    [Token(Token = "0x20007C2")]
    public struct ObscuredIntAB : IEquatable<ObscuredIntAB>, IFormattable
    {
        // Token: 0x060035D7 RID: 13783 RVA: 0x00002050 File Offset: 0x00000250
        [Token(Token = "0x60035D7")]
        [Address(RVA = "0x190D460", Offset = "0x190D460", VA = "0x190D460")]
        private ObscuredIntAB(int value)
        {
        }

        // Token: 0x060035D8 RID: 13784 RVA: 0x00002050 File Offset: 0x00000250
        [Token(Token = "0x60035D8")]
        [Address(RVA = "0x190D4FC", Offset = "0x190D4FC", VA = "0x190D4FC")]
        public void Noise()
        {
        }

        // Token: 0x060035D9 RID: 13785 RVA: 0x0000EBE0 File Offset: 0x0000CDE0
        [Token(Token = "0x60035D9")]
        [Address(RVA = "0x190D5EC", Offset = "0x190D5EC", VA = "0x190D5EC")]
        private int InternalDecrypt()
        {
            return 0;
        }

        // Token: 0x060035DA RID: 13786 RVA: 0x0000EBF8 File Offset: 0x0000CDF8
        [Token(Token = "0x60035DA")]
        [Address(RVA = "0x190D6E8", Offset = "0x190D6E8", VA = "0x190D6E8")]
        public static implicit operator ObscuredIntAB(int value)
        {
            return default(ObscuredIntAB);
        }

        // Token: 0x060035DB RID: 13787 RVA: 0x0000EC10 File Offset: 0x0000CE10
        [Token(Token = "0x60035DB")]
        [Address(RVA = "0x190D708", Offset = "0x190D708", VA = "0x190D708")]
        public static implicit operator int(ObscuredIntAB value)
        {
            return 0;
        }

        // Token: 0x060035DC RID: 13788 RVA: 0x0000EC28 File Offset: 0x0000CE28
        [Token(Token = "0x60035DC")]
        [Address(RVA = "0x190D728", Offset = "0x190D728", VA = "0x190D728")]
        public static ObscuredIntAB operator ++(ObscuredIntAB input)
        {
            return default(ObscuredIntAB);
        }

        // Token: 0x060035DD RID: 13789 RVA: 0x0000EC40 File Offset: 0x0000CE40
        [Token(Token = "0x60035DD")]
        [Address(RVA = "0x190D7EC", Offset = "0x190D7EC", VA = "0x190D7EC")]
        public static ObscuredIntAB operator --(ObscuredIntAB input)
        {
            return default(ObscuredIntAB);
        }

        // Token: 0x060035DE RID: 13790 RVA: 0x0000EC58 File Offset: 0x0000CE58
        [Token(Token = "0x60035DE")]
        [Address(RVA = "0x190D8AC", Offset = "0x190D8AC", VA = "0x190D8AC", Slot = "0")]
        public override bool Equals(object obj)
        {
            return default(bool);
        }

        // Token: 0x060035DF RID: 13791 RVA: 0x0000EC70 File Offset: 0x0000CE70
        [Token(Token = "0x60035DF")]
        [Address(RVA = "0x190D964", Offset = "0x190D964", VA = "0x190D964", Slot = "4")]
        public bool Equals(ObscuredIntAB obj)
        {
            return default(bool);
        }

        // Token: 0x060035E0 RID: 13792 RVA: 0x0000EC88 File Offset: 0x0000CE88
        [Token(Token = "0x60035E0")]
        [Address(RVA = "0x190D998", Offset = "0x190D998", VA = "0x190D998", Slot = "2")]
        public override int GetHashCode()
        {
            return 0;
        }

        // Token: 0x060035E1 RID: 13793 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E1")]
        [Address(RVA = "0x190D9C0", Offset = "0x190D9C0", VA = "0x190D9C0", Slot = "3")]
        public override string ToString()
        {
            return null;
        }

        // Token: 0x060035E2 RID: 13794 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E2")]
        [Address(RVA = "0x190D9E8", Offset = "0x190D9E8", VA = "0x190D9E8")]
        public string ToString(string format)
        {
            return null;
        }

        // Token: 0x060035E3 RID: 13795 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E3")]
        [Address(RVA = "0x190DA18", Offset = "0x190DA18", VA = "0x190DA18")]
        public string ToString(IFormatProvider provider)
        {
            return null;
        }

        // Token: 0x060035E4 RID: 13796 RVA: 0x0000206A File Offset: 0x0000026A
        [Token(Token = "0x60035E4")]
        [Address(RVA = "0x190DA48", Offset = "0x190DA48", VA = "0x190DA48", Slot = "5")]
        public string ToString(string format, IFormatProvider provider)
        {
            return null;
        }

        // Token: 0x04003B18 RID: 15128
        [Token(Token = "0x4003B18")]
        [FieldOffset(Offset = "0x0")]
        private static int cryptoKey;

        // Token: 0x04003B19 RID: 15129
        [Token(Token = "0x4003B19")]
        [FieldOffset(Offset = "0x0")]
        private int hvh;

        // Token: 0x04003B1A RID: 15130
        [Token(Token = "0x4003B1A")]
        [FieldOffset(Offset = "0x4")]
        private int hvl;

        // Token: 0x04003B1B RID: 15131
        [Token(Token = "0x4003B1B")]
        [FieldOffset(Offset = "0x8")]
        private int fakeValue;
    }
}

 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Our picks

    • Run! Goddess v1.0.22 [+4 Jailed Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4



      🤩 Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
      • 93 replies
    • Run! Goddess v1.0.22 [+4 Cheats]
      Modded/Hacked App: Run! Goddess By TOP GAMES INC.
      Bundle ID: com.topgamesinc.rg
      iTunes Store Link: https://apps.apple.com/us/app/run-goddess/id6667111749?uo=4

       

      🤩 Hack Features

      - No Skill Cooldown
      - Slow Enemy
      - Enemy Can't Attack (Enemy Can't Do Damage)
       
      • 80 replies
    • Alien Survivor: Survival Arena v1.38.1 [ +7 Cheats ] Currency Max
      Modded/Hacked App: Alien Survivor: Survival Arena By IMPONILOX LIMITED
      Bundle ID: world.playme.x
      iTunes Store Link: https://apps.apple.com/us/app/alien-survivor-survival-arena/id1669761844?uo=4
       

      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Achievements Rewards Only One Get ]

      - Energy [ Just Buy ]

      - HP [ Just Equip & Unequip ]

      - ATK [ Just Equip & Unequip ]

      - DEF [ Just Equip & Unequip ]

      - Skill CD [ First Get Then Use ]


      🍏 For Non-Jailbroken & No Jailbreak required hacks: https://iosgods.com/forum/79-no-jailbreak-section/
      🤖 Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      • 15 replies
    • Alien Survivor: Survival Arena v1.38.1 [ +7 Jailed ] Currency Max
      Modded/Hacked App: Alien Survivor: Survival Arena By IMPONILOX LIMITED
      Bundle ID: world.playme.x
      iTunes Store Link: https://apps.apple.com/us/app/alien-survivor-survival-arena/id1669761844?uo=4


      🚀 Hack Features

      - ADS NO [ Rewards Free ]

      - Gems [ Achievements Rewards Only One Get ]

      - Energy [ Just Buy ]

      - HP [ Just Equip & Unequip ]

      - ATK [ Just Equip & Unequip ]

      - DEF [ Just Equip & Unequip ]

      - Skill CD [ First Get Then Use ]


      🍏 Jailbreak iOS hacks: https://iosgods.com/forum/5-game-cheats-hack-requests/
      🤖 Modded Android APKs: https://iosgods.com/forum/68-android-section/
        • Like
      • 26 replies
    • Legend of Survivors V1.2.8 [ +17 Jailed ] Currency Max
      Modded/Hacked App: Legend of Survivors By ABI GLOBAL LTD.
      Bundle ID: com.abi.legendofsurvivors
      iTunes Store Link: https://apps.apple.com/us/app/legend-of-survivors/id6489580730?uo=4


      Hack Features:

      - NO ADS

      - Gems 

      - Gold

      - Energy 

      - Material

      - Health Max [ Equip & Upgrade ]

      - Damage [ Equip & Upgrade ]

      - Skill Cooldown

      - EXP + Level [ Patrol Reward ]

      - Patrol Reward [ Claim Unlimited ]

      - Growth Pack Unlock

      - Growth Pack [ Claim Unlimited ]

      - Monthly card Pack Unlock

      - Monthly card Pack [ Claim Unlimited ]


      Jailbreak required hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
      • 48 replies
    • Legend of Survivors V1.2.8 [ +17 Cheats ] Currency Max
      Modded/Hacked App: Legend of Survivors By ABI GLOBAL LTD.
      Bundle ID: com.abi.legendofsurvivors
      iTunes Store Link: https://apps.apple.com/us/app/legend-of-survivors/id6489580730?uo=4


      Hack Features:
      - IAP Free [ Buy Anything - Gems Gold Ads Premium Packs ]

      - NO ADS

      - Gems 

      - Gold

      - Energy 

      - Material

      - Health Max [ Equip & Upgrade ]

      - Damage [ Equip & Upgrade ]

      - Skill Cooldown

      - EXP + Level [ Patrol Reward ]

      - Patrol Reward [ Claim Unlimited ]

      - Growth Pack Unlock

      - Growth Pack [ Claim Unlimited ]

      - Monthly card Pack Unlock

      - Monthly card Pack [ Claim Unlimited ]
        • Like
      • 132 replies
    • Kitchen Masters v15.0.0 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Kitchen Masters By Bigger Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.bigger.kitchenmasters
      iTunes Store Link: https://apps.apple.com/ph/app/kitchen-masters/id6474870266?uo=4


      🤩 Hack Features

      - Coins

      - Cash

      - Lives

      - Tile Cost 0
      • 6 replies
    • Kitchen Masters v15.0.0 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Kitchen Masters By Bigger Oyun Yazilim ve Pazarlama Anonim Sirketi
      Bundle ID: com.bigger.kitchenmasters
      iTunes Store Link: https://apps.apple.com/ph/app/kitchen-masters/id6474870266?uo=4
       

      🤩 Hack Features

      - Coins

      - Cash

      - Lives

      - Tile Cost 0
      • 10 replies
    • Score Masters v2.2 [ +7 Jailed ] Always Win
      Modded/Hacked App: Score Masters By SKYLOFT YAZILIM BILISIM VE TICARET ANONIM SIRKETI
      Bundle ID: com.bh.hypergoal
      iTunes Store Link: https://apps.apple.com/us/app/score-masters/id6473402760?uo=4


      🚀 Hack Features

      - Auto ADS Disable

      - Gems [ Mission Rewards ]

      - Coins [ Mission Rewards ]

      - Player Score 20 Max

      - Always Win Player

      - AI Score 0

      - AI Miss
      • 5 replies
    • Score Masters v2.2 [ +7 Cheats ] Always Win
      Modded/Hacked App: Score Masters By SKYLOFT YAZILIM BILISIM VE TICARET ANONIM SIRKETI
      Bundle ID: com.bh.hypergoal
      iTunes Store Link: https://apps.apple.com/us/app/score-masters/id6473402760?uo=4


      🚀 Hack Features

      - Auto ADS Disable

      - Gems [ Mission Rewards ]

      - Coins [ Mission Rewards ]

      - Player Score 20 Max

      - Always Win Player

      - AI Score 0

      - AI Miss
      • 8 replies
    • Adventure Bay - Farm Games v1.42.14 [ +4 Cheats ] Currency Max
      Modded/Hacked App: Adventure Bay - Farm Games By Gamegos Teknoloji A.S.
      Bundle ID: com.gamegos.adventure.bay.paradise.farm
      iTunes Store Link: https://apps.apple.com/us/app/adventure-bay-farm-games/id1578449819?uo=4
       

      🤩 Hack Features

      - Gems
      - Coins
      - Energy
      - Avatar Unlock
      • 19 replies
    • Adventure Bay - Farm Games v1.42.14 [ +4 Jailed ] Currency Max
      Modded/Hacked App: Adventure Bay - Farm Games By Gamegos Teknoloji A.S.
      Bundle ID: com.gamegos.adventure.bay.paradise.farm
      iTunes Store Link: https://apps.apple.com/us/app/adventure-bay-farm-games/id1578449819?uo=4


      🤩 Hack Features

      - Gems
      - Coins
      - Energy
      - Avatar Unlock
      • 25 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines