Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // OBJECTIVE:
  2. // if (foo == 1) team 1 players don't die
  3.  
  4. player = find(world, classname, "player");
  5.  
  6. while (player)
  7. {
  8.  
  9. if (!(player.team_no == 1 && foo == 1))
  10. T_Damage(player, other, other,1000,0,#TF_TD_OTHER);
  11.  
  12.  
  13. player = find(player, classname, "player");
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement