Hello. I want to hide the info of the player you're aiming at. But only for a certain team.
I know it will affect hostage etc. but it's OK for me.
So, let's say if:
CT is aiming at CT = true.
CT is aiming at T = true.
T is aiming at CT = true.
T is aiming at T = false (hides name and hp).
PHP Code:
#include <amxmodx>
public plugin_init()
register_message(get_user_msgid("StatusText"), "msgStatusText")
public msgStatusText()
{
// If T is looking at T = handled. Else - continue.
}
Or if it's hard enough or impossible then at least hide info for Ts but show for CTs (Ts wont see info of neither T or CT). I've tried this myself but unsuccessfuly.
Thanks.
__________________