Additional Info
|
Hi,
I'm trying to make my own aob hacks.. just for fun sakes : ) Now I'm trying to do it on the game solipskier, there already exists one that makes sure only tunnels appear.. (and sometimes a kill gate..) Anyway what I wanted to try was make it so that the game is as normal BUT you ALWAYS get a perfect tunnel whenever you have hit the tunnel.. So what I did was search the function that handeled the tunnels in the Main part of the actions dir (calling it a dir cause it comes in handy to do that :p ) in the swf file.. Code: [Select] public function tunnelGateHit() : void Code: [Select] Now what I did was change these lines: Code: [Select] //24 28 to Code: [Select] //24 00 So then: Code: [Select] if (perfectTunnelCount == 40) Should be changed to: Code: [Select] if (perfectTunnelCount > 0) This gives: 24 28 14 06 00 00 24 00 0e 06 00 00 So I open cheat engine, load the game in firefox.. Search the first aob, find it.. double click it, edit the value and change it to the second aob.. I go into a tunnel.. Now every hit should give a perfectTunnel()... But it doesn't.. Any ideas? I'd really like to learn : ) |
Additional Info
|
did you try
Code: [Select] //24 00 in other wordsCode: [Select] var _loc_2:* = perfectTunnelCount + 1; but try this guy try this guy set count to 40 and then proceed to not give a damn what its value is. d0 30 60 4c 24 00 0e 09 00 00 5e 4c 60 4c 2f 10 a0 68 4c 5d 51 2a d5 66 51 c0 d6 d1 d2 61 51 08 02 08 01 60 22 4f 87 03 00 60 51 24 28 14 06 00 00 60 22 4f 8b 03 00 47 d0 30 60 4c 24 00 0e 09 00 00 5e 4c 60 4c 2f 10 a0 68 4c 5d 51 2a d5 24 28 02 d6 d1 d2 61 51 08 02 08 01 60 22 4f 87 03 00 60 51 24 28 14 00 00 00 60 22 4f 8b 03 00 47 Code: [Select] //d0 also without looking I would presume you would need to look at the score keeper tunnel functionas well as well I use this AoB tool to make all the AoBs I post. Try the online version if you dont feel like downloading it. |