Pretty self-explanitory if you look at my comment.
Code:
#include <amxmodx>
public plugin_init() {
register_event("TextMsg", "catch_radio", "be", "2&#Game_radio", "4&#Fire_in_the_hole")
register_event("TextMsg", "catch_radio", "be", "2&#Game_radio", "4&#Cover_me")
}
public catch_radio(id) {
// How the hell would I tell which is which radio command
return PLUGIN_HANDLED
}
__________________