Hello Guys!
I am working on a nuke script and I want to ask you how to kill not only the enemys, I want that the teammates die too.

I already tried to do teamkill on but it doesn't help, my teammates doesn't die.

On this part the enemys die:

Code:
players = getentarray("player","classname");
for(i = 0; i < players.size; i++);
{
     players[i] thread [[level.callbackPlayerDamage]](players[i], self, 10000, 1, "MOD_GRENADE", "nuke_mp", players[i].origin, players[i].origin, "none", 0);
}
Do you know how to kill the teammates by the nuke too?