I believe this would work to check and see who is aiming at who
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <engine>
#define TEAM_T 1
#define TEAM_CT 2
public client_PreThink(id) {
new AimerID,AimedAtID,bodypart,distance
get_user_aiming(AimerID,AimedAtID,bodypart,distance)
if(get_user_team(AimerID) == TEAM_T && get_user_team(AimedAtID) == TEAM_T)
{
//a T aiming at another T
}
}
__________________