Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public Tabbed(playerid)
  2. {
  3. if(IsPlayerPaused(playerid)) {
  4. if(g_IsPaused[playerid]) {
  5. PlayerTabbedTime[playerid]++;
  6. } else {
  7. g_IsPaused[playerid] = 1;
  8. }
  9. } else {
  10. PlayerTabbedTime[playerid] = 0;
  11. g_IsPaused[playerid] = 0;
  12. }
  13. if(PlayerTabbedTime[playerid] >= 900) {
  14. SendClientMessageEx(x, COLOR_WHITE, "You have been kicked for being AFK more than 15 minutes.");
  15. Kick(playerid);
  16. }
  17. return 1;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement