Jump to content

xxbatman9898

Member
  • Posts

    52
  • Joined

  • Last visited

Everything posted by xxbatman9898

  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.
      • 1
      • Like
  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
  8. There is a cross at top left corner when that shows
  9. I added a photo and the links to game and bundle I don’t know what happened
  10. Enable Max skill/perks option then remove a perk and this will take effect
  11. Updated Hack: Modded/Hacked App: Raft Survival Ocean Nomad Bundle ID: com.raftsurvival.raft iTunes Store Link https://apps.apple.com/us/app/raft-survival-ocean-nomad/id1326046015?uo=4&at=1010lce4 Mod Requirements: - Jailbroken iPhone/iPad/iPod Touch. - iFile / Filza / iFunBox / iTools or any other file managers for iOS. - Cydia Substrate or Substitute. - PreferenceLoader (from Cydia or Sileo). Hack Features: - God Mode (infinite health, You have to die for this to take effect) - Infinite starting Doubloons (infinite doubloons when starting a new game) - Free Craft and building - Infinite xp (building part of the raft for e.g max's your level) PLEASE BACKUP YOUR SAVEGAMES! Non-Jailbroken & No Jailbreak required hack(s): https://iosgods.com/forum/79-no-jailbreak-section/ Modded Android APK(s): https://iosgods.com/forum/68-android-section/ For more fun, check out the Club(s): https://iosgods.com/clubs/ iOS Hack Download Link: [Hidden Content] Installation Instructions: STEP 1: Download the .deb Cydia hack file from the link above. STEP 2: Copy the file over to your iDevice using any of the file managers mentioned above or skip this step if you're downloading from your iDevice. STEP 3: Using iFile or Filza, browse to where you saved the downloaded .deb file and tap on it. STEP 4: Once you tap on the file, you will then need to press on 'Installer' or 'Install' from the options on your screen. STEP 5: Let iFile / Filza finish the cheat installation. Make sure it successfully installs, otherwise see the note below. STEP 6: Now open your iDevice settings and scroll down until you see the settings for this cheat and tap on it. If the hack is a Mod Menu, the cheat features can be toggled in-game. STEP 7: 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 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
  12. Just downloaded discord user : MatthewBrand#8123
  13. Can you tell me how that happened also I will have to look into changing how freeze zombies works it is buggy.
  14. Also if you want to go back to the location spawn point( like the start of the dungoen) enable the reset player option, then inside the crafting menu the green button that is supposed to reset your points called "reset" will teleport you there
  15. Simply disable the Super Perks/skills and them remove the perk for it to update. then you will go back to 100 health, I added a reset player option.
×
  • 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