My final request, how to make it show the hp of the entity that I am currently looking at?
Code:
new ent, ent2, body
new entcount, entlist[32]
new panel
while (((ent = find_ent_by_tname(ent, "target_map")) !=0) && (ent2=find_ent_by_tname(ent2, "glass_votemap")) !=0)
{
entcount = find_sphere_class(ent, "player", 50.0, entlist, sizeof(entlist))
//if (entcount > 0) client_print(0, print_chat, "Found %d players at panel %d.", entcount, panel + 1)
for(new player_index; player_index < entcount; player_index++)
{
if ((is_user_alive(id)) && get_user_aiming(id,ent,body,50)!=0)
{
set_hudmessage(g_hud_colour[0], g_hud_colour[1], g_hud_colour[2], -1.0, -1.0, 0, 0.0, 2.0, 0.0, 0.0, 2)
show_hudmessage(entlist[player_index],"%s | %d%",g_mapnames[g_mapselection[panel]],pev(ent2,pev_health)/20)
}
}
panel++
}