When I type the cheat to give you all the weapons the BFG isn't there. I can get it the first time by typing "give bfg13" in the console, but why won't it just replace the BFG? (strangely the cheat doesn't even give you the default BFG :/)
Here's my decorate code:
Code: Select all
ACTOR BFG13 : Doomweapon replaces BFG9000
{
Height 20
Weapon.SelectionOrder 2800
Weapon.AmmoUse 2
Weapon.AmmoGive 80
Weapon.AmmoType "Cell"
+WEAPON.NOAUTOFIRE
+WEAPON.NOAUTOAIM
Inventory.PickupMessage "You got the BFG 13k!!!"
States
{
Ready:
BFGG A 1 A_WeaponReady
Loop
Deselect:
TNT1 A 0 A_Light0
BFGG A 1 A_Lower
Loop
Select:
BFGG A 1 A_Raise
Loop
Fire:
BFGG A 20 A_BFGSound
BFGG B 10 A_GunFlash
BFGG BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB 1 A_FireOldBFG
BFGG B 10 A_FireBFG
BFGG B 20 A_ReFire
Goto Ready
Flash:
BFGF A 10 Bright A_Light1
BFGF B 10 Bright A_Light2
BFGF A 10 Bright A_Light1
BFGF B 10 Bright A_Light2
BFGF A 10 Bright A_Light1
Goto LightDone
Spawn:
BFUG A -1
Stop
}
}

