#include <amxmodx>
#include <fun>
#include <hamsandwich>
public plugin_init()
{
RegisterHam(Ham_Killed,"player", "killed", 1)
}
public killed(vic,att)
{
if(is_user_alive(att)) give_item(att,"weapon_hegrenade")
// if(is_user_alive(att) && !(get_user_flags(att) & ADMIN_LEVEL_A))
}