Sunday, 19 December 2021

Restoring App data from iCloud/GameCenter to Hacked Apple Arcade games

Hello, I have iPhone 11, running on iOS 15.2, Non-Jailbreak so i had a free subscription for Apple Arcade and i played a couple of games with it and canceled it, then i downloaded the Hacked version from iOSGods, so my question is Is there a way that i can get back the app data from iCloud or GC to the Hacked version of iosgods? i don’t wanna play it again since it's long progress and takes months to reach. i know that if GameCenter connects to the game it will restore the data automatically but in iosgods apps it doesn’t so i won’t get it back i backed the app data through iMazing before it got stopped, so i tried it but it didn’t read the app is installed so I couldn’t restore it? any help would be appreciated i really need to restore it i worked so hard on it 😭

from iOSGods RSS Feed https://ift.tt/3pd9xXw

Slime Hunter : Wild Impact. Errorcode(1).

Does any one know why this keeps coming. Everything loads just at the end where it’s saying “signing to many n server nanoo” the errorcode(1) comes up. I am using Odyssey Sileo jailbreak Please help

from iOSGods RSS Feed https://ift.tt/3eohCT3

Township device unban (non jailbroken)

Hi, I’m on iphone 11 with ios 15, my township account was banned and I cant bypass the ban screen, reinstalled the app, created new apple ID nothing works… Anyway to unban my device to start over , thanks for helping

from iOSGods RSS Feed https://ift.tt/3p8VJ06

Grim Soul: Dark Survival RPG MOD MENU 3.6.0 + 18

Mod APK Game Name: Grim Soul: Dark Survival RPG Rooted Device: Not Required. Google Play Store Link: https://ift.tt/33KAyt1 Hack Features: - Free Craft - Infinite Items - Free Build and assemble and upgrade - Instant Run and ride - Durability - Fast Loot -Show Events - Inf. Food and water -God Mode -Leave location (Will leave to the province map) -Damage -Horse XP (click button then travel on horse to update, make sure Free Ride is disabled for it to take effect) -Free Ride -Free Run -unlock Chests -speed slider -Set Location Castle (when pressed click enter and you will load into castle regardless of where you are) -Set Location Home (when pressed click enter and you will load into home regardless of where you are) iOS Jailbreak & Non-Jailbroken Hack(s): https://ift.tt/32rfmBY For more fun, check out the Club(s): https://ift.tt/2NSn17b Android Mod APK Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the Modded APK file above using your favorite browser or a download manager of your choice. STEP 2: Copy the file over to your Android device via USB or wirelessly. Skip this step if you're using your Android device to download the mod. STEP 3: Browse to the location where the hacked APK is stored using a file manager of your choice. STEP 4: Tap on the .APK mod file, then tap 'Install', and the installation should begin. STEP 5A: If the mod contains an OBB file, extract it if it's archived and copy the folder to /Android/obb. STEP 5B: If the mod contains a DATA file/folder, extract it if it's archived and copy the folder to /Android/data. STEP 6: Once the installation is complete, everything should be ready. Enjoy! NOTE: If you have any questions or problems, read our Frequently Asked Questions 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, post your feedback below and help out other fellow members that are encountering issues. Credits: - xxbatman9898 Cheat Video/Screenshots: N/A

from iOSGods RSS Feed https://ift.tt/3ed7wUA

LF help with hooking function calls with latest mod menu template (Unity)

Hi there guys, It's been a while since I did mod something for iOS, please, let me know what I'm doing wrong here. Below is the top of my Tweak.xm #import "Macros.h" /*********************************************************** INSIDE THE FUNCTION BELOW YOU'LL HAVE TO ADD YOUR SWITCHES! ***********************************************************/ void(*Load)(void *this_) = (void(*) (void *))getRealOffset("0x101D46508"); void(*ctor0)(void *this_) = (void(*) (void *))getRealOffset("0x101DFA0B4"); void(*ctor1)(void *this_) = (void(*) (void *))getRealOffset("0x101D4752C"); void(*ctor2)(void *this_) = (void(*) (void *))getRealOffset("0x101D475C0"); void(*ctor3)(void *this_) = (void(*) (void *))getRealOffset("0x10247B024"); void(*ctor4)(void *this_) = (void(*) (void *))getRealOffset("0x10247B610"); void(*ctor5)(void *this_) = (void(*) (void *))getRealOffset("0x101B75B94"); void(*ctor6)(void *this_) = (void(*) (void *))getRealOffset("0x101E26324"); void(*OnGui)(void *this_) = (void(*) (void *))getRealOffset("0x101D46B6C"); void (*oldBattle)(void *e); void onBattle(void *e){ if (e != NULL) { if ([switches isSwitchOn:NSSENCRYPT("onBattle")]) { ctor0(e); ctor1(e); ctor2(e); ctor3(e); ctor4(e); ctor5(e); ctor6(e); Load(e); OnGui(e); return oldBattle(e); } else return oldBattle(e); } } void setup() { [switches addSwitch:NSSENCRYPT("onBattle") description:NSSENCRYPT("onBattle") ]; HOOK(ENCRYPTOFFSET("0x101C6B714"), onBattle, oldBattle); } I'm not C guy, so I don't completely understand the 'void(*ctor5)(void *this_) = (void(*) (void *))getRealOffset("0x101B75B94");' structure, but it used to work pretty much like that in the old days. The mod menu I'm using is this one: https://ift.tt/3IXxj1v It is mentioned in the repo's readme that A quick note before showing all the switch examples; You can and should encrypt offsets, hexes, c-strings and NSStrings. Below you can find the proper syntax per string-type. ENCRYPTOFFSET("0x10047FD90") However, the template tweak.xm doesn't have any "HOOK's" or getting void from an existing pointer into a variable (?not sure if that makes sense) Basically, what I'm trying to do is: There is a function, e.g. killAll with the address 0x1337FFFF and a Battle Update function on another address. First I need to get the killAll function from an address. Earlier, I would do something like that (void(*killAll)(void *instance) = (void (*)(void*))getRealOffset(0x1337FFFF); Nowadays, I'm not sure about these things and would love you to help me figure: 1.Whether that is going to work or not 2. Should I do getRealOffset(0x1337FFFF) or getRealOffset(ENCRYPTOFFSET("0x1337FFFF")); 3. Should I add the ENCRYPTOFFSET part in the HOOK at the very end of my code 4. Anything else I'm missing or doing wrong. Also, according to my logic - these two codes below should result in the same if ([switches isSwitchOn:NSSENCRYPT("onBattle")]) { ctor0(e); ctor1(e); ctor2(e); ctor3(e); ctor4(e); ctor5(e); ctor6(e); Load(e); OnGui(e); return oldBattle(e); } else return oldBattle(e); } or if ([switches isSwitchOn:NSSENCRYPT("onBattle")]) { ctor0(e); ctor1(e); ctor2(e); ctor3(e); ctor4(e); ctor5(e); ctor6(e); Load(e); OnGui(e); } return oldBattle(e); } Just wanted to make sure about the last one too. Thanks in advance

from iOSGods RSS Feed https://ift.tt/323Se2p