Better yet, create a global constant variable:
PHP Code:
new const g_szSound[] = "sound/catchmod/turbo.wav";
public plugin_precache()
{
precache_sound( g_szSound );
}
// [...]
// Now add this where you want the sound to be played:
emit_sound( id, CHAN_AUTO, g_szSound, VOL_NORM, ATTN_NORM, 0, PITCH_NORM );
__________________