Page 1 of 1

Idle Weapon Sounds

Posted: Fri Oct 22, 2021 5:10 pm
by goldenmob72
Is there a way to add sounds to a Idle Weapon Pickup ?

No, I'm not talking about When Pickup sounds.

Re: Idle Weapon Sounds

Posted: Fri Oct 22, 2021 11:52 pm
by Blue Shadow
If you mean like the chainsaw, then there is [wiki=Weapon_properties#Weapon.ReadySound]Weapon.ReadySound[/wiki] property. If what you mean, however, a sound the weapon's pickup makes, then you can do this:

Code: Select all

Spawn:
    CSAW A -1 NoDelay A_StartSound("weapons/sawidle", CHAN_BODY, CHANF_LOOPING);
    Stop;

Re: Idle Weapon Sounds

Posted: Sat Oct 23, 2021 3:55 pm
by goldenmob72
Ty