Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation since 09/02/2025 in all areas

  1. Heroic level up without shards VID_20250925203244.mp4 Dino must at Level 40 = 3;10;Dino HP::17
    3 points
  2. @Kimastar Looks like that's just a visual change. You can't actually spend the currency.
    2 points
  3. If you edit the line 2 lines above then it adds much smaller amounts. Might be a way to go undetected. The 993 was my current money.
    2 points
  4. Version 1.0.0

    166 downloads

    Game Version: 2.19.760 SCRIPT MENU: • BattleBreaker • SoftGodMode • CritChance Boost • CritDmg Boost • AtkSpeed • FreezeEnemies • ParryBoost • OneHitStun • PhantomStrike • RangeAtk
    2 points
  5. Version 1.0.0

    108 downloads

    ❥Ruminant 999 Damage ❥Ruminant 999 Muzzle Velocity ❥Ruminant 999 Slow Motion ❥Ruminant 999 Zoom Time ❥Other Snipers Stat Editor
    2 points
  6. Version 2.0.0

    269 downloads

    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
    2 points
  7. Two updates, it was unexpected I have updated the script, you can download it on the first page
    2 points
  8. Version 1.0.1

    391 downloads

    Credits:Collen Luckyday999 Game Link - https://apkcombo.com/alto-s-adventure/com.noodlecake.altosadventure/ SCRIPT MENU: - UNLOCK SKIN - REMOVE ADS - DOUBLE COIN - HIGH JUMP - SPEED HACK - LOW GRAVITY - AUTO COLLECT 4 LAMAS - COOL CHAMS - BUY WING SUIT GET $$$ - INFINITE COIN
    2 points
    Not working after brawl stars update
    2 points
  9. Version 3.52.3-85531

    3,173 downloads

    *Only works for 64 bit devices* Script menu includes: - Coins,keys,tokens,etc. hack - Powerup hacks - Making in-app purchases free - Event hacks
    2 points
  10. Enter the skill level of the hero that is used in battle
    2 points
  11. Version v1.13.0

    882 downloads

    DIVE INTO THE EXCITING WORLD OF BLOCKFIELD, A CUTTING-EDGE PIXEL SHOOTER THAT TAKES THE THRILL OF FIRST-PERSON SHOOTER GAMES TO A WHOLE NEW LEVEL! WHETHER YOU’RE GEARING UP FOR A BRUTAL GUN SIMULATOR OR EXPLORING EPIC MISSIONS AND LOCATIONS, THIS BLOCK SHOOTER DELIVERS NONSTOP ACTION AND EXCITEMENT. OUR ONLINE MULTIPLAYER FPS COMBINES THE STRATEGIC INTENSITY OF TEAM GAMES WITH THE CREATIVITY OF PIXEL GAMES AND THE CHAOS OF KILLING GAMES. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - UNLOCK SKIN - FREE SHOPING - AIMLOCK - INFINITE AMMO - NO FIRE RATE - ONE HITKILL - NO RECOIL
    2 points
  12. No. Couldn't buy anything from the shop with it
    1 point
  13. Version 1.0.0

    136 downloads

    ❥Boomer No Cooldown ❥Boomer/Ak77 Range Editor ❥Slide Distance Editor ❥Lobby Hacks ❥Hack Coins don't set too high or banned
    1 point
  14. View File BLOCKFIELD SCRIPT MENU DIVE INTO THE EXCITING WORLD OF BLOCKFIELD, A CUTTING-EDGE PIXEL SHOOTER THAT TAKES THE THRILL OF FIRST-PERSON SHOOTER GAMES TO A WHOLE NEW LEVEL! WHETHER YOU’RE GEARING UP FOR A BRUTAL GUN SIMULATOR OR EXPLORING EPIC MISSIONS AND LOCATIONS, THIS BLOCK SHOOTER DELIVERS NONSTOP ACTION AND EXCITEMENT. OUR ONLINE MULTIPLAYER FPS COMBINES THE STRATEGIC INTENSITY OF TEAM GAMES WITH THE CREATIVITY OF PIXEL GAMES AND THE CHAOS OF KILLING GAMES. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - UNLOCK SKIN - FREE SHOPING - AIMLOCK - INFINITE AMMO - NO FIRE RATE - ONE HITKILL - NO RECOIL Submitter Collen Submitted 08/08/2025 Category LUA scripts  
    1 point
  15. Yes but problem is in website due to automatically embedded option because some time this is not working website need to add some manual things
    1 point
  16. View File Armed Heist Game Version: 3.2.10 SCRIPT MENU: • Godlike Heal • Regen Boost • High Damage • No Recoil Submitter xZeta Submitted 09/27/2025 Category LUA scripts  
    1 point
  17. Version 1.0.0

    484 downloads

    ❥God Mode Script Password 999 ❥Creative Fly ❥Fast Sprint ❥Speed Hack ❥Jump Blocks ❥Item Hack ❥Water Speed ❥Fly Speed ❥Head Rotate ❥Fov Slider ❥1 Hit Ender Dragon ❥1 Hit Wither ❥1 Hit Warden ❥1 Hit Iron Golem
    1 point
  18. Version 1.0.0

    121 downloads

    Game Version: 1.16.194 Player Enhancements Menu • HighDamage • RapidFire • BonusVelocity • FlyStep Rewards Boosters Menu • Mission Cash Boost • Mission Gold Boost Car Modifiers Menu • FullUpgrade • SpeedHack • BoostHack
    1 point
  19. Edit your eggs laid, narrow it down to 2 results and change them to 36.55Q You can also search shifts;resets:: then go to the address and the 5 addresses below are the TE you have for each egg
    1 point
  20. 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))
    1 point
  21. Version 9.0.0

    608 downloads

    ❥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
    1 point
  22. 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  
    1 point
  23. 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 point
  24. View File Bad 2 Bad: Apocalypse Game: Bad 2 Bad: Apocalypse Version: 3.4.0 Main Menu Weapons Menu • HighDamage (Wilder) • HighDamage (Furry) • HighDamage (Human) • HighDamage (Titan) • Fast Fire Rate • BulletStorm • NoRecoil • FastReload • InfiniteAmmo Enemies Menu • Fast Enemy Mobility • Freeze • Big Monsters Camera Menu • HighCamera • StableView Combat Menu • HighDamage (Player + NPCs) Player Menu • CombatPoint • DisableDurabilityLoss • EnemyLootBonus • FastMobility • SetMaxLevel Shops Menu • Free All Items (Support Supply Shop) • NoLimit • FreeTrade • EndlessItems Submitter xZeta Submitted 09/13/2025 Category LUA scripts  
    1 point
  25. Version 1.0.0

    216 downloads

    Game: Bad 2 Bad: Apocalypse Version: 3.4.0 Main Menu Weapons Menu • HighDamage (Wilder) • HighDamage (Furry) • HighDamage (Human) • HighDamage (Titan) • Fast Fire Rate • BulletStorm • NoRecoil • FastReload • InfiniteAmmo Enemies Menu • Fast Enemy Mobility • Freeze • Big Monsters Camera Menu • HighCamera • StableView Combat Menu • HighDamage (Player + NPCs) Player Menu • CombatPoint • DisableDurabilityLoss • EnemyLootBonus • FastMobility • SetMaxLevel Shops Menu • Free All Items (Support Supply Shop) • NoLimit • FreeTrade • EndlessItems
    1 point
  26. View File Prison Escape Script Includes: God Mode/Stat Editor , Gun Price Editor , Fly Hack On/Off , Speed Hack On/Off Game Link - https://apkcombo.com/prison-escape/com.wordmobile.prisonstorm/ note:fly hack is a bit buggy will fix in the next script update also enable the stats Hack in game after looking at the stats Submitter luckyday-999 Submitted 09/12/2025 Category LUA scripts  
    1 point
  27. I'm looking for ways to shorten the search
    1 point
  28. Hey APEXggV2the script works fine but with zombie head all hack work but the currency it wouldn't work by the way i am using bluestack and thanks for the script
    1 point
  29. I have a script for this game , enemy no attack, damage, energy, currency.. https://gameguardian.net/forum/files/file/4052-online-mega-script-v04-100-free-not-encrypted-new-scripts-added-dailyweekly-apexggv2/
    1 point
  30. 1 point
  31. My friend, I know this problem. The reason for this is that if you defeat someone who has a much higher attack power than you in arena or online battles, the system automatically detects it. So, if you defeat someone who has a very high combat power difference between you, the system detects you.
    1 point
  32. New Script Published .. V:1.1 good Work -- Added Behamot Bird And Fix Other Bugs. script İ tested in VMOS Virtual Rooted Android v7.1 x64bit Script Video (!) TilesSurviveEng1.1.lua
    1 point
  33. Here is a screenshot of what happens when you choose any option
    1 point
  34. Version 2.8100.8221551

    419 downloads

    Functions: • Skip the Current Level • Infinite Moves • Get Elements • Get Gold For emulators only x64 bit
    1 point
  35. Version v4.4.5

    273 downloads

    MASSIVE 100V100 UNIT BATTLES - BUILD AN ARMY AND WATCH YOUR TROOPS FIGHT IDLE-STYLE. PLENTY OF UNITS AND SKINS ENSURE ENDLESS FUN AT THE TOP OF MOBILE GAMING EXPERIENCES. BATTLE LEGION PLACES YOU AT THE TOP TIER OF ASPIRING COMMANDERS, AND AS YOU RANK UP THROUGH UNFORGETTABLE VICTORIES, SO DO YOUR LEGION AND ITS TROOPS. DM ME TO GET OPEN SOURCE VERSION. GAME LINK: APKCOMBO SCRIPT MENU: - HIGH DAMAGE
    1 point
  36. Just wait until next season is over. The packs are gone after it. Had the same problem. You can't play the gane until season is over, but you don't need to make a new account
    1 point
  37. function wol() -- do not have space for this u take error -- there wrong gg.searchNumber(' 3D;11D;2145D ', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) -- this is true gg.searchNumber('3D;11D;2145D', gg.TYPE_DWORD,false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber('2145', gg. TYPE_DWORD) local start = gg.getResults(1) local target = start[1].address + 0x520 -- (0×520 this write wrong u using a " * " not right this) gg.setValues({ address = target , flags = gg.TYPE_DWORD, value = 10}) gg.toast(' MISSION HACK ') gg.clearResults() gg.alert(" Play Denomination mission in easy level with Ace deployed") home = 1 end Try it out and if you get an error I'll help you. Also specify the memory range, this way your search will be more specific and faster.
    1 point
  38. Game So good And funny i hack all currency
    1 point
  39. Is there a way to unlock dinos from market? If yes... How? Thank you
    1 point
  40. Pistol bullets -> If n=X then -9+(n×3) Index is -9 (0 bullets) and 1 bullet = 3 I'm not sure if the index will be the same for other items, but you can find more in the same address range Gold -> f(n)= -1527+7n Index -1527 and 1 gold = 7 Emerald -> f(n)= -1279+3n Same logic... Search only one, they're close in range
    1 point
  41. Version 4.8.40

    10,272 downloads

    This Script For CPM2
    1 point
    Hello, the 12.6.5 version is not available and needs to be updated. Thank you!
    1 point
  42. 1 point
    Thanks Mario, you're the best. Big BOSS!
    1 point
  43. 1 point
×
×
  • 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.