✨ Something great is coming! 🚀
Stay tuned for the big reveal happening here on iOSGods on the 17th of December!
The countdown has finished!
-
Posts
52 -
Joined
-
Last visited
Everything posted by xxbatman9898
-
APK Mod Modern Ops 7.11 Aimbot No recoil FOV
xxbatman9898 replied to xxbatman9898's topic in Free Android Modded APKs
Sourcecode https://github.com/xxbatman9898/Aimbot-ARM64-Moder-ops-7.11 -
APK Mod Grim Soul: Dark Survival RPG MOD MENU 3.6.0 + 18
xxbatman9898 replied to xxbatman9898's topic in Free Android Modded APKs
Okay I will tonight -
APK Mod Modern Ops 7.11 Aimbot No recoil FOV
xxbatman9898 replied to xxbatman9898's topic in Free Android Modded APKs
. -
APK Mod Modern Ops 7.11 Aimbot No recoil FOV
xxbatman9898 replied to xxbatman9898's topic in Free Android Modded APKs
Link is fixed -
APK Mod Modern Ops 7.11 Aimbot No recoil FOV
xxbatman9898 replied to xxbatman9898's topic in Free Android Modded APKs
Np -
APK Mod Modern Ops 7.11 Aimbot No recoil FOV
xxbatman9898 posted a topic in Free Android Modded APKs
Mod APK Game Name: Modern Ops: Gun Shooting Games Rooted Device: Not Required. Google Play Store Link: https://play.google.com/store/apps/details?id=com.edkongames.mobs&hl=en_AU&gl=US Hack Features: - FOV - AIMBOT -NO RECOIL Requires Split APK installer to install. Disabled signing in SAI. iOS Jailbreak & Non-Jailbroken Hack(s): https://iosgods.com/forum/5-game-cheats-hack-requests/ For more fun, check out the Club(s): https://iosgods.com/clubs/ Android Mod Apk [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- 78 replies
-
- 138
-
-
-
-
-
-
-
nicee
-
Hooking string functions for libil2cpp games is a little different than hooking int or bool functions because unity uses a different type of string. Create a header file e.g. Strings.h #include "Includes/Utils.h" typedef struct _monoString { void *klass; void *monitor; int length; char chars[1]; int getLength() { return length; } char *getChars() { return chars; } } monoString; Paste this code into it. This is a typedef so we can handle mono string types. Now inside of your Main.cpp include this header #include "Includes/Strings.h" // location relative to Main.cpp if its in a higher hiarchy use "../" Now inside Main.cpp create your function pointers I put mine just below the My_Patches struct. monoString *(*String_CreateString)(void *_this, const char *str); void (*get_StringInstance); Now inside your hackthread function assign your String_CreateString and get_StringInstance. String_CreateString = (monoString*(*)(void *,const char *))getAbsoluteAddress(targetLibName, 0x1646CA0); get_StringInstance = (void (*))getAbsoluteAddress(targetLibName,0x1646CA0); To find the offsets Search in your dump.cs for a createstring method, which takes in only one variable called sbyte* value. put that offset in both get_StringInstance and String_CreateString. now you can hook string functions. here is a hook for function. First we hook the update function in the playercontroller class. then inside that class is a function Debug_MoveToPointImmediate which takes a monostring parameter. void (*Debug_MoveToPointImmediate)(void *instance, monoString * PointID); bool MoveToCastle = false; bool MoveToHome = false; void(* old_UpdateMap)(void * instance); void UpdateMap(void*instance) { if(instance != NULL ) { if(MoveToCastle) { MoveToCastle = false; Debug_MoveToPointImmediate(instance,String_CreateString(get_StringInstance,"castle")); } if(MoveToHome) { MoveToHome = false; Debug_MoveToPointImmediate(instance,String_CreateString(get_StringInstance,"home")); } } old_UpdateMap(instance); } when passing the string into the parameter use String_CreateString(get_StringInstance,"string you want to pass") now we assign the pointer function and hook the player update inside the hackthread. A64HookFunction((void*)getAbsoluteAddress(targetLibName, 0x19DDDD4), (void*)UpdateMap, (void**)&old_UpdateMap); Debug_MoveToPointImmediate = (void (*)(void *,monoString *))getAbsoluteAddress(targetLibName, 0x19E07A4); and your done. You can use the String_CreateString(get_StringInstance,"string you want to pass") in any function which takes a string. If its a string returning function you could use return String_CreateString(get_StringInstance,"string you want to return"). connecting to a button is simple. add the features : add the cases: Because the function is in a update that is called 60 times per second, we set it to true when the button is clicked and then inside the update function set it to false once it is run. This is so it isn't called more than once. you would do this differently if it was a function you want to keep being called like a toggle function. DONE.
-
- 1
-
-
Mod APK Game Name: Grim Soul: Dark Survival RPG Rooted Device: Not Required. Google Play Store Link: https://play.google.com/store/apps/details?id=fantasy.survival.game.rpg&hl=en_AU&gl=US 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://iosgods.com/forum/5-game-cheats-hack-requests/ For more fun, check out the Club(s): https://iosgods.com/clubs/ 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
- 49 replies
-
- 100
-
-
-
-
-
-
-
Tutorial [GUIDE] Unban Call of Duty: Mobile (Unban Device)
xxbatman9898 replied to alex_png's topic in Tutorials
Ty -
Tool [3.1 NIC Template] iOSGods Custom Tweak/Patcher Template for Theos!
xxbatman9898 replied to Rook's topic in Tools
ty -
ty
-
yeah
-
Tutorial [IDA Tutorial] How to hack floats in ARM64
xxbatman9898 replied to Goggwell's topic in Tutorials
k -
Video [Tutorial][Super Easy] IDA Hacking Tutorial 2015
xxbatman9898 replied to xC3FFF0E's topic in Tutorials
ty -
Video IDA Hacking Tutorial #1 - Learning SUB Edition
xxbatman9898 replied to Zahir 's topic in Tutorials
Ty -
12.1.4 it says on the source you posted it’s only for iOS 13.4.1 why assume it works on any other and I have a friend that I sent it to he’s on 12.4 it doesn’t work and all the crap about it being re formatted or whatever is irrelevant bc it’s going straight from pastebin to the message app so I don’t think it works on iOS 12