Wolfenstein 3D Wiki
Advertisement

The Fake Hitler is a mannequin of Adolf Hitler suspended by pulleys with a flamethrower mounted in its chest that guards Hitler's final defenses.

Tactics[]

The Fake Hitler has a lot of hitpoints and is capable of dealing a lot of damage, being closer to a miniboss than a normal enemy.  Because it has no flinch state once alerted it is always pursuing the player and ready to attack, so concentrated fire isn't always the best approach.  Instead the player should always be nimble and make sure they have room to strafe out of the way of the Fake Hitler's attacks at a moment's notice.

The Fake Hitler's flamethrower shoots a stream of eight fireball projectiles in a row which deal devastating damage if the player collides with them.  The fireballs can be blocked by impassible objects such as tables and columns, so firing upon a Fake Hitler from behind one of these objects is a good vantage point for the player.

Due to how they are programmed, the speed of the fireballs is linked to the CPU cycles of the computer running. On computers with lower CPU cycles the fireballs travel much further in much less time, whereas computers with higher CPU cycles will see the fireballs grouped closely together and slowly crawling across the room. Unfortunately this can make the Fake Hitler's attack trivial and ruin what would otherwise be a tense battle.

Because the Fake Hitler does not drop ammo it is imperative that mappers populate a map which houses a Fake Hitler with plenty of extra ammunition pickups. Attacking a Fake Hitler with a knife is impractical, so each battle will drain a player of many bullets.

Official Hint Book Description[]

From The Official Wolfenstein 3D Hint Book:

Adolf appears in three guises here. The first is a dummy in scary black robes, flown around on wires, with a flamethrower mounted in its chest. As you dispatch these, they fall to the ground and you can hear Adolf's mocking laugh.

Trivia[]

  • The Fake Hitler's outfit and attack method are likely a reference to Nemesis, the antagonist of id Software's previous first person game Catacombs 3D.

ECWolf DECORATE Definition[]

actor FakeHitler : WolfensteinMonster 18
{
    points 2000
    health 200, 300, 400, 500
    speed 1, 3
    missilefrequency 0.01
    deathsound "fake/death"
    seesound "fake/sight"
    +AMBUSH
    states
    {
        Spawn:
            FAKE A -1 NOP A_Look(0, 0, 0, 0, 360)
            stop
        See:
            FAKE A 5 NOP A_Chase("*", "*", CHF_BACKOFF)
            FAKE A 1.5
            FAKE B 4 NOP A_Chase("*", "*", CHF_BACKOFF)
            FAKE C 5 NOP A_Chase("*", "*", CHF_BACKOFF)
            FAKE C 1.5
            FAKE D 4 NOP A_Chase("*", "*", CHF_BACKOFF)
            loop
        Missile:
            FAKE E 4 bright A_FaceTarget
            FAKE EEEEEEEE 4 bright A_CustomMissile("FireBall")
            goto See
        Death:
            FAKE F 5 A_Fall
            FAKE G 5 A_Scream
            FAKE HIJ 5
            FAKE K -1
            stop
    }
}
Advertisement