If you read what the compiler tells you then you could quickly find this stuff on your own.
Code:
Error: Multi-dimensional arrays must be fully initialized on line 17
Error: Undefined symbol "vomit_sounds" on line 129
Error #1
You cannot do this:
PHP Code:
new const explode_sounds[ 3 ][ ] = "zombie_plague/explo_medium_09.wav"
If you define an array that is pre-polulated, you must fully populate every string. Replace with:
PHP Code:
new const explode_sounds[ ] = "zombie_plague/explo_medium_09.wav"
You then need to adjust functions that use this:
PHP Code:
emit_sound( id, CHAN_STREAM, explode_sounds, 1.0, ATTN_NORM, 0, PITCH_HIGH )
Error #2
vomit_sounds does not exist. You either need to define it, or comment it out.
PHP Code:
//emit_sound( id, CHAN_STREAM, vomit_sounds[ random_num( 0, 2 ) ], 1.0, ATTN_NORM, 0, PITCH_HIGH )
__________________