Title | Member | Timestamp | Overall Score |
---|---|---|---|
Castaway. I prefered the sequel. | 03/15/2015 | 6 |
Link | Submitted By | Actions | |
---|---|---|---|
Game on Kongregate | Hack Bot | ||
Game On Newgrounds | gates | ||
Game On Armor Games | gates | ||
Game On Newgrounds | snkscorpio | ||
Game On Armor Games | Infinite999 |
CastawayAuto-PostLast Updated: 09/19/2012 02:29 | |
Castaway-migrated-Last Updated: 06/11/2011 10:40 | |
Castaway-migrated-Last Updated: 01/19/2011 00:43 |
5 | ||
Beetle Bashing |
||
Level up |
15 | ||
Questaway |
||
Complete any 5 quests |
30 | ||
Smooth Generator |
||
Activate the 6th generator |
Additional Info
|
Hey all. New game on Armor Game. Link is here (didn't forget it this time (broken image removed))
http://armorgames.com/play/5885/castaway Here are the AoB's: Get lots of EXP from enemies: 96 09 00 07 01 00 00 00 04 01 08 1d->96 09 00 07 01 00 00 00 04 32 08 1d (The only reason I'm able to do the above one is because the coding failed (broken image removed). The code was something along the lines of EXP=level*1*level+3 or something like that, so I just changed the *1 to *50 (broken image removed)) Better stats: 96 05 00 07 32 00 00 00 0d->96 05 00 07 32 00 00 00 0a Staying at the Inn adds money: 96 02 00 08 33 4e 96 02 00 08 07 4e 0b->96 02 00 08 33 4e 96 02 00 08 07 4e 0a Note: For the above, you need to have the minimum amount of money to stay at the inn. So, if you need 50g to stay at the inn, get 50g, stay at the inn and you'll get 50g more (broken image removed) Higher chance to get critical hits: 96 02 00 08 5e 52 96 05 00 07 64 00 00 00->96 02 00 08 5e 52 96 05 00 07 07 00 00 00 Do more damage: 96 05 00 07 05 00 00 00 0b 96 04 00 04 01 08 02->96 05 00 07 32 00 00 00 0a 96 04 00 04 01 08 02 Change all the results for them. Have fun hacking (broken image removed) |
Additional Info
|
Thanks...but, it doesn't work.
|
Additional Info
|
Quote from: "eliranisrael" Thanks...but, it doesn't work. Why not? You'll have to give me more information than "it doesn't work" if you want me to try and fix it |
Additional Info
|
I'm scaming for this AoBs, all of them, and it's find nothing.
|
Additional Info
|
Quote from: "eliranisrael" I'm scaming for this AoBs, all of them, and it's find nothing. No, sorry. They all work for me. Are you scanning for the AoB's before you press play for Castaway? So, refresh the page, and when the game loads, don't press anything, and then scan for the individual AoB's |
Additional Info
|
oohh...befor pressing play? ok..thanks!!
|
Additional Info
|
Quote from: "eliranisrael" oohh...befor pressing play? ok..thanks!! No problem (broken image removed). Have fun hacking (broken image removed) |
Additional Info
|
Uumm...it's still doesn't work.
Maybe it's something with the CE's settings? Or because i'm using Explorer 7? |
Additional Info
|
Quote from: "eliranisrael" Uumm...it's still doesn't work. Hmm... It shouldn't be CE's settings. Have you attached it to the right process? |
Additional Info
|
I pressed on "windows" > " Castaway............"
Is that wrong? |
Additional Info
|
Quote from: "eliranisrael" I pressed on "windows" > " Castaway............" What do you mean? What you should do is open CE, press the flashing computery thingy in the top left, and attach it to your browser, in this case, iexplorer.exe (NOTE: Make sure you've attached it to iexplorer.exe, not explorer.exe, as the latter is what your computer runs on, and hacking that could be VERY bad) After you do that, just scan for the AoB's (broken image removed) |
Additional Info
|
http://tinypic.com/m/a9yfiv/1
Ignore the little "avast" notice at the bottom-right, and the fact that I accidentally pressed Ctrl+V instead of Ctrl+C.... |
Additional Info
|
I pressed on this computer, but i have alot of iexpler.exe so i checked each one of them...and it worked.
Thank you! And i ment that on the process window, i pressed on windows list. Thanks! |
Additional Info
|
Whats AoB's? D: I am new to hacking T.t
|
Additional Info
|
Quote from: "NickRoxU" Whats AoB's? D: I am new to hacking T.t I'm in a generous mood today, so: AoB stands for Array of Bytes. A game is constructed by commands being sent to your computer, and those commands are made out of Bytes. In Cheat Engine, you can scan for 1 byte, 2 bytes, 4 bytes and 8 bytes. They're just a fancy way of saying how much data they can hold: I'm unsure about the rest, but 1 Byte can contain all values between 0 and 247. After that, it turns into negative values. Representing the values is the Hexadecimal system. What you call 10, is called 0a in Hexadecimal (Hex for short). 0 = 00 and 247 = F7. Notice that I only put the Hexadecimals with two digits per unit; that's 1 byte for you. Also be aware that some Hexadecimal numbers represent other Decimal numbers: Decimal's 100 is Hexadecimal's 64, for example. From here we can say that an Array of Bytes is constructed from a group of 1 byte units. For example: 96 07 a0 is an AoB with a length of 3: 3 pairs of 1 bytes. Since the commands are constructed from single Bytes, what AoB Hacking (Bytecode Hacking) does is taking an Array of Bytes from the game, and changing it. For example, if you have a command in the game that says "playerHP - damage", an Array of Bytes hack will take the bytes from that command, and change them, to let's say "playHP + damage". If you don't give a shit about any of the above, there's a tutorial here. Edit: I neglected something here. 2 bytes are represented by 3 digit units (e.g. 12C) 4 bytes are 4 digits (e.g. 13D6) 8 bytes are 5 digits (e.g. 13B9B) But don't take me by the word. |