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.
Modifying this to have an 'ignore_all':
I assume that no server has more than 20 people on it. Not sure if this is reasonable.
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.
[SELECT ALL] Code:
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':
[SELECT ALL] Code:
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.