Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • 0
Moo Moo Armageddon

error with my custom weapon

Question

it says "Execution could not continue. 1 errors during actor postprocessing"

what does that mean

here's the code I made: 

 

 

ACTOR DoomSlayuh: DoomPlayer {
 Player.WeaponSlot 1, Fist, Chainsaw
 Player.WeaponSlot 2, Pistol
 Player.WeaponSlot 3, Shotgun, TuperThotgun
 Player.WeaponSlot 4, Chaingun
 Player.WeaponSlot 5, RocketLauncher
 Player.WeaponSlot 6, PlasmaRifle
 Player.WeaponSlot 7, BFG9000
}

ACTOR TuperThotgun: Weapon Replaces SuperShotgun 20000 {
      Weapon.SelectionOrder 50
      Weapon.AmmoUse 4
      Weapon.AmmoGive 20
      Weapon.AmmoType "Shell"
      
      Inventory.PickUpSound "weapon/gettshot"
      Inventory.PickUpMessage "lol you got a totally tubular Tuber ThotGun"
      
      
      
      
      States {
      
      Spawn:
      SHOT A -1
      stop
      
      
      Select:
      TSHT A 1 A_Raise
      loop
      
      Deselect:
      TSHT A 1 A_Lower
      loop
      
      Ready:
      TSHT A 1 A_WeaponReady
      loop
      
      
      Fire:
      TSHT ABC 4
      Goto Shoot
      
      
      Shoot:
      TSHT C 0 A_PlaySound ("weapon/shoottshot",CHAN_Weapon, 0.7)
      TSHT C 0 A_Recoil (10)
      TSHT C 5 A_FireBullets (6,0,2,16,"BulletPuff")
      TSHT C 0 A_Refire ("Shoot")
      goto Ready
      
      
      }
}

Share this post


Link to post

1 answer to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×