When I get it out the game crashes
Spoiler:
//Weapon: Knife
//By: Sarge
ACTOR Knife : Weapon 25010
{
+MELEEWEAPON
+NOALERT
Inventory.PickupSound "misc/w_pkup"
Inventory.PickupMessage "You got the Gauntlets!"
AttackSound "weapons/gpunch"
Weapon.AmmoUse 0
States
{
Spawn:
KNPK A -1
Loop
Ready:
KNAT A 0 A_WeaponReady
Loop
Deselect:
KNAT A 0 A_Lower
Loop
Select:
KNAT A 0 A_Raise
Loop
Fire:
KNAT B 0 //A_PlayWeaponSound("weapons/kswing")
KNAT C 0 A_CustomPunch(6, 0, 0, "Puff")
KNAT D 0
KNAT E 0
KNAT F 0
Goto Select
}
}