Tuesday, 12 April 2022

help me with this question ObscuredInt

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; } }

from iOSGods RSS Feed https://ift.tt/51ro96l

Monday, 11 April 2022

Almosaly Ramadan, athan, Qibla v28.22 ( Fully unlocked )

Mod Requirements: - Non-Jailbroken iPhone/iPad/iPod Touch. - Sideloadly / Cydia Impactor or alternatives. - A Computer Running Windows/macOS/Linux with iTunes installed. Hack Features: - Fully unlocked ⚠️ Crash will only happen the first time. Jailbreak required hack(s): https://ift.tt/3EhrR7z Modded Android APK(s): https://ift.tt/t8SPxOY For more fun, check out the Club(s): https://ift.tt/qHQIL2y iOS Hack Download Link: [Hidden Content] PC Installation Instructions: STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress. STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic. STEP 3: Download Sideloadly and install it on your PC. STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up. STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application. STEP 6: You will now have to enter your iTunes/Apple ID email login, press 'Start' & then you will be asked to enter your password. Go ahead and enter the required information. STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust email@iosgods.com'. STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game. NOTE: For free Apple Developer accounts, you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can also use Sideloadly to normally install the IPA with AppSync. Filza & IPA Installer (or alternatives) from Cydia also work. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - Abdulkader - nowesr1 Cheat Video/Screenshots: N/A

from iOSGods RSS Feed https://ift.tt/nWwOolJ

WTMP v1.0.8 ( PRO )

Mod Requirements: - Non-Jailbroken iPhone/iPad/iPod Touch. - Sideloadly / Cydia Impactor or alternatives. - A Computer Running Windows/macOS/Linux with iTunes installed. Hack Features: - Modded IPA free in app purchases ⚠️ Choose a year subscription and when the payment message appears, choose Cancel. Jailbreak required hack(s): https://ift.tt/Ts5VLzX Modded Android APK(s): https://ift.tt/t8SPxOY For more fun, check out the Club(s): https://ift.tt/qHQIL2y iOS Hack Download Link: [Hidden Content] PC Installation Instructions: STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress. STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic. STEP 3: Download Sideloadly and install it on your PC. STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up. STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application. STEP 6: You will now have to enter your iTunes/Apple ID email login, press 'Start' & then you will be asked to enter your password. Go ahead and enter the required information. STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust email@iosgods.com'. STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game. NOTE: For free Apple Developer accounts, you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can also use Sideloadly to normally install the IPA with AppSync. Filza & IPA Installer (or alternatives) from Cydia also work. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - Abdulkader - nowesr1 Cheat Video/Screenshots: N/A

from iOSGods RSS Feed https://ift.tt/8b3qk6R

TeraBox: Cloud Storage Space v 2.1.3.2 ( PREMIUM )

Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iGameGod / Filza / iMazing / or any other file managers for iOS. - Cydia Substrate, Substitute or libhooker depending on your jailbreak. - PreferenceLoader (from Cydia, Sileo or Zebra). Hack Features: - PREMIUM Non-Jailbroken & No Jailbreak required hack(s): https://ift.tt/4jDEqW0 Modded Android APK(s): https://ift.tt/t8SPxOY For more fun, check out the Club(s): https://ift.tt/qHQIL2y iOS Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. Use Safari/Google Chrome or other iOS browsers to download. STEP 2: Once the file has downloaded, tap on it and then you will be prompted on whether you want to open the deb with iGameGod or copy it to Filza. STEP 3: If necessary, tap on the downloaded file, and then, you will need to press 'Install' from the options on your screen. STEP 4: Let iGameGod/Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 5: If the hack is a Mod Menu — which is usually the case nowadays — the cheat features can be toggled in-game. Some cheats have options that can be enabled from your iDevice settings. STEP 6: Turn on the features you want and play the game. You may need to follow further instructions inside the hack's popup in-game. NOTE: If you have any questions or problems, read our Troubleshooting topic & Frequently Asked Questions & Answers topic. If you still haven't found a solution, post your issue down below and we'll do our best to help! If the hack does work for you, please post your feedback below and help out other fellow members that are encountering issues. Credits: - Abdulkader - nowesr1 Cheat Video/Screenshots: N/A

from iOSGods RSS Feed https://ift.tt/cympPje

TeraBox: Cloud Storage Space ( PREMIUM )

Mod Requirements: - Non-Jailbroken iPhone/iPad/iPod Touch. - Sideloadly / Cydia Impactor or alternatives. - A Computer Running Windows/macOS/Linux with iTunes installed. Hack Features: - PREMIUM Jailbreak required hack(s): https://ift.tt/Ts5VLzX Modded Android APK(s): https://ift.tt/t8SPxOY For more fun, check out the Club(s): https://ift.tt/qHQIL2y iOS Hack Download Link: [Hidden Content] PC Installation Instructions: STEP 1: If necessary, uninstall the app if you have it installed on your iDevice. Some hacked IPAs will install as a duplicate app. Make sure to back it up so you don't lose your progress. STEP 2: Download the pre-hacked .IPA file from the link above to your computer. To download from the iOSGods App, see this tutorial topic. STEP 3: Download Sideloadly and install it on your PC. STEP 4: Open/Run Sideloadly on your computer, connect your iOS Device, and wait until your device name shows up. STEP 5: Once your iDevice appears, drag the modded .IPA file you downloaded and drop it inside the Sideloadly application. STEP 6: You will now have to enter your iTunes/Apple ID email login, press 'Start' & then you will be asked to enter your password. Go ahead and enter the required information. STEP 7: Wait for Sideloadly to finish sideloading/installing the hacked IPA. STEP 8: Once the installation is complete and you see the app on your Home Screen, you will need to go to Settings -> General -> Profiles/VPN & Device Management. Once there, tap on the email you entered from step 6, and then tap on 'Trust email@iosgods.com'. STEP 9: Now go to your Home Screen and open the newly installed app and everything should work fine. You may need to follow further per app instructions inside the hack's popup in-game. NOTE: For free Apple Developer accounts, you will need to repeat this process every 7 days. Using a disposable Apple ID for this process is suggested but not required. Jailbroken iDevices can also use Sideloadly to normally install the IPA with AppSync. Filza & IPA Installer (or alternatives) from Cydia also work. If you have any questions or problems, read our Sideloadly FAQ section of the topic and if you don't find a solution, please post your issue down below and we'll do our best to help! If the hack does work for you, post your feedback below and help out other fellow members that are encountering issues. Credits: - Abdulkader - nowesr1 Cheat Video/Screenshots: N/A

from iOSGods RSS Feed https://ift.tt/ompLSOT