/ignore
#2
This ignores the enemy team. You might want to:

1. Change the binds on the last 2 lines
2. Wait until someone who's more familiar with CS than me makes syntax/style suggestions.

alias ignore_enemy [
  loop i 20 [
    if (!= (at (pstat_score $i) 4) (curteam)) [
      ignore $i;
    ] [clearignored $i;]
  ]
]

bind "F9" ignore_enemy;
bind "F8" clearignored;

Modifying this to have an 'ignore_all':
alias ignore_all [
  loop i 20 [
      ignore $i;
  ]
]

I assume that no server has more than 20 people on it. Not sure if this is reasonable.
Thanks given by:


Messages In This Thread
/ignore - by Edward - 22 Aug 12, 01:40PM
RE: /ignore - by GDM - 22 Aug 12, 03:19PM
RE: /ignore - by Edward - 22 Aug 12, 03:40PM
RE: /ignore - by Jg99 - 23 Aug 12, 12:00AM
RE: /ignore - by Bukz - 23 Aug 12, 05:56AM