Sound plugin
2 Attachment(s)
Quote:
Description:
If you entered the game a sound was played
If the round was start a sound was played
If the round was end a sound was played
|
PHP Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "play sound"
#define VERSION "1.0"
#define AUTHOR "made.tn"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("start",2,"1=Round_Start")
register_logevent("end",2,"1=Round_End")
register_logevent("welcome",2,"1=entered the game")
}
public plugin_precache() {
precache_sound("csound/roundstr.wav")
precache_sound("csound/roundend.wav")
precache_sound("csound/welcome.wav")
return PLUGIN_CONTINUE
}
public start(id) {
set_hudmessage(0, 255, 0, 0.20, -1.0, 0, 3.0, 1.2, 1.3, 1.4)
show_hudmessage(id, "::Round start::")
client_cmd(0, "spk csound/roundstr.wav")
return PLUGIN_CONTINUE
}
public end(id) {
set_hudmessage(55, 200, 0, 0.20, -1.0, 0, 3.0, 1.2, 1.3, 1.4)
show_hudmessage(id, "::round end::")
client_cmd(0, "spk csound/roundend.wav")
return PLUGIN_CONTINUE
}
public welcome(id) {
set_hudmessage(0, 255, 0, 0.20, -1.0, 0, 3.0, 1.2, 1.3, 1.4, 4)
show_hudmessage(id, "Hello client!")
client_cmd(0, "spk csound/welcome.wav")
return PLUGIN_CONTINUE
}
and thanks
|