Advertisement
Guest User

test

a guest
Mar 14th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function killzombies()
  2. {
  3.  
  4. trig_1 = GetEnt("kill_zombie_trig", "targetname");
  5.  
  6. while(1)
  7. {
  8. trig_1 waittill("trigger", zombies); // is zombies actually good? I have the feeling it's actually nothing.
  9. zombies = zombie_utility::get_round_enemy_array();
  10. if ( isdefined( zombies ) )
  11. {
  12. array::run_all( zombies, &Kill );
  13. }
  14. break;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement