How would I find the owner of the HE while using this?
Code:
public plugin_init() {
register_message(23, "grenade_explosion")
}
public grenade_explosion() {
if (cs_get_user_team(id, CS_TEAM_T) { // How would I find the correct id?
if(get_msg_arg_int(1) == 3 && get_msg_arg_int (6) == 25 && get_msg_arg_int (7) == 30) {
//Some codes here
}
}
}
__________________