errgggg
You need to define it more i think
Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"
new g_szSound[] = "sound.wav"
public fnRoundEnd()
{
client_cmd(0,"spk %s",g_szSound)
}
public plugin_precache()
{
precache_sound("misc/sound.wav")
return PLUGIN_CONTINUE
}
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("SendAudio", "fnRoundEnd","a","2=%!MRAD_terwin","2=%!MRAD_ctwin","2=%!MRAD_rounddraw")
}
i think that works.
__________________