Wolfenstein 3D Wiki
Advertisement

Score items, or treasures, are pick-ups which can be collected and contribute to the player's score as well as count toward the level's item tally bonus. They come in 4 varieties in each game which give different amounts of score relative to their value.

The Items[]

Wolfenstein 3D and Spear of Destiny[]

In Wolfenstein 3D and Spear of Destiny the score items are various Nazi treasures stashed away in the levels. Their score is obviously a reflection of their monetary value.

Mission Packs[]

In the Spear Mission Packs (Lost Episodes) the score items are military tech which the player steals from the Nazi labs, making their score more of a reflection of how much their collection would aid the allies in the war.

ECWolf Decorate Definitions[]

actor Cross : ScoreItem 62
{
    inventory.amount 100
    inventory.pickupsound "treasure/cross/pickup"
    states
    {
        Spawn:
            CROS A -1
            stop
    }
}
actor Radio : Cross 146
{
    states
    {
        Spawn:
            RDIO A -1
            stop
    }
}

actor Chalice : ScoreItem 63
{
    inventory.amount 500
    inventory.pickupsound "treasure/chalice/pickup"
    states
    {
        Spawn:
            CHAL A -1
            stop
    }
}
actor Plutonium : Chalice 147
{
    states
    {
        Spawn:
            PLUT A -1
            stop
    }
}

actor ChestofJewels : ScoreItem 64
{
    inventory.amount 1000
    inventory.pickupsound "treasure/bible/pickup"
    states
    {
        Spawn:
            JEWL A -1
            stop
    }
}
actor ControlPanel : ChestofJewels 148
{
    states
    {
        Spawn:
            CPNL A -1
            stop
    }
}

actor Crown : ScoreItem 65
{
    inventory.amount 5000
    inventory.pickupsound "treasure/crown/pickup"
    states
    {
        Spawn:
            CRWN A -1
            stop
    }
}
actor Bomb : Crown 149
{
    states
    {
        Spawn:
            BOMB A -1
            stop
    }
}
Advertisement