LOSE_BENEFIT

Usage:
LOSE_BENEFIT <benefit> [amount]

Description:
Use this to take away ammo, weapons, powerups etc. from the player.

Details:
<benefit> is the type of benefit to take from player (ammo names, armour types, keys, and weapons).

[amount] is how much of the benefit to be taken, and is only required in the case of ammo types, armour and powerups. The amount must be enclosed in ().

See Also:
GIVE_BENEFIT has some examples of benefit names.

Example:

RADIUS_TRIGGER 0 0 -1
  TAGGED_USE

  TIP "You lose a chaingun, 50 bullets and a blue key!"
  LOSE_BENEFIT CHAINGUN
  LOSE_BENEFIT KEY_BLUECARD
  LOSE_BENEFIT BULLETS(50)

END_RADIUS_TRIGGER