Guest User

Example 'ForeachNPC'.

a guest
Jan 23rd, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // By pds2k12.
  2.  
  3. #define ForeachNPC(%0,%1) \
  4. new %0; while(++%0 < %1) if(IsPlayerNPC(%0)) return true; else return false;
  5.  
  6.  
  7. // Sample Usage
  8. main()
  9. {
  10. ForeachNPC(i, GetMaxPlayers())
  11. {
  12. Kick(i);
  13. }
  14. ForeachNPC(x, MAX_PLAYERS)
  15. {
  16. Kick(x);
  17. }
  18. return true;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment