Not playing death sounds?

Archive of the old editing forum
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Locked
User avatar
Jeimuzu73
Posts: 1667
Joined: Sun Jul 03, 2011 8:44 pm
Location: Dropping today in Station Square.

Not playing death sounds?

Post by Jeimuzu73 »

I've encountered a strange error when trying to code enemies. When the enemies die, sometimes they scream and sometimes they don't. How do I fix it?
Spoiler:
Blue Shadow
Posts: 5046
Joined: Sun Nov 14, 2010 12:59 am

Re: Not playing death sounds?

Post by Blue Shadow »

Your dgrscream and dprscream sounds (files/lumps) have a file name length that exceeds the length limit of 8 characters (they're 9-character long).

If you're using the ZIP/PK3 structure for your mod and you don't want to reduce the file name's length, you can use long names, provided you specify the path and extension of the sound file. Example:

Code: Select all

dgrscream "sounds/enemies/screamymonster/dgrscream.ogg"
Locked

Return to “Editing (Archive)”