Hi everybody!

Here's how to get the three new weapons in Duke Nukem:

In the file GAME.CON, replace the paragraph starting with
'actor STEROIDS' with these lines. They will replace the steroids with
the new weapons :)

Note that once you switch away from the new weapon, you can't reselect
it anymore...anybody know some code to do that?

actor STEROIDS
// NEW STUFF STARTS HERE, THE REPLACE THE STEROIDS

    fall
    ifmove RESPAWN_ACTOR_FLAG state respawnit
    else ifp pshrunk { } else ifp palive ifpdistl RETRIEVEDISTANCE ifcount 6 ifcanseetarget
    {
// UNCOMMENT THSESE LINES FOR THE TRIP BOMB - fully ok, looks cool!
        addweapon TRIPBOMB_WEAPON 100
        quote 58
        state getweaponcode

// UNCOMMENT THESE LINES FOR THE SHRINKER BEAM (NO GRAPHICS)
//        addweapon SHRINKER_WEAPON 100 quote 60
//        ifspawnedby SHRINKERSPRITE state getweaponcode
//        else state quikweaponget

// UNCOMMENT THESE LINES FOR THE FLAMETHROWER (NO GRAPHICS)
//        addweapon FLAMETHROWER_WEAPON 100 quote 59
//        ifspawnedby FLAMETHROWERSPRITE state getweaponcode
//        else state quikweaponget
      }
// HERE FOLLOW THE ORIGINAL STEROIDS CODE:
//    fall
//    ifmove RESPAWN_ACTOR_FLAG state respawnit
//    else ifp pshrunk { } else ifcount 6 ifpdistl RETRIEVEDISTANCE
//    ifpinventory GET_STEROIDS STEROID_AMOUNT ifcanseetarget
//    {
//        addinventory GET_STEROIDS STEROID_AMOUNT quote 37 state getcode
//    }
enda

