Advertisement
Guest User

Untitled

a guest
Dec 11th, 2015
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. --The collection timer removes unaltered tracker profiles
  2. for i,v in pairs(sys.tracker) do
  3. if i~="curebuffer" and i~="aff" and i~="Me" and i~="me" and i~="track_list" then
  4. sys.tracker[i].collect = sys.tracker[i].collect + 1
  5. if sys.tracker[i].collect >= 2 then
  6. if not table.contains(sys.room.players,i) then
  7. trackerNuke(i)
  8. else
  9. sys.tracker[i].collect = 0
  10. end
  11. end
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement