Additional Info
|
well, i dont know, it still might be frustraiting. And i dk which is easier. Lock it or raise the max
EDIT: According to that site, i am in top 20. Meh, i am so cool |
Additional Info
|
Both should be easy - you can change the code to read:
Code: [Select] if (_root.totalDeaths < 65535) Which'll be:96 05 00 07 15 00 00 00 => 96 05 00 07 ff ff 00 00 or, to make it definite: Code: [Select] if (_root.totalDeaths > 0) Which'll be:96 05 00 07 15 00 00 00 48=> 96 05 00 07 00 00 00 00 67 BTW This is for Stickya Adventurya. |
Additional Info
|
damn damn damn, i used second hack, passed game and no medal for less than 20 deaths
|
Additional Info
|
Yeah I made a mistake - now corrected - sorry.
I've just beaten the game with all medals (I hate this game, bad collision detection and imprecise controls == annoying). The hacks I used were: Alter total deaths: 96 05 00 07 15 00 00 00 => 96 05 00 07 ff ff 00 00 Kill one bunny to kill all: 96 02 00 08 02 4e 49 12 => 96 02 00 08 02 4e 48 12 I also used a hack to change the points I got for a correct result from the Guitar Hero battle (as I could never beat it on skill alone) and a hack to switch off collision detection for some of the balls. Unfortunately I closed the window down before saving them... |
Additional Info
|
well, passed it, finally, so only Red Moon is resisting. Then, well, try to find out how to earn Seed of destruction medals, most importantly that idiotic duo of medals. Litterate and Illiterate
|
Additional Info
|
You want to hack that? Wouldn't that be a tad bit obvious?
I remember hearing somebody had both, but thats only because they glitched it at the beginning... I think if you get the other one now it wouldn't look very good lol |
Additional Info
|
it is possible when you have two browsers open, but i can always call it glitch in game and pass the judgement xD
|
Additional Info
|
Not if you already have one of the medals though....
Does that glitch not only apply to people who tried the glitch when they first played the game? Would look a little suspicious thats all |
Additional Info
|
deity wont mind this one
96 0b 00 00 6c 69 66 65 00 07 0a 00 00 00 96 0b 00 00 6c 69 66 65 00 07 FF 00 00 00 health =/= 10 health = 255 change only first result = you are almost invinsible, enemies suck. Just dont fall into pit, you will die Red moon btw EDIT Energy 96 0d 00 00 65 6e 65 72 67 79 00 07 64 00 00 00 96 0d 00 00 65 6e 65 72 67 79 00 07 FF 00 00 00 not tested yet |
Additional Info
|
Kind of helpful i guess. Although im sure the problem most people have is the same as mine. That stupid level where you need to time your jumps perfectly to make it through without falling in the pit.
|
Additional Info
|
well, then we need to wait for almighty deity to solve our problem. Noclip hack would rock their world
|
Additional Info
|
There is a death counter in Red Moon, so.. let's see..
Straightup stuff. Code: [Select] onClipEvent (enterFrame) Byte stuff. Code: [Select] { Which is the first chunk- this is the second chunk.. It's either really huge, or I'm doing it wrong. Code: [Select] { This part is interesting: _push "_root" //1c _getVariable //96 02 00 08 07 _push "deathCounter" //4e So we do have a deathCounter, eh? Award6 is how it is stored in the SOL file for Deity, unless the author has changed that since the game came out. (Haven't played RM in months.) |
Additional Info
|
You've got all the bits - you just need to put it together: Code: [Select] //96 02 00 08 07 If the important bit, basically it goes get deathCounter, put it on the stack, put 0 on to the stack. Pop the two values off the stack and if they're equal, push true on to the stack (or false if they're not equal). Duplicate the top of the stack and invert it (i.e. true = false and false = true). If true then just out of the if, if false continue. Now we want deathCounter to be >= 0 and to continue with the if (i.e. not be true by the if ... goto statement). So we need the comparison to end in a true state on the stack (so the not will turn it to a false). Therefore if we change equals2 to be > (67), we get the result we want. Of course we could always NOP out the not (i.e. change the 12 to 02). |
Additional Info
|
okay, sounds better than mine, but how to do it?
Also, i need only 7 games to get Knightfall 2 (problematic) Lastman (very problematic) Dadgame (for some reason, ninja medal isnt appearing, need to try playing whole game and killing him) Pirate Golf Adventure (250k points is above my reach) Drop the Bomb (need 10 rolls without bomb and 3 bombs in 3 turns) Seed of Destruction (this is getting on my nerves) Red Moon (this thread is about it, so lets hope for best) Also, if you could somehow get Shift 4, Epic war 3 broken medals, it would make my collection full |
Additional Info
|
Hah; I've got about one hundred to get (in the top 70 at the moment). So many medals, not enough time...
|