Code: Select all
Execution could not continue.
Script error, "revolver.wad:DECORATE" line 15:
Unexpected 'weapon/gigafart' in definition of 'Revolver'
Code: Select all
ACTOR MRL: DoomPlayer
{
Player.WeaponSlot 1, Fist, Revolver
}
ACTOR Revolver: Weapon
{
Weapon.SelectionOrder 50
Weapon.AmmoUse 1
Weapon.AmmoGive 100
Weapon.AmmoType "Clip"
Inventory.PickupSound "weapon/click"
Inventory.PickupMessage "You Got a totally super normal revolver, trust me! i'm not lying!"
AttackSound = "weapon/gigafart"
States {
Spawn:
RRVL A -1
Stop
Select:
RRVL A 1 A_Raise
Loop
Deselect:
RRVL A 1 A_Lower
Loop
Ready:
RRVL A 1 A_WeaponReady
Loop
Fire:
RRVL A 3
Goto Ready
}
}