Jump to content

Recent Posts

Showing topics.

Content Types


This stream auto-updates

  1. Today
  2. There are mods for this app, but I can't install them I was wondering how can I hack this game
  3. Yes, of course! But if that's all you want, just copy the few lines of code. In fact, I blogged the creation of the tool and all of the code snippets I used: import itertools import binascii import keystone import capstone def remove_whitespace(s: str) -> str: return "".join(s.split()) def wraptext(s: str, size: int) -> list[str]: # Thanks to https://stackoverflow.com/questions/9475241/split-string-every-nth-character return [s[i:i + size] for i in range(0, len(s), size)] def getbytes(hexstring: str) -> list[str]: """ Splits a hex string into a list of bytes. Convenient function because it accounts for both whitespace-separated and un-separated hex strings. """ hexstring = remove_whitespace(hexstring) assert len(hexstring) % 2 == 0, "Invalid hex string (odd length)" return wraptext(hexstring, 2) def make_ks(architecture: str) -> keystone.Ks: if architecture == "32bit": return keystone.Ks(keystone.KS_ARCH_ARM, keystone.KS_MODE_ARM) elif architecture == "64bit": return keystone.Ks(keystone.KS_ARCH_ARM64, keystone.KS_MODE_LITTLE_ENDIAN) else: raise ValueError(f"Unrecognized architecture: {architecture}. Only '32bit' and '64bit' are valid strings") def make_cs(architecture: str) -> capstone.Cs: if architecture == "32bit": return capstone.Cs(capstone.CS_ARCH_ARM, capstone.CS_MODE_ARM) elif architecture == "64bit": return capstone.Cs(capstone.CS_ARCH_ARM64, capstone.CS_MODE_LITTLE_ENDIAN) else: raise ValueError(f"Unrecognized architecture: {architecture}. Only '32bit' and '64bit' are valid strings") def armtohex(instruction: str, architecture: str) -> str: ks = make_ks(architecture) convertedhexlist = [] convertedinstruction = ks.asm(instruction, as_bytes=True)[0] return binascii.hexlify(convertedinstruction).decode().upper() def hextoarm(hexinstruction: str, architecture: str) -> list[str]: cs = make_cs(architecture) return next(cs.disasm_lite(bytearray.fromhex(hexinstruction), 0x0))[2:] def generateaobfromarm(armcode: str, architecture: str) -> str: # Convert string of code to list of instructions instructions = list(itertools.chain(*[split1.split(";") for split1 in armcode.split("\n")])) unknownhex = "??" * 4 hexlist = [] for instruction in instructions: if instruction == "" or instruction.isspace(): continue if "0x" in instruction or "#" in instruction: hexlist.append(unknownhex) else: hexlist.append(armtohex(instruction, architecture)) # Hexlist is a list of 4 byte sequences, and we want our separator in between every byte, so we do this little # maneuver. aob = "".join(hexlist) # Unformatted return " ".join(getbytes(aob))
  4. Yesterday
  5. Anyone tried messing around with eggs of truths? Can they be modified directly (I'm guessing they are like soul eggs, so no)?
  6. Hi, Game name: Bloody ***** Google Play link: https://play.google.com/store/apps/details?id=com.tibith.badboxing Is the game free? Yes! I want to hack the level value to open all the classes But whenever i change it the game crashe!? But! If i change the level by one Like 21 to 22 it's okay! But if I want to open all the level the game crashe The coins in other hands is same thing but the values is saved even after crashed I tried encrypted value search, X4 search, F,D, Double same thing Any help?
  7. I think most of those clone apps just cause trouble, fill up with junk quickly, and games usually block them anyway. I’d rather stick to a clean, direct install.
  8. I need some help. I accidently add +25 or +50 (i forgot) Toto crystal when you save Mimi in Toto Theater World years ago. So i cant use warp immediately even after clearing Toto Theater World. Can you help solving me ? I don't know how to search it in Nopaew
  9. We cannot simply delete your account or posts without specific reasons. But I can hide your content if you prefer.
  10. Last week
  11. How can I speed up time, or get rewards for days I missed without logging in? Any ideas? I've seen values that decrease, possibly a countdown timer, but it doesn't change.
  12. For the new season points : UTF-8 ? ?
  13. Yeah thats true if you look for optimization more than simple arm patches and I really recommend it for hot functions
  14. I can hack it
  15. Pirates of the Caribbean TOW This game I am trying to hack since many years but till the date nothing gets back with game guardian of anyone can help please suggest me .. When I am hacking gold it shows increase for just few moments then it settles again as it is
  16. Looks pretty powerful you’ve got everything for Il2Cpp work: class lookup, dumping, field edits, and hooking. Personally, I’d say it’s great for learning and reverse-engineering, but I’d be careful using it on live games because of the legal and ethical side.
  17. View File Dead Ahead: Zombie Warfare Version: 4.2.3 Combat Menu • Zero Energy Cost • Instant Spawn • Global AoE Radius • Global Shield Boost • Global Critical Boost Player Menu • HighDamage • God Mode • Mission XP Boost • Item Bonus Extreme • Ad Coin Boost Bus Menu • Bus Invincibility • Bus Damage Boost • Minigun Damage Boost • Unlock Bus Upgrade Submitter xZeta Submitted 09/18/2025 Category LUA scripts  
  18. Two updates, it was unexpected I have updated the script, you can download it on the first page
  19. Using VMOS as a virtual Android 5.1 environment to run Game Guardian without rooting is a clever workaround. Makes it much safer for your main system and still gets the job done.
  20. View File Minecraft Survival Script ❥God Mode ❥Creative Fly ❥Fast Sprint ❥Jump Blocks ❥Item Hack ❥Water Speed On/Off ❥1 Hit Ender Dragon ❥1 Hit Wither ❥1 Hit Warden Submitter luckyday-999 Submitted 09/17/2025 Category LUA scripts  
  21. View File Power Zone Script ❥Epic Chest Free/1000000 Coins ❥Free Skins/Emotes/Lolli Hammer/Weapon Skins ❥Jump Height Slider ❥Low Gravity ❥Crouch Speed Slider ❥Pulse Constant High Damage ❥Nova Constant High Damage ❥Fov Slider ❥Camera Distance Slider ❥Teleport All Players Center Map ❥Teleport All Players Out Of Bounds ❥Glow Chams Submitter luckyday-999 Submitted 09/16/2025 Category LUA scripts  
  22. If anyone needs the video I can send
  23. **“Brothers, I need a little help. I want to make a level bypass function. The idea: Find the value using ClassName and Field Offset, but instead of a fixed edit, a prompt box should appear so we can enter our own value. That custom value will be applied, allowing us to reach the specific level we want. Example: Level bypass ClassName: Player Field offset: 0x3C If anyone can add this feature in the script, it will help not only me but also many others here. Thanks in advance ”**
  24. Hello bro can can you show me level up method?
  25. I have basic understanding of GameGuardian and how to use it ect, can change "values" but because it's a server sided game I can't do anything with said changed values. Was hoping someone here would be interested in trying it out and helping out Playstore Link: https://play.google.com/store/apps/details?id=app.fcdhzen.pirate.game APKPure Link: https://apkpure.com/pirate-glory-rising-era/app.fcdhzen.pirate.game
  26. View File Snake Battle Script Includes: Free Skins , Change Snake Default Length/Kill Score Submitter luckyday-999 Submitted 09/15/2025 Category LUA scripts  
  1. Load more activity
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.