Primary
-migrated-
Re: Primary Posted on: 11/26/2010 12:11am
Quote Post
Quote from: "That_Guy"
Quote from: "dandadude"
Quote from: "-Thompson-"
Hacked .sol from me, all lvls completed.
Just replay the boss fight with the invisibility AoB then you'll get the hard badge

How do I defeat the last boss? :evil:


The blue guy FREEZE, red MAGMA. Put an ice block in front of of the Overlord as FREEZE, when he does the GROUND SLAM (blue target appears next to him). When he gets his hands hurt from the ice block, flame his back with MAGMA, repeat this 3 times

to do so u have to go invisible with the yellow guy. otherwise the boss gets not enraged. after a short invisible time a blue cross will appear next to him. then do like that_guy said - ice and fire
Re: Primary Posted on: 11/26/2010 7:24pm
Quote Post
FYI I noticed a couple of weird things using the invincibility AOBs above. First, it's true that it disables wall slides, but the little guy can cling to walls as if they were corners. Also, if you fall on those black spots on the floor you go through them into the grey background (and are probably stuck there).

EDIT: the wall-cling thing appears to work only on some levels.
Re: Primary Posted on: 11/27/2010 8:04am
Quote Post
The wall cling works in intervals, basically a full jump, but you can't grab on to the bottom corners, which makes level 16 impossible with the invincibility.
Re: Primary Posted on: 11/27/2010 11:49am
Quote Post
Quote from: "-Thompson-"
Quote from: "That_Guy"
Quote from: "dandadude"
Quote from: "-Thompson-"
Hacked .sol from me, all lvls completed.
Just replay the boss fight with the invisibility AoB then you'll get the hard badge

How do I defeat the last boss? :evil:


The blue guy FREEZE, red MAGMA. Put an ice block in front of of the Overlord as FREEZE, when he does the GROUND SLAM (blue target appears next to him). When he gets his hands hurt from the ice block, flame his back with MAGMA, repeat this 3 times

to do so u have to go invisible with the yellow guy. otherwise the boss gets not enraged. after a short invisible time a blue cross will appear next to him. then do like that_guy said - ice and fire

Thank you -Thompson- and That_Guy for helping me beat the last level (broken image removed)
Re: Primary Posted on: 10/01/2012 9:07pm
Quote Post
Slightly higher jump
96 0b 00 08 27 06 99 99 11 40 9a 99 99 99 1d 96 0b 00 08 28 06 99 99 11 40 9a 99 99 99
96 0b 00 08 27 06 00 00 24 40 00 00 00 00 16 96 0b 00 08 27 06 00 00 24 40 00 00 00 00

Code: [Select]
//96 0b 00 08 27 06 99 99 11 40 9a 99 99 99
_push "jump_speed" 4.4
//1d
_setVariable
//96 0b 00 08 28 06 99 99 11 40 9a 99 99 99
_push "jump_speed_max" 4.4

Note to self:

96 - push
0b 00 - 11 bytes
08 - constant pool
27 - position in constant pool
06 - double
99 99 11 40 9a 99 99 99 - value

Bit converter: http://babbage.cs.qc.cuny.edu/IEEE-754/

Input into calculator: 4.4
Output: 401199999999999A

By comparison, bits are ordered in this manner: 4 3 2 1 8 7 6 5

Value of 10: 4024000000000000 or 40 24 00 00 00 00 00 00

New value reordered: 00 00 24 40 00 00 00 00

96 0b 00 08 27 06 00 00 24 40 00 00 00 00 16 96 0b 00 08 27 06 00 00 24 40 00 00 00 00