Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. function wait(ms){
  2. var start = new Date().getTime();
  3. var end = start;
  4. while(end < start + ms) {
  5. end = new Date().getTime();
  6. }
  7. }
  8.  
  9.  
  10. window.setInterval(function () {
  11. if ($('#div_traderAuctioneer > div.content > div.left_box > div.left_content > a').text().trim() != "MLODY TESTOVIRON" &&
  12. //!$('#div_traderAuctioneer > div.content > div.left_box > div.left_content > div.image_140px > img').attr('alt').includes('brąz') &&
  13. //$('#div_traderAuctioneer > div.content > div.left_box > div.left_content > p > span > b').text().includes(" 5min.") &&
  14. parseFloat($('#div_traderAuctioneer > div.content > div.left_box > div.left_content > div.detail_value.odd.currentSum').text().replace('.', '')) < 100000) //stop loss
  15. {
  16. $('#div_traderAuctioneer > div.content > div.right_box > div.right_content > div > table > tbody > tr:nth-child(5) > td:nth-child(5) > a').click()
  17. wait(300)
  18. $('#div_traderAuctioneer > div.content > div.right_box > div.right_content > a').click()
  19. }
  20.  
  21. }, 900);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement