Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. setInterval(function() {
  2. $('.account > .avatar-small').trigger('click');
  3. setTimeout(function() {
  4. $('.status-online').trigger('click');
  5. }, 100)
  6. setTimeout(function() {
  7. $('.account > .avatar-small').trigger('click');
  8. setTimeout(function() {
  9. $('.status-idle').trigger('click');
  10. }, 100)
  11. }, 200);
  12. setTimeout(function() {
  13. $('.account > .avatar-small').trigger('click');
  14. setTimeout(function() {
  15. $('.status-dnd').trigger('click');
  16. }, 100)
  17. }, 400);
  18. /*setTimeout(function() {
  19. $('.account > .avatar-small').trigger('click');
  20. setTimeout(function() {
  21. $('.status-invisible').trigger('click');
  22. }, 100)
  23. }, 600);*/
  24. }, 600);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement