Additional Info
|
Hi can anyone tell me how to make key hacks for flash games
|
Additional Info
|
What? Can you phrase it differently, key hacks are what and what games you want to hack?
Plus moved to help. |
Additional Info
|
Your post is synonym to "Hi doctor can you give me medicine"
|
Additional Info
|
Quote from: "VxD" What? Can you phrase it differently, key hacks are what and what games you want to hack?Probably something like press "1" for max health or something like that crap. Flash .sol locations |
Level: 1
ADR Info
Additional Info
|
No response. What a douche... (broken image removed)
|
Additional Info
|
Sorry fellows for not mentioning in brief.
Quote from: "blahblahman"
I mean the same which blahblahman mentioned. Can anyone tell me how this can be done, what are the methods to be followed |
Level: 1
ADR Info
Additional Info
|
Seriously?
What language are you programming in? What are you really trying to do? Can you please make some damn sense and give us some more info than "How do I shot h4x?" Anyway, use the OnKeyDown / OnKeyUp / OnKeyPress events.
|
Additional Info
|
I bet he's talking about making trainers or something.
|
Additional Info
|
I am not using any programming language till now, using flasm, sothink & hex editor.
Check this link below you might understand what i am asking you or else preloaders, After the game is loaded user can press some pre defined keys (like h-max health, m-money, l-lives etc) Code: [Select] http://www.prehackshub.com/arcade/3672/Red-Dragon-Rampage.html I tried to decompile using sothink and after modifying script in flash when i am exporting the movie (.swf) I am getting compile errors. Atleast now if you understand what i have been asking can you tell me any alternate way to do this. |
Additional Info
|
Use a decompiler and a hex editor.
I found this in the original SWF: Code: [Select] if (Key.isDown(70) && healdragon == false && _root.hp > 0) And this in the hacked SWF: Code: [Select] if (Key.isDown(70) && healdragon == false && _root.hp > 0) Read a couple of tutorials and follow these instructions. How to hack the game: Find: --_root.numhppacks; Replace with: NOP Find: _root.numhppacks > 0 Replace with: _root.numhppacks < 100 |
Additional Info
|
I tried to decompile using sothink and after modifying script in flash when i am exporting the movie (.swf) I am getting compile errors.
I tried to use Routers Prehack-Trainer maker but with this tool also i am getting errors. Is there any alternate way I can make these keyhacks/ preloaders |
Additional Info
|
Wasn't there a tutorial once for hacking games with HxD?
1)Open game with SoThink 2)Find the part of the game KH told you about, and then find it in Raw Data mode 3)Copy pasta the bytecode you want to change from SoThink to somewhere else (like Notepad.) 5)Filter out the unneeded text to make the AoB you want e.g. //66 09 a0 _as3_getproperty foo //c1 _as3_decrement_i //61 09 a0 _as3_setproperty foo turns into 66 09 a0 c1 61 09 0a 6)Copy pasta the AoB you found to a line below, and change it there to the desired outcome 7)If you want to just play the hacked game online, go to the game in your browser, and then use Cheat Engine with your AoBs 8)If you want to make a prehack, it's a little more complex: 8a)Get HxD 8b)Open the game in HxD (make sure the game's decompressed.) 8c)Hit Ctrl+F, change Datatype to Hex-values 8d)Search for your original AoB 8f)Replace match(es) with replacement AoB 8g)Hit Ctrl+S 8h)Enjoy playing your prehacked game If you don't know how to do any of the above, read our tutorials. There are plenty. |
Additional Info
|
Sorry to say this but i am not happy with the replies i got here
|
Additional Info
|
Quote from: "kavya" Sorry to say this but i am not happy with the replies i got hereIf you have trouble following our instructions, please read some of our tutorials: viewtopic.php?f=30&t=664 viewtopic.php?f=30&t=2104 viewtopic.php?f=30&t=678 |
Additional Info
|
Quote from: "kavya" Sorry to say this but i am not happy with the replies i got here Well, you havent been very good at asking specifically want and from what i can gather, most of the ones replying are just doing so based on what they think you might be looking for. From what i can tell, you are trying to make a game that already has the hacks in it. If thats correct, I have found that using yogda works quite nicely (broken image removed) do a forum search and check that out. OR Are you trying to modify a .swf file to make it so that when you press certain keys on your keyboard, it triggers a variable change. For example: In the game Bullet heaven you start out with three lives. After you get hit three times, you die. So if you get down to 1hp, you are trying to make it so that when you hit "h" it automatically refills your HP bar. Is that correct? |