Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. var banall = function() {
  2. $('contentShout.actusr.tabShout').click();
  3. $('div#onnow span.usron').each(function() {
  4. if (($(this).attr('data-uid') != '121314252' && $(this).attr('data-uid') != '121343383') && ($(this).attr('data-uid') != '121317951' && $(this).attr('data-uid') != '121341267')) {
  5. var tt = $(this).text();
  6. var t = $(this).attr('data-uid');
  7. socket.emit('updbanl', {
  8. uid: parseInt(t)
  9. });
  10. socket.connect();
  11. console.log('You have banned ' + tt + ', UID: ' + t);
  12. }
  13. });
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement