Guest User

Untitled

a guest
Apr 2nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public AntiJetpack()
  2. {
  3. for (new i = 0; i < MAX_PLAYERS; i++)
  4. {
  5. if(IsPlayerConnected(i) && PlayerInfo[i][pAdmin] < 1)
  6. {
  7. if (GetPlayerSpecialAction(i) == 2)
  8. {
  9. Kick(i);
  10. return 1;
  11. }
  12. }
  13. }
  14. return 1;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment