It could be implemented someway in a mod or something
On an unrelated note, does anybody else find it awkward talking to a friendly NPC while holding a gun up to their face?
Spoiler:
Moderator: GZDoom Developers
Spoiler:
Code: Select all
class NullWeapon : Weapon
{
Default
{
+INVENTORY.UNDROPPABLE
+WEAPON.NOALERT
Weapon.SelectionOrder 99999; // Make this absolutely last in weapon priority
}
States
{
Select:
TNT1 A 1 A_Raise;
Loop;
Deselect:
TNT1 A 1 A_Lower;
Loop;
Fire:
Ready:
TNT1 A 1 A_WeaponReady(WRF_NOFIRE);
Loop;
}
}