Additional Info
|
I mean I really don't care, it's just that my friend requested that I don't post them so he has the advantage.. he doesn't seem to be playing very often:
Code: [Select] Godmode(UNDETECTABLE) And great job to anyone who managed to crack my hash function. I will be posting more cheats using the same function in the future. |
Additional Info
|
If anyone cares: here is the RawData/SourceCode of the AoBs and where to find them.
Godmode d0 66 c3 01 d0 66 e5 04 4f 91 1f 02 62 08 d0 66 c5 04 62 0f d0 66 95 d1 d0 66 c3 01 d0 66 e5 04 4f be 21 03 27 48 02 38 28 c1 98 7a b4 0d Action > com > company > assembleegameclient > objects > Projectile _-LB.gs_.gsc_.playerHit(this.bulletId_, this.ownerId_); Code: [Select] //d0 Sniper 62 06 62 05 66 b2 06 24 00 62 05 66 b2 06 Action > com > company > assembleegameclient > objects > Projectile if (_loc_6 <= _loc_5.radius_) Code: [Select] //62 06 [hr:1tke63er][/hr:1tke63er]76 12 49 00 00 62 07 76 12 49 00 00 24 00 Action > com > company > assembleegameclient > objects > Projectile No useful SourceCode. Code: [Select] //76 Always Max 62 0b 66 83 03 66 a9 29 62 0b 66 83 03 66 c7 28 Action > com > company > assembleegameclient > objects > Player _loc_13 = int(_loc_11._-Dy.MinDamage); Code: [Select] //62 0b This post was imported from an account that no longer exists! Previous Name: phreneticus |
Additional Info
|
My biggest gratitude Imk0tter, Phreneticus, and everyone else who has helped.
|
Additional Info
|
Can someone tech me how to hack mad god?
im very noob in this, so please can someone explain me thanks |
Additional Info
|
Well, just got 2x characters deleted using these hacks. Enjoy everyone.
|
Additional Info
|
Detected (broken image removed). Also we need not projectile-type god hack but a hitbox one. Hitbox hacks are undetectable.
|
Additional Info
|
I don't get it. It says the Godmode AoB got replaced in HXD, the program I use, but it doesn't work anymore. The game didn't update either. Is this happening for others as well?
|
Additional Info
|
Quote from: "TokyoDriftz" I don't get it. It says the Godmode AoB got replaced in HXD, the program I use, but it doesn't work anymore. The game didn't update either. Is this happening for others as well?Server looks like change the code! the AoB doesn't work now ! Although it still show no damage but your Hp will decrease like normal player |
Additional Info
|
How the hell do you crack hashes?
|
Additional Info
|
Well Its all cryptography... which I do not know so much of since I do not have the tools for this...
also can someone tell me what is an AoB? |
Additional Info
|
Code: [Select] Godmode/Instant Damage(UNDETECTABLE) Must use with instant damage hack (bottom two sets of AoB's) Must use with at least one other player on the map Try not to get swarmed by sprite gods.. the more enemy continuous shots on the screen, the more likely you are to get deleted |
Additional Info
|
Replaced the AoB's for godmode and insta damage still didn't work... Am I doing something wrong here?
|
Additional Info
|
Here's a quick explanation on how the cheat was created (posted this on another forum before here after some people asked how I 'found' the AoB's)
Well basically if you're familiar with java bytecode, this should come fairly simple to you.. All the hex values that you are searching for/replacing represent AVM2 bytecode. The only difference between editing java bytecode and flash bytecode is the fact that you inject the bytecode into class files with java, and in flash, you inject the code into memory. Here's an example of the godmode hack: Code: [Select] //62 05 What this code translates to is: Code: [Select] if (_loc_5 == _-LB.player_) in other words, if loc_5 is equal to your player, then it returns your player (this is in the function -0A in the projectile class which handles the collision detection, and returns any object the that the current projectile is in range of (in order to damage it)) what I did was I changed the code to look like this: Code: [Select] if (_loc_5 == _-LB.player_) { and what we end up with is this Code: [Select] //14 03 00 00 Basically what this modification does is it skips your players object when searching for objects to collide with, and registers the hit on the next object that the projectile is in range to collide with. Unfortunately, due to recent updates, this alone isn't enough to create a no-damage hack.. Through some form of magic, the server is capable of knowing if the projectile has collided with your player even if your player doesn't send a playerHit packet. I'm fairly sure it has to do with the SHOOTACK packet, but i'm not entirely sure.. Anyway, the simple hack around for this is to make sure every enemy shot fired collides with an object around you (which generates an otherHit packet), which is exactally what happens when you take the range checks out.. if you take the range detection out, the projectile collides with the nearest object, regardless of range (except for your own player, if you use the cheat above (broken image removed)) Code: [Select] //62 06 Basically what this does is it compares the distance between the projectile and the current object in the iteration (both x and y seperately), and if they're not in range, then the function continues. What we could do to make this simple is modify the values that the distances get compared to, put them to 0, so that way it looks like: Code: [Select] if (_loc_5.radius_ < _loc_6) { and you end up with this bytecode Code: [Select] //24 00 Hopefully this helps you understand how to find/create AoB's for flash games (AS3 in specific since AS1-2 operate on the AVM1 bytecode engine which uses a completely different format) If you have any questions, just post them here, and sorry for the overuse of the term 'basically' NOTE: In case you were wondering, this method completely differs from any other methods i've used in the past (all of which have been patched thanks to these forums (broken image removed)) This one in particular isn't easy to patch due to the fact that some compromises have to be made (server-side projectile deletion based on when a player tells the server that THEY've been hit, or the simpler more direct route, server-side range-checked collision detection) which is why I've chosen to post it. |
Additional Info
|
These still work with the 110 build?
|