Jump to content

xxbatman9898

Member
  • Posts

    52
  • Joined

  • Last visited

5 Followers

Profile Information

  • Jailbroken
    No
  • Android Device
    Galaxy S21
  • Android Version
    11
  • Rooted
    Yes
  • Gender
    Male
  • Location
    Australia

Recent Profile Visitors

995 profile views

xxbatman9898's Achievements

Rookie

Rookie (2/14)

  • 5 Years In
  • 4 Years In
  • 3 Years In
  • 2 Years In
  • Reacting Well

Recent Badges

725

Reputation

  1. Sourcecode https://github.com/xxbatman9898/Aimbot-ARM64-Moder-ops-7.11
  2. 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
  3. 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.
  4. 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
  5. Bc float value most of the register bits are used for decimal values try using x register and mov instead of fmov
  6. Say you set x0 to a value for example mov x0 #31 then say mov x1 #31 then multiply so mul x0, x0,x1 there is a simpler way but I forget
  7. I will have to find the offsets and send them to rook for merging tomorrow after work. I may just be able to send him the related functions in ida
×
  • 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