BaseMM8BDMCustWep is more or less functionally equivalent to [BaseMM8BDMWep](<https://mm8bdm.notion.site/BaseMM8BDMWep-8cc600ca63704fd59c44528ca4060cac>), it is just designed to be inherited from for weapons intended to be used by classes which inherit from [CustWepClassBase](<https://mm8bdm.notion.site/CustWepClassBase-6e611b72560446bbbdca59d11f19bcf8>) as they cannot normally use the latter type of the weapon.

DECORATE Definition

<aside> 🚨 Wait! Stop! Before you copy this actor's definition into your mod, remember the following things:

actor BaseMM8BDMCustWep : BaseMM8BDMWep
{
	Weapon.AmmoUse 0
	Weapon.AmmoGive 0
	Weapon.ammotype "BusterAmmo"
	Dropitem ""
	Inventory.ForbiddenTo ""
	Inventory.RestrictedTo "CustWepClassBase" //helpful with "Give Weapons"
	+INVENTORY.UNDROPPABLE
}

See Also


Creating Weapons

Creating Classes

BaseMM8BDMWep